-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (48 loc) · 875 Bytes
/
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
body {
font-family: 'Syne Mono', monospace;
background-color: #000;
color: #00ff00;
}
#timer {
color: #fff;
font-size: 14pt;
}
#typewriter:after{
content: "|";
animation: blink 500ms linear infinite alternate;
color: white;
}
.bg-dark {
background-color: #000 !important;
}
h6 {
font-weight: bold;
}
#score-table-head {
border: 1px solid #000;
background-color: #00ff00;
color: #000;
display: inline;
}
/* .score-table-style {
display: inline-block;
} */
li {
/* border-left: 1px solid #00ff00;
border-right: 1px solid #00ff00;
border-bottom: 1px solid #00ff00; */
list-style-type: none;
padding: 5px;
}
@-webkit-keyframes blink{
0%{opacity: 0;}
100%{opacity: 1;}
}
@-moz-keyframes blink{
0%{opacity: 0;}
100%{opacity: 1;}
}
@keyframes blink{
0%{opacity: 0;}
100%{opacity: 1;}
}