blob: b8f38d142c3afbec42d827bd27646bd315092350 (
plain)
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
100
101
102
103
104
105
106
107
|
@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');
@font-face {
font-family: supplyRegular;
src: url(./fonts/PPSupplyMono-Regular.otf);
}
@font-face {
font-family: supplyLight;
src: url(./fonts/PPSupplyMono-Ultralight.otf);
}
* {
margin: 0;
box-sizing: border-box;
}
html,
body {
display: flex;
flex-direction: column;
min-height: 100vh;
}
main {
flex: 1;
font-family: 'Oswald', sans-serif;
margin: 20px;
}
nav {
background: #1c1626;
color: #fefffb;
}
.navs {
list-style-type: none;
padding-left: 0;
}
.nav {
display: inline-block;
}
.nav a {
display: inline-block;
color: #fefffb;
text-decoration: none;
padding: 10px;
}
.logo {
font-family: "supplyRegular";
font-size: 20px;
}
.nav a.links{
font-family: "supplyLight";
}
footer {
background: #1c1626;
color: #fefffb;
font-family: "supplyLight";
padding: 10px;
font-size: 15px;
text-align: center;
}
.color-white {
color: #fefffb;
}
.color-black {
color: #1c1626;
}
.color-red {
color: #ff2961;
}
.post-lists {
margin-top: 10px;
}
.post-data {
margin-bottom: 10px;
}
.post-date {
font-size: 15px;
}
.post-title {
font-size: 20px;
}
a {
color: #ff2961;
font-family: 'Oswald', sans-serif;
}
.text-center{
text-align: center;
}
|