-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (75 loc) · 1.37 KB
/
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
79
80
81
82
83
84
85
86
87
88
89
html, body {
height : 100%;
width : 100%;
padding : 0;
margin : 0;
font-family: 'Open Sans', sans-serif;
font-weight : 700;
}
.page {
width : 100%;
height : 100%;
}
.tile {
display : table;
table-layout : fixed;
position : relative;
}
.small {
width : 25%;
height : 25%;
float : left;
}
.center {
width : 50%;
height : 50%;
position: absolute;
top : 25%;
left : 25%;
}
.text-row {
display : table-row;
}
.text {
display : table-cell;
vertical-align : middle;
text-align : center;
overflow : hidden;
text-overflow : clip;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
.small {
font-size : 2vh;
}
.normal {
font-size : 3vh;
}
.huge {
font-size : 5vw;
}
.clickable {
cursor : pointer;
}
.available {
color : white;
}
.unavailable {
color : #bdc3c7;
}
#one { background : #26C281; }
#two { background : #049372; }
#three { background : #1E824C; }
#four { background : #00B16A; }
#five { background : #2ABB9B; }
#six { background : #4DAF7C; }
#seven { background : #03A678; }
#eight { background : #019875; }
#nine { background : #3FC380; }
#ten { background : #16A085; }
#eleven { background : #2ECC71; }
#twelve { background : #87D37C; }
#center { background : #86E2D5; }