Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
kaheller committed Oct 22, 2024
2 parents e9c800a + 3a0e8d6 commit 711d513
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion experiments/Levi/1_basics.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,21 @@
body {
font-family: sans-serif;
font-size: 15px;
background-color: rgb(224, 228, 255);
background-color: hsl(0, 0%, 75%);
}

section {
opacity: .5;
padding: 20px;
transition: all 1s ease;
width: 400px;
margin: auto;
}

section:hover {
opacity: 1;
background-color: white;
transform: scale(1.1);
}

</style>
Expand Down

0 comments on commit 711d513

Please sign in to comment.