-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
60 lines (53 loc) · 855 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
57
58
59
60
html {
height: 100vh;
}
body {
font-family: monospace;
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
background-color: #282828;
color: #a89984 !important;
}
html,
body {
margin: 0;
padding: 0;
}
#startpage {
background: #32302f;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 20px;
border-style: solid;
border-width: 2px;
border-color: #3c3836;
border-radius: 0px;
box-shadow: 0px 0px 20px 10px #1d202150 !important;
}
#startpage:hover {
border-color: #bdae93;
box-shadow: 0px 0px 20px 10px #1d2021ff !important;
}
ul {
list-style: none;
padding: 0;
font-size: 15pt;
font-weight: 300;
margin: 0 !important;
}
a {
color: #928374;
text-decoration: none;
}
a:hover {
color: #bdae93;
font-weight: 600;
}
div#links {
column-count: 5;
}