backgrounds

This commit is contained in:
j 2021-10-11 10:28:51 +01:00
commit 5e4d2330e8
3 changed files with 55 additions and 22 deletions

View file

@ -23,6 +23,7 @@
}
.annotation {
min-height: 100vh;
.frame {
img {
width: 100%;

View file

@ -1,6 +1,19 @@
@keyframes background_animation {
0%,100% {
background-position: 0 0;
color: #ddd;
}
50% {
background-position: 100% 0;
color: #000;
}
}
body {
background: #d3d;
color: #eee;
background: linear-gradient(to right, #6666ff, #0099ff , #ffff00, #ff3399);
animation: background_animation 60s ease-in-out infinite;
background-size: 400% 100%;
color: #ddd;
font-family: "Noto Sans";
font-size: 20px;
overflow-x: hidden;