-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathleet-o-clock.css
79 lines (66 loc) · 1.05 KB
/
leet-o-clock.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
@import url(http://fonts.googleapis.com/css?family=Orbitron);
@font-face {
font-family: digital;
src: url(digital-7.mono.ttf);
}
body {
margin: 0;
}
.page {
height: 100vh;
background-color: rgb(44, 62, 80);
}
.content {
text-align: center;
position: relative;
top: 25%;
}
h1 {
font-family: 'Orbitron', sans-serif;
font-size: 3.13rem;
margin: 0;
color: rgb(189, 195, 199);
margin-left: 0.3em;
margin-right: 0.3em;
font-weight: normal;
opacity: 0;
line-height: 1.1;
}
h1.time {
font-family: 'digital', sans-serif;
font-size: 10rem;
margin-top: -0.2em;
}
footer {
position: absolute;
bottom: 0;
text-align: center;
width: 100%;
}
footer p {
position: relative;
bottom: 1em;
opacity: 0;
margin: 0;
margin-bottom: 0.5em;
font-family: 'Orbitron', sans-serif;
color: rgb(189, 195, 199);
}
footer a {
color: rgb(189, 195, 199);
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
@media screen and (max-width: 800px) {
h1 {
font-size: 1.56rem;
}
h1.time {
font-size: 5rem;
}
footer p {
font-size: 0.8rem;
}
}