-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
86 lines (71 loc) · 1.07 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
body {
color: #FEFAF5;
background-color: #08090D;
font-family: "Fira Mono", monospace;
margin: auto;
padding: 10px;
max-width: 900px;
}
a {
color: #1A97F7;
}
figure {
margin: 0;
}
figcaption {
display: none;
}
img {
max-width: 100%;
}
.gallery-img {
margin-top: 2cm;
margin-bottom: 2cm;
}
#logo {
text-align: center;
}
#logo a {
color: #FEFAF5;
text-decoration: none;
font-size: 20pt;
}
#navigation {
margin-left: 40px;
margin-bottom: -12px;
display: flex;
flex-flow: row wrap;
}
#navigation a {
background-color: #08090D;
color: #FEFAF5;
text-decoration: none;
padding: 0px 12px;
}
#content {
border: 1px solid #FEFAF5;
padding: 12px;
}
#post-list {
list-style-type: none;
padding: 0 8px;
}
#post-list a {
color: #FEFAF5;
text-decoration: none;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
#post-list a:hover {
background-color: #115487
}
#footer {
text-align: right;
margin-right: 40px;
margin-top: -12px;
}
#footer span {
background-color: #08090D;
padding: 0px 12px;
}