-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
56 lines (56 loc) · 917 Bytes
/
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
/* centering is a nightmare, thank you @wesbos https://github.com/wesbos/keycodes/blob/gh-pages/style.css */
/* Reset */
* {
margin: 0;
padding: 0;
}
html, body {
height: 100%;
margin: 0;
background-color: black;
color: white;
font-family: 'Cutive Mono', monospace;
font-size: 30px;
padding: 10px;
overflow-y: hidden;
}
.display {
text-align: center;
display: table;
height:100%;
margin:0 auto;
}
.wrap {
display: table-cell;
vertical-align: middle;
width: 60vw;
}
.footer {
font-size: 16px;
position: absolute;
bottom: 10px;
}
.copy {
height: 40px;
cursor: pointer;
position: absolute;
right: 10px;
bottom: 10px;
}
a {
color: inherit;
text-decoration: underline;
}
@media only screen and (max-width: 550px) {
.copy {
top: 10px !important;
}
}
@media only screen and (max-width: 800px) {
body {
font-size: 20px;
}
.wrap {
width: 80vw;
}
}