-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
86 lines (78 loc) · 1.12 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
body {
font-family: sans-serif;
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
display: flex;
justify-content: center;
}
div {
display: flex;
justify-content: center;
gap: 50px;
}
input {
width: 250px;
height: 250px;
border: 2px black solid;
}
input:hover {
border: 2px red solid;
}
.narrator {
font-size: 35px;
margin-bottom: 0;
animation: rainbow 2.5s linear;
animation-iteration-count: infinite;
}
@keyframes rainbow {
100%,
0% {
color: rgb(255, 0, 0);
}
8% {
color: rgb(255, 127, 0);
}
16% {
color: rgb(255, 255, 0);
}
25% {
color: rgb(127, 255, 0);
}
33% {
color: rgb(0, 255, 0);
}
41% {
color: rgb(0, 255, 127);
}
50% {
color: rgb(0, 255, 255);
}
58% {
color: rgb(0, 127, 255);
}
66% {
color: rgb(0, 0, 255);
}
75% {
color: rgb(127, 0, 255);
}
83% {
color: rgb(255, 0, 255);
}
91% {
color: rgb(255, 0, 127);
}
}
.scoreBoard {
border: 2px black solid;
justify-content: center;
width: 600px;
font-size: 50px;
}
.roundDisplay {
font-size: 30px;
margin-bottom: -30px;
}