Skip to content

Commit

Permalink
added my art to the project
Browse files Browse the repository at this point in the history
  • Loading branch information
wcgraupmann authored and LaurelineP committed Jul 1, 2024
1 parent 2f02af1 commit cef92e9
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 0 deletions.
Binary file added Art/wcgraupmann/giphy.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions Art/wcgraupmann/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div class="block red">Red</div>
<div class="block white">White</div>
<div class="block blue">Blue</div>
</body>
</html>
36 changes: 36 additions & 0 deletions Art/wcgraupmann/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
.block {
display: block;
text-align: center;
margin: 0 100px;
padding: 50px;
border: 1px solid black;
}

.red {
margin-top: 50px;
background-color: red;
transition: all 1s;
}

.red:hover {
transform: scale(1.25);
transition: all 1s;
}

.white {
background-color: white;
transition: all 1s;
}
.white:hover {
transform: scale(1.25);
transition: all 1s;
}

.blue {
background-color: blue;
transition: all 1s;
}
.blue:hover {
transform: scale(1.25);
transition: all 1s;
}

0 comments on commit cef92e9

Please sign in to comment.