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
108
109
110
111
112
113
114
115
116
117
118
119
|
body,
html{
position: relative;
width: 100%;
min-height: 100vh;
min-width: 100%;
margin: 0;
padding: 0;
}
*{
box-sizing: border-box;
}
a,
button,
input,
textarea,
ul,
ol,
li,
p{
font-family: "Helvetica Neue", Helvetica, sans-serif;
color: #3e3e3e;
}
a, a:visited{
text-decoration: none;
color: #0080a0;
transition: 0.3s;
}
a:hover{
color: #0055a0;
}
.post-title,
h1,
h2,
h3,
h4,
h5,
h6{
font-family: Georgia, serif;
color: #3e3e3e;
}
.post-title a{
font-family: Georgia, serif;
}
hr{
border: none;
height: 1px;
background: linear-gradient(to right, rgba(0, 0, 0, 0), #3e3e3e, rgba(0, 0, 0, 0));
}
.navbar{
background-color: #222;
}
.nav-container{
padding: 0.5em 3em;
}
.navbar-brand, .navbar-brand:visited{
font-family: Georgia, serif;
color: #dedede;
font-size: 1.5em;
}
.blog-container{
position: relative;
}
.blog-wrapper{
display: flex;
justify-content: center;
}
.blog-content{
flex: 3;
}
.weblog-sidebar{
padding: 1em;
}
.blog-content{
max-width: 45em;
}
.blogpost{
}
.post-publish-date,
.post-author{
font-style: italic;
}
.img-fluid{
max-width: 100%;
}
.text-right{
text-align: right;
}
.archive-list{
list-style-type: none;
}
.archive-child-list{
display: none;
}
.archive-child-list.show{
display: block;
}
|