-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.css
More file actions
94 lines (80 loc) · 1.38 KB
/
main.css
File metadata and controls
94 lines (80 loc) · 1.38 KB
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
* {
margin: 0;
padding: 0;
}
html,body {
margin: 0;
font-family: -apple-system,BlinkMacSystemFont,“Segoe UI”,“Roboto”,“Oxygen”,“Ubuntu”,“Cantarell”,“Fira Sans”,“Droid Sans”,“Helvetica Neue”,sans-serif;
height: 100%;
}
#wrapper {
min-height: 100%;
}
#main {
overflow: auto;
padding-bottom: 50px;
}
body {
text-align: center;
background: #2c2c2c;
font-family: sans-serif;
font-weight: 100;
}
h1 {
color: #ffffff;
font-weight: 100;
font-size: 80px;
margin: 40px 0px 20px;
}
#countdown {
color: #fff;
font-weight: 100;
text-align: center;
font-size: 60px;
padding-top: 10px;
}
#countdown > div {
display: inline-block;
}
#countdown div > span {
max-width: 4em;
min-width: 2em;
width: auto;
padding: 20px 10px;
border-radius: 10px;
background: #18191a;
display: inline-block;
}
.smalltext {
font-weight: bold;
padding-top: 5px;
font-size: 18px;
}
#reset {
padding: 0.5em;
background-color: #e9404c;
font-size: 18px;
border-radius: 10px;
color: #fff;
text-decoration: none;
width: 200px;
margin: 10px 0px;
-webkit-appearance: button-bevel;
}
.page-footer {
padding-top: 25px;
position: relative;
margin-top: -50px;
height: 50px;
clear: both;
color: white;
background-color: #18191A;
}
.page-footer p a {
color: #ffb700;
text-decoration: none;
}
.page-footer p a:hover {
color: #ffb700;
text-decoration: underline;
}