small fixes

This commit is contained in:
teldra 2022-04-11 21:12:30 +02:00
parent 0f0b83fa3e
commit d3a7f88efc
1 changed files with 4 additions and 4 deletions

View File

@ -46,15 +46,15 @@ section {
}
@keyframes color {
0% { background: #00007f; }
20% { background: #550000; }
0% { background: #12011e; }
20% { background: #340e4a; }
40% { background: #005500; }
60% { background: #55007f; }
80% { background: #00557f; }
100% { background: #00007f; }
100% { background: #12011e; }
}
body {
background: #33CCCC; /* Fallback */
background: #12011e; /* Fallback */
animation: color 300s infinite linear;
}