-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
68 lines (62 loc) · 1.08 KB
/
main.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
@font-face {
font-family: 'CMU Classical Serif';
src: url("cmunci.otf") format("opentype");
}
.container {
position: absolute;
top: 50%;
left: 50%;
-moz-transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
#deloisa {
width: 25vw;
}
#fixed {
position: fixed;
bottom: 0px;
right: 0px;
margin: 0 0.5em auto 0;
text-decoration: none;
}
a {
color: inherit;
text-decoration: inherit;
}
body {
background-color: #333D51;
animation: bgColor 20s infinite;
font-family: 'CMU Classical Serif';
color: #D3AC2B;
text-align: center;
}
@keyframes bgColor {
11.1% {
background-color: #F4F3EA;
}
22.2% {
background-color: #F4F3EA;
}
33.3% {
background-color: #F4F3EA;
}
44.4% {
background-color: #006d88;
}
55.5% {
background-color: #006d88;
}
66.6% {
background-color: #006d88;
}
77.7% {
background-color: #333D51;
}
88.8% {
background-color: #333D51;
}
100% {
background-color: #333D51;
}
}