-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
77 lines (63 loc) · 1.01 KB
/
main.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
html, body { height: 100%; margin: 0; font-family: colabReg; }
@font-face {
font-family: colabReg;
src: url(../fonts/ColabReg.otf);
}
#wrapper {
height: 100%;
display: flex;
flex-flow: column;
}
#header {
flex: 0 1 auto;
width: auto;
border-bottom: .2em solid grey;
padding: .5em;
}
#votePanels {
display: flex;
flex-flow: column;
flex: 1 1 auto;
text-align: center;
padding-top: 1em;
align-items: center;
}
#teamOneSelect, #mapSelect, #teamTwoSelect {
flex: 1 1 33%;
}
#teamOneSelect {
text-align: right;
}
#mapSelectTable {
width: 100%;
padding: 2em;
border-collapse: separate;
border-spacing: 0 1em;
}
#mapSelectTable td {
width: 33%;
padding: 1em;
}
#teamOneP, #teamTwoP {
margin: 0;
padding: 0;
}
.mapT {
cursor: pointer;
text-align: center;
background-color: lightblue;
border-radius: 2em;
}
.teamOne {
text-align: right;
}
.picked {
text-align: center;
background-color: green;
border-radius: 2em;
}
.banned {
text-align: center;
background-color: red;
border-radius: 2em;
}