-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
68 lines (62 loc) · 1014 Bytes
/
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
html, body {
margin: 0;
height: 100%;
width: 100%;
}
body {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
body.chroma {
animation: rainbow 10s ease-in-out infinite;
}
body.devroom {
background-color: black;
}
@keyframes rainbow {
0% {
background-color: #9c2512;
}
10% {
background-color: #ce120c;
}
20% {
background-color: #d37d1b;
}
30% {
background-color: #e3e81d;
}
40% {
background-color: #90d117;
}
50% {
background-color: #08911e;
}
60% {
background-color: #079ba3;
}
70% {
background-color: #383bd1;
}
80% {
background-color: #6212bd;
}
90% {
background-color: #61094e;
}
100% {
background-color: #9c2512;
}
}
img {
user-select: none;
pointer-events: none;
image-rendering: crisp-edges;
}
#times-visited {
margin-top: 10vh;
font-family: Menlo, Consolas, monospace;
font-size: 6vw;
}