Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
Siizer authored Jan 5, 2024
1 parent 5292767 commit 02c93f3
Showing 1 changed file with 11 additions and 18 deletions.
29 changes: 11 additions & 18 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@

html, body {
height: 100%;
margin: 0;
padding: 0;
* {
box-sizing: border-box;
margin:0;
padding:0;
}
html {
height: 100vh;
height:100dvh;
}
body {
min-height: 100%;
}

#main-container {
Expand Down Expand Up @@ -38,17 +45,3 @@ html, body {
justify-content: center;
align-items: center;
}

.flash {
opacity: 1;
transition: opacity 0.5s;
}

.flash:hover {
animation: flash-animation 1s infinite;
}

@keyframes flash-animation {
0%, 50%, 100% { opacity: 1; }
25%, 75% { opacity: 0; }
}

0 comments on commit 02c93f3

Please sign in to comment.