-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
89 lines (78 loc) · 1.18 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
78
79
80
81
82
83
84
85
86
87
88
89
:root {
font-size: 100%; /* zet je dit op 62.5%, dan is elke rem 10px waard, anders 16px */
}
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
display: grid;
grid-template-rows: 1fr 12fr 1fr;
height: 100%;
margin: 0;
background-color: rgb(27, 27, 27);
color: rgb(202, 202, 202);
}
header {
margin: 0 auto;
}
.nav {
padding: 0;
position: absolute;
right: 48%;
top: 0;
}
img {
margin: 5px 10px;
}
a img:hover {
height: 41px;
}
.nav li {
font-size: 20px;
padding: 2px;
list-style-type: none;
display: inline-block;
}
li a {
text-decoration: none;
color: rgb(202, 202, 202);
list-style: none;
}
main {
margin: 0 auto;
width: 50vw;
list-style-type: none;
}
main > li {
padding: 1rem;
font-size: 25px;
}
.date {
color: grey;
display: block;
font-size: 12px;
}
.size {
display: none;
}
footer {
border-top: 1px solid white;
position: absolute;
bottom: 0;
width: 100%;
}
footer>div{
text-align: center;
margin: 0 auto;
}
footer>div>ul{
list-style-type: none;
}
footer>div>ul>li{
display: inline-block;
}