-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
78 lines (64 loc) · 950 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
body {
display: grid;
grid-template-columns: 2fr 1fr;
grid-template-rows: auto 40px;
grid-gap: 10px 10px;
}
#votes {
width: 20px;
}
#Nominations {
width: 100%;
}
#knapp {
grid-column:2;
}
#Day {
font-size: 50px;
text-align: center;
}
#timers{
display: grid;
grid-template-columns: 1fr;
grid-gap: 10px 10px;
}
#DayTimer {
display:grid;
grid-template-columns: 1fr 1fr;
}
#DefenseTimer {
display:grid;
grid-template-columns: 1fr 1fr;
}
#FiveTimer {
display:grid;
grid-template-columns: 1fr 1fr;
}
#people {
margin-top: 30px;
grid-row : 1 / last-line;
}
span {
font-size: 22px;
}
#fem {
text-align: center;
}
#FiveminCheck{
display: flex;
justify-content: center;
}
#slump {
position: absolute;
left: 10px;
top: 10px;
}
.pointer{
cursor: pointer;
}
#Name{
width:90%;
}
tbody:nth-child(even) {
background-color: #A0A0A0;
}