pouque-chlor-web/css/style.css

70 lines
1.3 KiB
CSS
Raw Permalink Normal View History

2020-11-11 16:18:14 +03:00
@font-face {
font-family: Down-Regular;
src: url(/fonts/down_regular.otf);
}
2018-06-22 14:03:27 +03:00
body {
2018-10-11 20:56:08 +03:00
background: #F6CEFC;
2020-11-11 15:53:11 +03:00
background-image: url('/img/rainbow.gif');
2020-11-11 16:18:14 +03:00
font-family: Down-Regular, monospace;
2018-06-22 14:03:27 +03:00
text-align: center;
}
2018-06-22 17:46:47 +03:00
2018-07-18 12:08:41 +03:00
a:link, a:visited, a:hover, a:active {
2018-10-11 20:56:08 +03:00
color: #000000;
2018-06-22 17:46:47 +03:00
}
2020-10-30 08:31:37 +03:00
2020-10-30 09:26:35 +03:00
.rainbow {
-webkit-animation: rainbow 5s infinite;
-ms-animation: rainbow 5s infinite;
animation: rainbow 5s infinite;
}
@-webkit-keyframes rainbow{
2020-10-30 09:27:47 +03:00
0%{color: orange;}
10%{color: purple;}
20%{color: red;}
2020-10-30 09:26:35 +03:00
30%{color: CadetBlue;}
2020-10-30 09:27:47 +03:00
40%{color: yellow;}
2020-10-30 09:26:35 +03:00
50%{color: coral;}
2020-10-30 09:27:47 +03:00
60%{color: green;}
2020-10-30 09:26:35 +03:00
70%{color: cyan;}
80%{color: DeepPink;}
90%{color: DodgerBlue;}
2020-10-30 09:27:47 +03:00
100%{color: orange;}
2020-10-30 09:26:35 +03:00
}
@-ms-keyframes rainbow{
2020-10-30 09:27:47 +03:00
0%{color: orange;}
10%{color: purple;}
20%{color: red;}
2020-10-30 09:26:35 +03:00
30%{color: CadetBlue;}
2020-10-30 09:27:47 +03:00
40%{color: yellow;}
2020-10-30 09:26:35 +03:00
50%{color: coral;}
2020-10-30 09:27:47 +03:00
60%{color: green;}
2020-10-30 09:26:35 +03:00
70%{color: cyan;}
80%{color: DeepPink;}
90%{color: DodgerBlue;}
2020-10-30 09:27:47 +03:00
100%{color: orange;}
2020-10-30 09:26:35 +03:00
}
@keyframes rainbow{
2020-10-30 09:27:47 +03:00
0%{color: orange;}
10%{color: purple;}
20%{color: red;}
2020-10-30 09:26:35 +03:00
30%{color: CadetBlue;}
2020-10-30 09:27:47 +03:00
40%{color: yellow;}
2020-10-30 09:26:35 +03:00
50%{color: coral;}
2020-10-30 09:27:47 +03:00
60%{color: green;}
2020-10-30 09:26:35 +03:00
70%{color: cyan;}
80%{color: DeepPink;}
90%{color: DodgerBlue;}
2020-10-30 09:27:47 +03:00
100%{color: orange;}
2020-10-30 09:26:35 +03:00
}
2020-10-30 08:31:37 +03:00
video {
2020-10-30 08:45:28 +03:00
object-fit: contain;
2020-10-30 08:31:37 +03:00
top: 0;
left: 0;
}