-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (41 loc) · 683 Bytes
/
style.css
File metadata and controls
48 lines (41 loc) · 683 Bytes
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
.screen {
height:100vh;
display: flex;
flex-direction: column;
align-items:stretch;
}
.waiting {
background-color: red;
color:black;
}
.go {
background-color: green;
color:black;
}
.fkirow {
display:flex;
flex-direction: row;
justify-content: space-between;
align-items: stretch;
flex-grow: 1;
}
.fkicol {
flex-grow: 1;
border-color: #0f0f0f;
border-style: solid;
border-width: 1px;
flex-basis: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
padding-bottom: 60px;
}
.kart-number {
font-size: 220px;
font-weight: bold;
}
.time-remaining {
font-size: 80px;
font-weight: bold;
}