purelog 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +1 -0
- data/README.md +45 -0
- data/_includes/analytics.html +18 -0
- data/_includes/author.html +6 -0
- data/_includes/footer.html +38 -0
- data/_includes/head.html +30 -0
- data/_includes/journal-data.html +13 -0
- data/_includes/links.html +38 -0
- data/_includes/post-data.html +25 -0
- data/_includes/search.html +44 -0
- data/_includes/sidebar.html +27 -0
- data/_layouts/default.html +30 -0
- data/_layouts/home.html +92 -0
- data/_layouts/journal-entry.html +23 -0
- data/_layouts/journals.html +38 -0
- data/_layouts/notes.html +45 -0
- data/_layouts/page.html +15 -0
- data/_layouts/post.html +23 -0
- data/assets/code.css +131 -0
- data/assets/css/purelog.css +4 -0
- data/assets/css/purelog.scss +3 -0
- data/assets/main.css +522 -0
- data/assets/simple-jekyll-search.js +296 -0
- data/lib/purelog/version.rb +5 -0
- data/lib/purelog.rb +7 -0
- metadata +85 -0
data/assets/code.css
ADDED
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
.highlight table td {
|
|
2
|
+
padding: 5px;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.highlight table pre {
|
|
6
|
+
margin: 0;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.highlight,
|
|
10
|
+
.highlight .w {
|
|
11
|
+
color: #586e75;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.highlight .err {
|
|
15
|
+
color: #002b36;
|
|
16
|
+
background-color: #dc322f;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.highlight .c,
|
|
20
|
+
.highlight .cd,
|
|
21
|
+
.highlight .cm,
|
|
22
|
+
.highlight .c1,
|
|
23
|
+
.highlight .cs {
|
|
24
|
+
color: #657b83;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.highlight .cp {
|
|
28
|
+
color: #b58900;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.highlight .nt {
|
|
32
|
+
color: #b58900;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.highlight .o,
|
|
36
|
+
.highlight .ow {
|
|
37
|
+
color: #93a1a1;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.highlight .p,
|
|
41
|
+
.highlight .pi {
|
|
42
|
+
color: #93a1a1;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.highlight .gi {
|
|
46
|
+
color: #859900;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.highlight .gd {
|
|
50
|
+
color: #dc322f;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.highlight .gh {
|
|
54
|
+
color: #268bd2;
|
|
55
|
+
background-color: #002b36;
|
|
56
|
+
font-weight: bold;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.highlight .k,
|
|
60
|
+
.highlight .kn,
|
|
61
|
+
.highlight .kp,
|
|
62
|
+
.highlight .kr,
|
|
63
|
+
.highlight .kv {
|
|
64
|
+
color: #6c71c4;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.highlight .kc {
|
|
68
|
+
color: #cb4b16;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.highlight .kt {
|
|
72
|
+
color: #cb4b16;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.highlight .kd {
|
|
76
|
+
color: #cb4b16;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.highlight .s,
|
|
80
|
+
.highlight .sb,
|
|
81
|
+
.highlight .sc,
|
|
82
|
+
.highlight .sd,
|
|
83
|
+
.highlight .s2,
|
|
84
|
+
.highlight .sh,
|
|
85
|
+
.highlight .sx,
|
|
86
|
+
.highlight .s1 {
|
|
87
|
+
color: #859900;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.highlight .sr {
|
|
91
|
+
color: #2aa198;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.highlight .si {
|
|
95
|
+
color: #d33682;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.highlight .se {
|
|
99
|
+
color: #d33682;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.highlight .nn {
|
|
103
|
+
color: #b58900;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.highlight .nc {
|
|
107
|
+
color: #b58900;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.highlight .no {
|
|
111
|
+
color: #b58900;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.highlight .na {
|
|
115
|
+
color: #268bd2;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.highlight .m,
|
|
119
|
+
.highlight .mf,
|
|
120
|
+
.highlight .mh,
|
|
121
|
+
.highlight .mi,
|
|
122
|
+
.highlight .il,
|
|
123
|
+
.highlight .mo,
|
|
124
|
+
.highlight .mb,
|
|
125
|
+
.highlight .mx {
|
|
126
|
+
color: #859900;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.highlight .ss {
|
|
130
|
+
color: #859900;
|
|
131
|
+
}
|
data/assets/main.css
ADDED
|
@@ -0,0 +1,522 @@
|
|
|
1
|
+
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Open+Sans:wght@400;700;800&display=swap");
|
|
2
|
+
|
|
3
|
+
* {
|
|
4
|
+
-webkit-box-sizing: border-box;
|
|
5
|
+
-moz-box-sizing: border-box;
|
|
6
|
+
box-sizing: border-box;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
h1,
|
|
10
|
+
h2,
|
|
11
|
+
h3,
|
|
12
|
+
h4,
|
|
13
|
+
p,
|
|
14
|
+
ul,
|
|
15
|
+
ol,
|
|
16
|
+
li {
|
|
17
|
+
font-family: "Lora", serif;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
a {
|
|
21
|
+
text-decoration: none;
|
|
22
|
+
color: rgb(61, 146, 201);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
a:hover,
|
|
26
|
+
a:focus {
|
|
27
|
+
text-decoration: underline;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
h1 {
|
|
31
|
+
font-weight: 800;
|
|
32
|
+
text-align: center;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
h2,
|
|
36
|
+
h3 {
|
|
37
|
+
font-weight: 700;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
nav {
|
|
41
|
+
padding-bottom: 15px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
img {
|
|
45
|
+
max-width: 100%;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
mark {
|
|
49
|
+
background-color: #fffaa1;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
blockquote {
|
|
53
|
+
border-left: 2px #aaa solid;
|
|
54
|
+
padding-left: 7px;
|
|
55
|
+
font-style: italic;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
hr {
|
|
59
|
+
color: #ddd;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
table {
|
|
63
|
+
width: 100%;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
td,
|
|
67
|
+
th {
|
|
68
|
+
border: 1px solid #ddd;
|
|
69
|
+
padding: 8px;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
tr:nth-child(even) {
|
|
73
|
+
background-color: #f2f2f2;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
tr:hover {
|
|
77
|
+
color: #666;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
th {
|
|
81
|
+
text-align: center;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
footer {
|
|
85
|
+
text-align: center;
|
|
86
|
+
font-size: 26px;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
footer span {
|
|
90
|
+
font-family: "Open Sans", sans-serif;
|
|
91
|
+
font-size: 16px;
|
|
92
|
+
font-weight: bold;
|
|
93
|
+
text-transform: uppercase;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
footer .pure-menu-link {
|
|
97
|
+
color: #444;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
footer .pure-menu-link:hover {
|
|
101
|
+
color: #111;
|
|
102
|
+
background-color: #fff;
|
|
103
|
+
text-decoration: none;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
/* LAYOUT CSS */
|
|
107
|
+
.pure-img-responsive {
|
|
108
|
+
max-width: 100%;
|
|
109
|
+
height: auto;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
#layout {
|
|
113
|
+
padding: 0;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.sidebar {
|
|
117
|
+
background: #222;
|
|
118
|
+
color: #fff;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.sidebar-info {
|
|
122
|
+
text-align: center;
|
|
123
|
+
top: auto;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.sidebar-info * {
|
|
127
|
+
font-family: "Open Sans", sans-serif;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.brand-photo {
|
|
131
|
+
margin: 10px 0;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.brand-title,
|
|
135
|
+
.brand-tagline,
|
|
136
|
+
.nav {
|
|
137
|
+
margin: 0;
|
|
138
|
+
margin-right: -20px;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.brand-title {
|
|
142
|
+
padding-top: 15px;
|
|
143
|
+
text-transform: uppercase;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.brand-title a {
|
|
147
|
+
color: white;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.brand-tagline {
|
|
151
|
+
font-weight: 300;
|
|
152
|
+
color: #ddd;
|
|
153
|
+
font-size: 18px;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.nav-list {
|
|
157
|
+
margin: 0;
|
|
158
|
+
padding: 0;
|
|
159
|
+
list-style: none;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.nav-item {
|
|
163
|
+
display: inline-block;
|
|
164
|
+
*display: inline;
|
|
165
|
+
zoom: 1;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.nav-item a {
|
|
169
|
+
background: transparent;
|
|
170
|
+
border: 2px solid rgb(195, 176, 219);
|
|
171
|
+
color: #fff;
|
|
172
|
+
margin-top: 1em;
|
|
173
|
+
margin-right: 5px;
|
|
174
|
+
letter-spacing: 0.05em;
|
|
175
|
+
text-transform: uppercase;
|
|
176
|
+
font-size: 85%;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.nav-item a:hover,
|
|
180
|
+
.nav-item a:focus {
|
|
181
|
+
border: 2px solid rgb(61, 70, 201);
|
|
182
|
+
text-decoration: none;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.content-subhead {
|
|
186
|
+
text-transform: uppercase;
|
|
187
|
+
color: #333;
|
|
188
|
+
border-bottom: 1px solid #eee;
|
|
189
|
+
padding: 0.4em 0;
|
|
190
|
+
font-size: 18px;
|
|
191
|
+
font-weight: 400;
|
|
192
|
+
letter-spacing: 0.1em;
|
|
193
|
+
font-family: "Open Sans", sans-serif;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.content {
|
|
197
|
+
padding: 2em 1em 0;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.post,
|
|
201
|
+
.post-entry {
|
|
202
|
+
padding-bottom: 2em;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.post-entry {
|
|
206
|
+
margin: 0 auto;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.post-entry h1,
|
|
210
|
+
.post-entry h2,
|
|
211
|
+
.post-entry h3 {
|
|
212
|
+
margin-top: 25px;
|
|
213
|
+
margin-bottom: 15px;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.post-header p {
|
|
217
|
+
font-family: "Open Sans", sans-serif;
|
|
218
|
+
font-size: 18px;
|
|
219
|
+
margin-top: -10px;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.post-body p,
|
|
223
|
+
.post-body li {
|
|
224
|
+
font-size: 16px;
|
|
225
|
+
text-align: justify;
|
|
226
|
+
line-height: 1.5;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.post-body blockquote p {
|
|
230
|
+
font-size: 22px;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.post-title {
|
|
234
|
+
font-size: 2em;
|
|
235
|
+
color: #222;
|
|
236
|
+
margin-bottom: 0.2em;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.post-avatar {
|
|
240
|
+
border-radius: 50px;
|
|
241
|
+
float: right;
|
|
242
|
+
margin-left: 1em;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.post-description {
|
|
246
|
+
color: black;
|
|
247
|
+
line-height: 1.8em;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.post-meta {
|
|
251
|
+
font-family: "Open Sans", sans-serif;
|
|
252
|
+
color: #444;
|
|
253
|
+
margin: 0;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.post-meta a {
|
|
257
|
+
font-weight: bold;
|
|
258
|
+
color: #376a8c;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.post-category {
|
|
262
|
+
margin: 0 0.1em;
|
|
263
|
+
padding: 0.3em 1em;
|
|
264
|
+
color: #fff;
|
|
265
|
+
background: #999;
|
|
266
|
+
font-size: 80%;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.post-images {
|
|
270
|
+
margin: 1em 0;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.post-image-meta {
|
|
274
|
+
margin-top: -3.5em;
|
|
275
|
+
margin-left: 1em;
|
|
276
|
+
color: #fff;
|
|
277
|
+
text-shadow: 0 1px 1px #333;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.journals {
|
|
281
|
+
margin: 0 auto;
|
|
282
|
+
max-width: 70%;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.post-description {
|
|
286
|
+
color: black;
|
|
287
|
+
line-height: 1.8em;
|
|
288
|
+
margin-top: -15px;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.archive-links {
|
|
292
|
+
font-size: 22px;
|
|
293
|
+
padding: 5px 0;
|
|
294
|
+
list-style-type: decimal;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.archive-links a,
|
|
298
|
+
.tags a {
|
|
299
|
+
color: #376a8c;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
/* AUTHOR */
|
|
303
|
+
|
|
304
|
+
#author {
|
|
305
|
+
overflow: auto;
|
|
306
|
+
padding: 0px 10px 15px;
|
|
307
|
+
text-align: justify;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
#author img {
|
|
311
|
+
float: left;
|
|
312
|
+
max-height: 150px;
|
|
313
|
+
margin-top: -10px;
|
|
314
|
+
padding-right: 15px;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
#author h3 {
|
|
318
|
+
margin-top: 5px;
|
|
319
|
+
text-align: center;
|
|
320
|
+
text-decoration: underline;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
/* RESPONSIVE CSS */
|
|
324
|
+
|
|
325
|
+
@media (min-width: 48em) {
|
|
326
|
+
.sm-display {
|
|
327
|
+
display: none;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.content {
|
|
331
|
+
padding: 2em 3em 0;
|
|
332
|
+
margin-left: 25%;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
.sidebar-info {
|
|
336
|
+
margin: 5% 2em 0;
|
|
337
|
+
text-align: right;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.brand-photo {
|
|
341
|
+
max-width: 250px;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.brand-title,
|
|
345
|
+
.brand-tagline {
|
|
346
|
+
text-align: right;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.sidebar {
|
|
350
|
+
position: fixed;
|
|
351
|
+
height: 100vh;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
.post-entry {
|
|
355
|
+
width: 70%;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.tags {
|
|
359
|
+
width: 30%;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
footer .pure-menu-link {
|
|
363
|
+
padding: 0.5em 5px;
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
@media screen and (max-width: 48em) {
|
|
368
|
+
.md-display {
|
|
369
|
+
display: none;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.brand-title,
|
|
373
|
+
.brand-tagline {
|
|
374
|
+
margin: 0;
|
|
375
|
+
padding: 0 10px;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
.brand-photo {
|
|
379
|
+
max-width: 200px;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
.post-entry {
|
|
383
|
+
width: 90%;
|
|
384
|
+
word-break: break-word;
|
|
385
|
+
hyphens: auto;
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
.tags {
|
|
389
|
+
width: 49%;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.journals {
|
|
393
|
+
max-width: 95%;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
footer .pure-menu-link {
|
|
397
|
+
padding: 0 20px;
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
/* JEKYLL CSS */
|
|
402
|
+
|
|
403
|
+
.jekyll-header {
|
|
404
|
+
text-align: center;
|
|
405
|
+
text-decoration: underline;
|
|
406
|
+
font-size: 48px;
|
|
407
|
+
margin-bottom: 0px;
|
|
408
|
+
color: #222;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
.jekyll-header:hover {
|
|
412
|
+
color: #6f1f91;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.content {
|
|
416
|
+
padding-top: 0;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.paginate {
|
|
420
|
+
font-size: 20px;
|
|
421
|
+
text-align: center;
|
|
422
|
+
margin-top: 20px;
|
|
423
|
+
font-weight: bold;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
.paginate ul,
|
|
427
|
+
footer ul {
|
|
428
|
+
padding-left: 0px;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
.paginate * {
|
|
432
|
+
font-family: "Open Sans", sans-serif;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
#current-page {
|
|
436
|
+
padding: 0px 15px;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
/* NAVIGATION */
|
|
440
|
+
|
|
441
|
+
.menu {
|
|
442
|
+
margin: 20px auto;
|
|
443
|
+
text-align: center;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
.menu a {
|
|
447
|
+
font-size: 18px;
|
|
448
|
+
font-weight: 600;
|
|
449
|
+
padding: 7px 10px;
|
|
450
|
+
border-right: 1px grey solid;
|
|
451
|
+
margin-left: -4px;
|
|
452
|
+
text-decoration: none;
|
|
453
|
+
color: #333;
|
|
454
|
+
margin-top: 10px;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
.donate a {
|
|
458
|
+
border-right: 0;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
.menu a:hover {
|
|
462
|
+
background-color: #eee;
|
|
463
|
+
color: #000;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
.about,
|
|
467
|
+
.hashtags,
|
|
468
|
+
.categories,
|
|
469
|
+
.archive,
|
|
470
|
+
.rss,
|
|
471
|
+
.projects,
|
|
472
|
+
.donate {
|
|
473
|
+
display: inline-block;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.about i {
|
|
477
|
+
color: #333;
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
.hashtags i {
|
|
481
|
+
color: #6f1f91;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.categories i {
|
|
485
|
+
color: #3878a0;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
.archive i {
|
|
489
|
+
color: #56712d;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.rss i {
|
|
493
|
+
color: #cfa531;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
.donate i {
|
|
497
|
+
color: #da6064;
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
/* SEARCH */
|
|
501
|
+
|
|
502
|
+
#search,
|
|
503
|
+
.search_res p,
|
|
504
|
+
#results-container {
|
|
505
|
+
font-family: "Open Sans", sans-serif !important;
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
#results-container {
|
|
509
|
+
border: 1px solid black;
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
#search-input {
|
|
513
|
+
width: 94%;
|
|
514
|
+
margin: 10px 0;
|
|
515
|
+
padding: 5px;
|
|
516
|
+
border: 1px #ccc solid;
|
|
517
|
+
border-radius: 8px;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
.search-icon {
|
|
521
|
+
font-size: 24px;
|
|
522
|
+
}
|