Skip to content

Commit

Permalink
fade In while load dark theme
Browse files Browse the repository at this point in the history
  • Loading branch information
exaluc committed Jul 26, 2023
1 parent acce57b commit 0b5072b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions assets/css/boucle.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,21 @@ body {
display: flex;
flex-direction: column;
min-height: 100vh;
animation: fadeIn ease 1s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}

@keyframes fadeIn {
0% {
color: #000;
}
100% {
color: #fff;
}
}


p {
white-space: pre-line;
margin-bottom: 10px;
Expand Down

0 comments on commit 0b5072b

Please sign in to comment.