Skip to content

Commit

Permalink
(CI) format code
Browse files Browse the repository at this point in the history
  • Loading branch information
Zero to Mastery committed Sep 14, 2023
1 parent 6daba3e commit d90ac3a
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 36 deletions.
37 changes: 17 additions & 20 deletions Art/1AA-Prajakta/trans1.css
Original file line number Diff line number Diff line change
@@ -1,23 +1,20 @@
.circle{
width: 300px;
height: 300px;
background-color: magenta;
transition: background-color 1s 1s;

.circle {
width: 300px;
height: 300px;
background-color: magenta;
transition: background-color 1s 1s;
}
.circle:hover{
background-color: cyan;
border-radius: 50%;

.circle:hover {
background-color: cyan;
border-radius: 50%;
}
section div{
width: 100px;
height: 100px;
background-color: turquoise;
margin: 20px 0;
transition: margin-left 3s;

section div {
width: 100px;
height: 100px;
background-color: turquoise;
margin: 20px 0;
transition: margin-left 3s;
}
section:hover div {
margin-left: 500px;
}
section:hover div{
margin-left: 500px;
}
30 changes: 14 additions & 16 deletions Art/1AA-Prajakta/trans1.html
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TRANSITION</title>
<link rel="stylesheet" href="trans1.css">
</head>
<body>
<link rel="stylesheet" href="trans1.css" />
</head>
<body>
<h1>transition</h1>
<div class="circle">

</div>
<div class="circle"></div>
<section>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</section>
</body>
</html>
</body>
</html>

0 comments on commit d90ac3a

Please sign in to comment.