-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (42 loc) · 691 Bytes
/
Copy pathstyle.css
File metadata and controls
51 lines (42 loc) · 691 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
49
50
main {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
height: 100vh;
}
div {
display: flex;
justify-content: space-between;
}
table {
border: 1px solid black;
}
td {
text-align: center;
background-color: #9e9d9c;
width: 65px;
height: 65px;
border: 1px solid black;
}
/* // 0 = none
// 1 = start : blauw
// 2 = entry : groen
// 3 = no_entry : rood
// 4 = bonus : paars
// 5 = end : zwart */
.start{
background-color: blue;
}
.entry{
background-color: green;
}
.no_entry{
background-color: red;
}
.bonus{
background-color: purple;
}
.end{
background-color: black;
}