-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
78 lines (64 loc) · 1.09 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
@font-face {
font-family: mono;
src: url("font/Akkurat-Mono.ttf") format("truetype");
}
@font-face {
font-family: sans;
src: url("font/HelveticaNeue-MediumCond.otf") format("opentype");
}
h1 {
color: white;
font-family: sans, sans-serif;
text-align: center;
font-weight: normal;
}
h3 {
font-weight: normal;
font-style: italic;
}
#now {
font-family: mono, monospace;
color: white;
padding: 2em;
width: 40%;
margin: auto;
text-align:center;
}
.bignum {
word-spacing : -.25em;
}
@media only screen and (max-width: 1000px) {
#now {
width: 700px;
}
}
@media only screen and (max-width: 600px) {
#now {
width: 350px;
}
}
p {
margin-bottom: -1em;
}
body {
background: linear-gradient(120deg, #020004, #030106, #040208, #050410, #060812, #071614);
background-size: 250% 250%;
height: 100vh;
justify-content: space-evenly;
align-items: center;
}
.space {
font-size: 8px;
}
footer>a {
text-decoration: none;
color: white;
}
footer>a:hover {
text-decoration:none;
color: white;
}
footer>a:visited {
text-decoration:none;
color: white;
}