-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
99 lines (87 loc) · 1.45 KB
/
styles.css
File metadata and controls
99 lines (87 loc) · 1.45 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
95
96
97
98
99
:root {
--navy: #001f3f;
--blue: #0074d9;
--aqua: #7fdbff;
--teal: #39cccc;
--olive: #3d9970;
--green: #2ecc40;
--lime: #01ff70;
--yellow: #ffdc00;
--orange: #ff851b;
--red: #ff4136;
--maroon: #85144b;
--fuchsia: #f012be;
--purple: #b10dc9;
/* --black: #111111; */
--black: #000;
--gray: #aaaaaa;
--silver: #dddddd;
--white: #ffffff;
}
body {
margin: 0;
padding: 0;
color: var(--white);
background-color: var(--black);
font-size: 1.1em;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
margin: 0;
padding: 0;
}
canvas {
display: block;
position: absolute;
top: 40%;
z-index: -1;
}
.hide {
display: none;
}
@font-face {
font-family: Skanaus;
src: url("Skanaus-Display.otf") format("opentype");
}
h1 {
font-size: 3em;
margin: 20px;
}
#info {
font-family: Skanaus;
display: block;
margin: auto;
text-align: center;
font-size: 150%;
z-index: 100;
}
#info p {
font-size: 1.2em;
margin: 0 10%;
max-width: 80%;
}
a {
font-family: monospace;
font-size: 1.3em;
color: var(--white);
padding: 5px;
border: 1px solid var(--white);
border-radius: 4px;
background-color: rgba(255, 255, 255, 0.25);
}
a:hover {
color: var(--black);
background-color: var(--white);
}
ul {
list-style-type: none;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
}
li {
margin: 10px 0;
}