-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
110 lines (89 loc) · 1.37 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
html {
margin: 0;
padding: 0;
}
body {
font-family: 'Roboto', sans-serif;
background-color: #eee;
margin: 0;
padding: 0;
}
h1, h2, h3, h4, h5, h6 {
padding: 0;
margin: 0;
}
h1 {
font-family: 'Roboto', sans-serif;
font-weight: 300;
}
h3 {
font-family: 'Roboto', sans-serif;
font-weight: 700;
}
.classhighlight {
width: 5em;
height: 5em;
background-color: #aaa;
padding: 1em;
vertical-align: middle;
text-align: center;
float: left;
}
.mainheader {
display:table;
width:100%;
table-layout: fixed;
}
.headerelem {
display:table-cell;
text-align: center;
border: black;
border-width: 5px;
}
.classenclosed {
width: 31em;
box-shadow: 3px 3px 1px #eee;
display: inline-block;
margin: 1em 1.38em;
background-color: #fff;
}
.classinfo {
margin-left: 1em;
}
.classinfo.gray {
color: #aaa;
}
.classhighlight h3 {
font-size: 2em;
}
.waiting {
background-color: #33cc33;
}
.pending {
background-color: #ff9933;
}
.ended {
background-color: #e60000;
}
.classhighlight.gray {
background-color: #aaa;
}
.large {
width: 80em;
}
.large h1 {
text-align: center;
}
.classhighlight.pending.large h1, .classhighlight.waiting.large h1 {
font-weight: 500;
font-size: 5em;
font-family: 'Pacifico';
line-height: 1em;
}
.classenclosed.large .classinfo h1 {
font-size: 5em;
}
.classenclosed.large, .classhighlight.large {
margin: 0 0 0 -0.3em;
width: 100%;
}