2021-10-11 09:28:51 +00:00
|
|
|
@keyframes background_animation {
|
|
|
|
0%,100% {
|
|
|
|
background-position: 0 0;
|
|
|
|
color: #ddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
background-position: 100% 0;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
}
|
2021-09-30 17:09:42 +00:00
|
|
|
body {
|
2021-10-11 09:28:51 +00:00
|
|
|
background: linear-gradient(to right, #6666ff, #0099ff , #ffff00, #ff3399);
|
|
|
|
animation: background_animation 60s ease-in-out infinite;
|
|
|
|
background-size: 400% 100%;
|
|
|
|
color: #ddd;
|
2021-09-30 17:09:42 +00:00
|
|
|
font-family: "Noto Sans";
|
|
|
|
font-size: 20px;
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
|
|
|
line-height: 1.2em;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
|
|
|
a {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
2021-10-12 09:41:57 +00:00
|
|
|
|
|
|
|
@media screen and (max-width: 799px) {
|
|
|
|
.hide-mobile {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|