-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
141 lines (121 loc) · 2.71 KB
/
style.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
@import url('https://fonts.googleapis.com/css?family=Nova+Mono');
body {
margin: 0;
padding: 0;
background-color: rgba(250, 230, 0, 0.3);
}
.triangle {
position: absolute;
z-index: -1;
width: 0;
height: 0;
border-left: 50vw solid transparent;
border-right: 50vw solid transparent;
border-bottom: 100vh solid rgba(249, 228, 0, 0.5);
}
.rhythm-display, section, header {
margin: auto;
width: 70%;
font-family: Nova Mono;
font-size: 4vmin;
}
h1, h3 {
color: rgb(94, 85, 37);
padding: 0;
margin: 0;
font-family: Nova Mono;
text-align: center;
}
h1 {
font-size: 16vmin;
}
h1:hover {
color: rgba(249, 228, 0, 0.3);
animation: illuminati-chaos 6s infinite alternate;
}
h3 {
font-size: 6vmin;
}
h3.eyes:hover {
animation: spooky-eyeshadow 2s infinite alternate;
}
.rhythm-display {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
padding-top: 1em;
}
button {
font-size: 6vmin;
border: none;
background-color: rgba(250, 230, 0, 0.5);
}
input {
font-family: Nova Mono;
font-size: 4vmin;
max-width: 3em;
background-color: rgba(250, 230, 0, 0.5);
border: none;
color: rgb(94, 85, 37);
text-align: center;
}
label {
color: rgb(94, 85, 37);
display: flex;
justify-content: space-between;
align-items: center;
background-color: rgba(250, 230, 0, 0.5);
}
div.active {
box-sizing: border-box;
border: 10px solid rgba(255, 0, 0, 0.379);
}
.transport {
margin: 0;
padding: 0;
background-color: rgba(250, 230, 0, 0.5);
}
.on {
background-color: rgb(250, 230, 0);
}
.off {
background-color: rgb(131, 121, 61);
}
.controls {
padding: .5em;
display: flex;
justify-content: space-around;
}
@keyframes illuminati-chaos {
0% {
text-shadow: 0em -.01em 0em rgb(94, 85, 37),
-.01em .01em 0em rgb(94, 85, 37),
.01em .01em 0em rgb(94, 85, 37);
}
50% {
text-shadow: 0em -.21em 0em rgba(250, 230, 0, 0.5),
-.3em .91em 0em rgb(94, 85, 37),
.3em .91em 0em rgb(94, 85, 37);
}
100% {
color: rgb(94, 85, 37);
text-shadow: 0em -.21em 0em rgba(250, 230, 0, 0.5),
-2.1em 1.4em 0em rgba(250, 230, 0, 0),
2.1em 1.4em 0em rgba(250, 230, 0, 0);
}
}
@keyframes spooky-eyeshadow {
0% {
text-shadow: -.01em -.01em 0em rgb(94, 85, 37),
.01em -.01em 0em rgb(94, 85, 37),
-.01em .01em 0em rgb(94, 85, 37),
.01em .01em 0em rgb(94, 85, 37);
}
100% {
text-shadow: -.05em -.05em 0em rgb(94, 85, 37),
.05em -.05em 0em rgb(94, 85, 37),
-.05em .05em 0em rgb(94, 85, 37),
.05em .05em 0em rgb(94, 85, 37);
}
}