jekyll-kde-theme 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE.txt +662 -0
- data/README.md +64 -0
- data/_includes/footer.html +75 -0
- data/_includes/head.html +22 -0
- data/_includes/header.html +36 -0
- data/_layouts/changelog.html +11 -0
- data/_layouts/default.html +15 -0
- data/_layouts/page.html +13 -0
- data/_layouts/post.html +5 -0
- data/_sass/aetherCore.scss +479 -0
- data/_sass/base.scss +546 -0
- data/_sass/download.scss +30 -0
- data/_sass/glyphs.scss +136 -0
- data/_sass/home.scss +185 -0
- data/_sass/social.scss +50 -0
- data/assets/Noto-Sans-700/LICENSE.txt +94 -0
- data/assets/Noto-Sans-700/Noto-Sans-700.eot +0 -0
- data/assets/Noto-Sans-700/Noto-Sans-700.svg +336 -0
- data/assets/Noto-Sans-700/Noto-Sans-700.ttf +0 -0
- data/assets/Noto-Sans-700/Noto-Sans-700.woff +0 -0
- data/assets/Noto-Sans-700/Noto-Sans-700.woff2 +0 -0
- data/assets/Noto-Sans-regular/LICENSE.txt +94 -0
- data/assets/Noto-Sans-regular/Noto-Sans-regular.eot +0 -0
- data/assets/Noto-Sans-regular/Noto-Sans-regular.svg +335 -0
- data/assets/Noto-Sans-regular/Noto-Sans-regular.ttf +0 -0
- data/assets/Noto-Sans-regular/Noto-Sans-regular.woff +0 -0
- data/assets/Noto-Sans-regular/Noto-Sans-regular.woff2 +0 -0
- data/assets/aether/media/128x128.svg +80 -0
- data/assets/aether/media/16x16.svg +80 -0
- data/assets/aether/media/180x180.png +0 -0
- data/assets/aether/media/192x192.png +0 -0
- data/assets/aether/media/24x24.svg +80 -0
- data/assets/aether/media/32x32.svg +80 -0
- data/assets/aether/media/64x64.svg +80 -0
- data/assets/glyph/glyph.eot +0 -0
- data/assets/glyph/glyph.svg +47 -0
- data/assets/glyph/glyph.ttf +0 -0
- data/assets/glyph/glyph.woff +0 -0
- data/assets/img/Next.jpg +0 -0
- data/assets/img/ark.svg +46 -0
- data/assets/img/flatpak.png +0 -0
- data/assets/img/git.svg +24 -0
- data/assets/img/konqi-dev.png +0 -0
- data/assets/img/konqi-docbook.png +0 -0
- data/assets/img/konqi-mail.png +0 -0
- data/assets/img/tux.png +0 -0
- data/assets/nav.js +7 -0
- data/assets/preview.js +5 -0
- data/changelog.md +22 -0
- metadata +134 -0
data/_sass/base.scss
ADDED
@@ -0,0 +1,546 @@
|
|
1
|
+
@import 'aetherCore';
|
2
|
+
|
3
|
+
body {
|
4
|
+
font-family: 'Noto Sans', sans-serif;
|
5
|
+
}
|
6
|
+
|
7
|
+
p {
|
8
|
+
line-height: 2em;
|
9
|
+
}
|
10
|
+
|
11
|
+
h1, h2, h3 {
|
12
|
+
line-height: 1.5em;
|
13
|
+
}
|
14
|
+
|
15
|
+
ul > li {
|
16
|
+
line-height: 2em;
|
17
|
+
}
|
18
|
+
|
19
|
+
.header {
|
20
|
+
position: sticky;
|
21
|
+
top: 0;
|
22
|
+
margin: 0;
|
23
|
+
display: block;
|
24
|
+
z-index: 4;
|
25
|
+
background-color: rgb(255, 255, 255);
|
26
|
+
}
|
27
|
+
|
28
|
+
.header > * {
|
29
|
+
margin: auto;
|
30
|
+
max-width: 1140px;
|
31
|
+
}
|
32
|
+
|
33
|
+
.header::after {
|
34
|
+
content: "";
|
35
|
+
clear: both;
|
36
|
+
display: block;
|
37
|
+
background-size: 100% 5px;
|
38
|
+
position: absolute;
|
39
|
+
height: 5px;
|
40
|
+
width: 100%;
|
41
|
+
left: 0;
|
42
|
+
bottom: 0;
|
43
|
+
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAFCAYAAACzSkmrAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAACkSURBVDiN7dExDsIwDEbh9we1soXE6eCEbJyInQNwgKgxQ9WWFrIShr7ZkewvYm/V5fbwLj8NoKTec0lGzp66ZAzJS8jQ4EKG5KLY+FIeYBAOMoRHyFC4YJwpcqVixGYWnHHG1ebs700YHxBAHWM6DqoYHxBvswvGEegbnL1q/pAqxgQB1DE2EEAdY4aABeMEHH57+n+m8/UerZfYW0qtF9hb9wI2bU03vw4M8QAAAABJRU5ErkJggg==");
|
44
|
+
z-index: -1;
|
45
|
+
}
|
46
|
+
|
47
|
+
#kHeaderNav {
|
48
|
+
padding: 0;
|
49
|
+
position: relative;
|
50
|
+
|
51
|
+
button {
|
52
|
+
outline: 0;
|
53
|
+
}
|
54
|
+
|
55
|
+
.navbar-toggler {
|
56
|
+
position: relative;
|
57
|
+
}
|
58
|
+
|
59
|
+
.navbar-toggler:before {
|
60
|
+
position: absolute;
|
61
|
+
top: 0;
|
62
|
+
left: 50%;
|
63
|
+
width: 42px;
|
64
|
+
margin-left: -21px;
|
65
|
+
content: "=";
|
66
|
+
color: #4d4d4d;
|
67
|
+
font-family: "glyph";
|
68
|
+
font-size: 22px;
|
69
|
+
font-weight: normal;
|
70
|
+
text-indent: 0px;
|
71
|
+
text-align: center;
|
72
|
+
line-height: 50px;
|
73
|
+
display: inline-block;
|
74
|
+
text-decoration: none !important;
|
75
|
+
}
|
76
|
+
|
77
|
+
a.nav-link,
|
78
|
+
a.dropdown-item {
|
79
|
+
color: #334545;
|
80
|
+
height: 50px;
|
81
|
+
line-height: 50px;
|
82
|
+
padding: 0 20px;
|
83
|
+
}
|
84
|
+
|
85
|
+
a:hover {
|
86
|
+
color: #3daefd;
|
87
|
+
}
|
88
|
+
|
89
|
+
.dropdown-menu {
|
90
|
+
padding: 0;
|
91
|
+
}
|
92
|
+
|
93
|
+
a.active:hover,
|
94
|
+
.dropdown-menu.show a.nav-link {
|
95
|
+
color: #334545;
|
96
|
+
}
|
97
|
+
|
98
|
+
a:active,
|
99
|
+
.active,
|
100
|
+
a.dropdown-item:active,
|
101
|
+
.navbar-brand-active,
|
102
|
+
.dropdown-toggle.show a.nav-link {
|
103
|
+
background: #54a3d8;
|
104
|
+
color: #FFF;
|
105
|
+
}
|
106
|
+
|
107
|
+
.dropdown-toggle.show {
|
108
|
+
position: relative;
|
109
|
+
}
|
110
|
+
|
111
|
+
.dropdown-toggle::after {
|
112
|
+
content: "" !important;
|
113
|
+
display: none;
|
114
|
+
}
|
115
|
+
|
116
|
+
.dropdown-toggle .nav-link::after {
|
117
|
+
display: inline-block;
|
118
|
+
width: 0;
|
119
|
+
height: 0;
|
120
|
+
margin-left: .5em;
|
121
|
+
vertical-align: .255em;
|
122
|
+
content: "";
|
123
|
+
border-top: .3em solid;
|
124
|
+
border-right: .3em solid transparent;
|
125
|
+
border-bottom: 0;
|
126
|
+
border-left: .3em solid transparent;
|
127
|
+
}
|
128
|
+
|
129
|
+
.dropdown-menu {
|
130
|
+
border-radius: 0px;
|
131
|
+
border: 1px solid #54a3d8;
|
132
|
+
border-top: none;
|
133
|
+
margin: 0;
|
134
|
+
padding: 0;
|
135
|
+
background-color: initial;
|
136
|
+
|
137
|
+
@media(min-width: 575px) {
|
138
|
+
background-color: #fff;
|
139
|
+
}
|
140
|
+
|
141
|
+
a {
|
142
|
+
display: block;
|
143
|
+
text-align: center;
|
144
|
+
text-decoration: none;
|
145
|
+
background-size: 100%;
|
146
|
+
background-position: center;
|
147
|
+
background-repeat: no-repeat;
|
148
|
+
transition: background-size 0.4s;
|
149
|
+
position: relative;
|
150
|
+
}
|
151
|
+
|
152
|
+
a::before {
|
153
|
+
content: '';
|
154
|
+
width: 100%;
|
155
|
+
height: 100%;
|
156
|
+
top: 0;
|
157
|
+
left: 0;
|
158
|
+
position: absolute;
|
159
|
+
background-repeat: no-repeat;
|
160
|
+
background-position: center;
|
161
|
+
background-size: 101%;
|
162
|
+
z-index: -1;
|
163
|
+
transition: background-size 0.3s;
|
164
|
+
}
|
165
|
+
}
|
166
|
+
|
167
|
+
a.kontact-menu-features::before {
|
168
|
+
background-image: url(/assets/img/kontact-menu-features.png);
|
169
|
+
}
|
170
|
+
|
171
|
+
a.kontact-menu-features:hover::before {
|
172
|
+
background-size: 150%;
|
173
|
+
}
|
174
|
+
|
175
|
+
a.kontact-menu-features {
|
176
|
+
min-width: 360px;
|
177
|
+
min-height: 150px;
|
178
|
+
line-height: 150px;
|
179
|
+
color: #334545;
|
180
|
+
font-size: 1.5em;
|
181
|
+
}
|
182
|
+
|
183
|
+
.kontact-menu-apps {
|
184
|
+
display: flex;
|
185
|
+
flex-wrap: wrap;
|
186
|
+
|
187
|
+
a {
|
188
|
+
width: 50%;
|
189
|
+
height: auto;
|
190
|
+
position: relative;
|
191
|
+
min-height: 100px;
|
192
|
+
line-height: 100px;
|
193
|
+
font-size: 1.3em;
|
194
|
+
color: #334545;
|
195
|
+
}
|
196
|
+
|
197
|
+
a::before {
|
198
|
+
background-size: 155%;
|
199
|
+
opacity: 0.3;
|
200
|
+
}
|
201
|
+
|
202
|
+
a:hover::before {
|
203
|
+
background-size: 65%;
|
204
|
+
transition: background-size 0.3s;
|
205
|
+
}
|
206
|
+
}
|
207
|
+
|
208
|
+
a.kontact-menu-apps-kmail::before {
|
209
|
+
background-image: url(/assets/img/icon-kmail.svg);
|
210
|
+
}
|
211
|
+
a.kontact-menu-apps-korganizer::before {
|
212
|
+
background-image: url(/assets/img/icon-korganizer.svg);
|
213
|
+
}
|
214
|
+
a.kontact-menu-apps-kaddressbook::before {
|
215
|
+
background-image: url(/assets/img/icon-kaddressbook.svg);
|
216
|
+
}
|
217
|
+
a.kontact-menu-apps-akregator::before {
|
218
|
+
background-image: url(/assets/img/icon-akregator.svg);
|
219
|
+
}
|
220
|
+
a.kontact-menu-apps-knotes::before {
|
221
|
+
background-image: url(/assets/img/icon-knotes.svg);
|
222
|
+
}
|
223
|
+
a.kontact-menu-apps-akonadi::before {
|
224
|
+
background-image: url(/assets/img/icon-akonadi.png);
|
225
|
+
}
|
226
|
+
|
227
|
+
.navbar-toggler {
|
228
|
+
order: 2;
|
229
|
+
}
|
230
|
+
|
231
|
+
} /* #kHeaderNav */
|
232
|
+
|
233
|
+
#KontactGlobalLogo {
|
234
|
+
margin: 0;
|
235
|
+
margin-top: -3px;
|
236
|
+
text-align: center;
|
237
|
+
line-height: 50px;
|
238
|
+
height: 50px;
|
239
|
+
padding: 0 10px;
|
240
|
+
order: 1;
|
241
|
+
}
|
242
|
+
|
243
|
+
#KontactGlobalLogo > img {
|
244
|
+
width: 70%;
|
245
|
+
margin-top: -3px;
|
246
|
+
}
|
247
|
+
|
248
|
+
#kMainNavbar {
|
249
|
+
order: 4;
|
250
|
+
|
251
|
+
@media(min-width: 768px) {
|
252
|
+
order: 3;
|
253
|
+
}
|
254
|
+
}
|
255
|
+
|
256
|
+
#KMadeByKDE {
|
257
|
+
order: 3;
|
258
|
+
padding-right: 15px;
|
259
|
+
|
260
|
+
span {
|
261
|
+
display: none;
|
262
|
+
|
263
|
+
@media (min-width: 768px) {
|
264
|
+
display: inline;
|
265
|
+
}
|
266
|
+
}
|
267
|
+
|
268
|
+
@media (min-width: 768px) {
|
269
|
+
order: 4;
|
270
|
+
}
|
271
|
+
}
|
272
|
+
|
273
|
+
|
274
|
+
#KGlobalLogo::before {
|
275
|
+
position: absolute;
|
276
|
+
top: 0;
|
277
|
+
width: 42px;
|
278
|
+
margin-left: -21px;
|
279
|
+
content: "K";
|
280
|
+
color: #4d4d4d;
|
281
|
+
font-family: "glyph";
|
282
|
+
font-size: 32px;
|
283
|
+
font-weight: normal;
|
284
|
+
text-indent: 0px;
|
285
|
+
text-align: center;
|
286
|
+
line-height: 50px;
|
287
|
+
display: inline-block;
|
288
|
+
text-decoration: none !important;
|
289
|
+
}
|
290
|
+
|
291
|
+
main.main {
|
292
|
+
margin: auto;
|
293
|
+
margin-bottom: 50px;
|
294
|
+
width: 100%;
|
295
|
+
max-width: 1140px;
|
296
|
+
padding: 0 30px;
|
297
|
+
|
298
|
+
@media (min-width: 1140px) {
|
299
|
+
padding-left: 0;
|
300
|
+
padding-right: 0;
|
301
|
+
}
|
302
|
+
}
|
303
|
+
|
304
|
+
main .block {
|
305
|
+
padding: 30px 20px;
|
306
|
+
}
|
307
|
+
|
308
|
+
main.navfix {
|
309
|
+
margin-top: 50px; /* compensate for sticky header */
|
310
|
+
}
|
311
|
+
|
312
|
+
|
313
|
+
|
314
|
+
#kWelcome {
|
315
|
+
font-size: 18px;
|
316
|
+
border-radius: 2px;
|
317
|
+
border: solid 1px #abdaf9;
|
318
|
+
background-color: #e1f2ff;
|
319
|
+
color: #375a7d;
|
320
|
+
padding: 10px 20px;
|
321
|
+
margin-top: 60px;
|
322
|
+
margin-bottom: 60px;
|
323
|
+
text-align: center;
|
324
|
+
|
325
|
+
p {
|
326
|
+
padding: 0;
|
327
|
+
margin: 0;
|
328
|
+
}
|
329
|
+
}
|
330
|
+
|
331
|
+
#kFooter {
|
332
|
+
background-color: #eff1f1;
|
333
|
+
color: #7f8c8d;
|
334
|
+
position: relative;
|
335
|
+
padding-top: 12px;
|
336
|
+
font-size: 12px;
|
337
|
+
width: 100%;
|
338
|
+
clear: both;
|
339
|
+
|
340
|
+
a {
|
341
|
+
text-decoration: none;
|
342
|
+
color: #2980b9;
|
343
|
+
}
|
344
|
+
|
345
|
+
section {
|
346
|
+
width: 100%;
|
347
|
+
max-width: 1140px;
|
348
|
+
margin: auto;
|
349
|
+
padding: 0 20px;
|
350
|
+
}
|
351
|
+
|
352
|
+
#KSiteDonateForm {
|
353
|
+
background-color: #abf9c7;
|
354
|
+
border: solid 1px #7ceca4;
|
355
|
+
border-radius: 2px;
|
356
|
+
margin-top: 10px;
|
357
|
+
padding-top: 10px;
|
358
|
+
padding-bottom: 10px;
|
359
|
+
|
360
|
+
h3 {
|
361
|
+
font-size: 14px;
|
362
|
+
font-weight: bold;
|
363
|
+
color: #377d50;
|
364
|
+
padding: 0 0 10px;
|
365
|
+
margin: 0;
|
366
|
+
|
367
|
+
a {
|
368
|
+
font-width: normal;
|
369
|
+
margin-left: 20px;
|
370
|
+
color: #2980b9;
|
371
|
+
}
|
372
|
+
|
373
|
+
a::before {
|
374
|
+
content: "( ";
|
375
|
+
color: #377d50;
|
376
|
+
}
|
377
|
+
|
378
|
+
a::after {
|
379
|
+
content: " )";
|
380
|
+
color: #377d50;
|
381
|
+
}
|
382
|
+
}
|
383
|
+
|
384
|
+
#otherWaysDonate {
|
385
|
+
display: inline-block;
|
386
|
+
font-size: 14px;
|
387
|
+
margin-top: 10px;
|
388
|
+
}
|
389
|
+
}
|
390
|
+
|
391
|
+
#KGlobalContributorLinks {
|
392
|
+
padding: 0 20px;
|
393
|
+
box-sizing: border-box;
|
394
|
+
max-width: 100%;
|
395
|
+
background-color: rgba(0, 0, 0, 0.05);
|
396
|
+
position: relative;
|
397
|
+
margin: auto;
|
398
|
+
|
399
|
+
nav {
|
400
|
+
max-width: 1100px;
|
401
|
+
padding: 0;
|
402
|
+
line-height: 50px;
|
403
|
+
margin: auto;
|
404
|
+
font-size: 14px;
|
405
|
+
width: 100%;
|
406
|
+
position: relative;
|
407
|
+
}
|
408
|
+
}
|
409
|
+
|
410
|
+
#KGlobalLegalInfo {
|
411
|
+
padding: 20px;
|
412
|
+
|
413
|
+
small {
|
414
|
+
font-size: 12px;
|
415
|
+
}
|
416
|
+
|
417
|
+
figure {
|
418
|
+
display: inline-block;
|
419
|
+
padding: 0;
|
420
|
+
margin: 0;
|
421
|
+
}
|
422
|
+
|
423
|
+
small + small::before {
|
424
|
+
content: " | ";
|
425
|
+
color: #bdc3c7;
|
426
|
+
margin: 0 10px;
|
427
|
+
}
|
428
|
+
}
|
429
|
+
|
430
|
+
} /* #kFotter */
|
431
|
+
|
432
|
+
#kLinks {
|
433
|
+
padding: 30px 20px 30px 0;
|
434
|
+
|
435
|
+
nav {
|
436
|
+
width: 20%;
|
437
|
+
display: inline-block;
|
438
|
+
box-sizing: border-box;
|
439
|
+
vertical-align: top;
|
440
|
+
font-size: 12px;
|
441
|
+
padding: 10px 0 10px 20px;
|
442
|
+
|
443
|
+
h3 {
|
444
|
+
font-size: 14px;
|
445
|
+
color: #95a5a6;
|
446
|
+
margin: 0 0 10px 0;
|
447
|
+
font-weight: bold;
|
448
|
+
}
|
449
|
+
}
|
450
|
+
|
451
|
+
a {
|
452
|
+
display: block;
|
453
|
+
line-height: 150%;
|
454
|
+
}
|
455
|
+
|
456
|
+
a::after {
|
457
|
+
color: #7f8c8d;
|
458
|
+
position: relative;
|
459
|
+
content: ">";
|
460
|
+
font-family: "glyph";
|
461
|
+
vertical-align: baseline;
|
462
|
+
top: .1em;
|
463
|
+
padding-left: 10px;
|
464
|
+
}
|
465
|
+
|
466
|
+
} /* kLinks */
|
467
|
+
|
468
|
+
.konqi {
|
469
|
+
float: right;
|
470
|
+
width: 250px;
|
471
|
+
margin-top: -50px;
|
472
|
+
margin-left: 40px;
|
473
|
+
}
|
474
|
+
|
475
|
+
.icon {
|
476
|
+
margin-left: 20px;
|
477
|
+
}
|
478
|
+
|
479
|
+
.icon::before {
|
480
|
+
content: "";
|
481
|
+
position: absolute;
|
482
|
+
display: block;
|
483
|
+
width: 32px;
|
484
|
+
height: 50px;
|
485
|
+
left: 5px;
|
486
|
+
background-repeat: no-repeat;
|
487
|
+
background-size: 24px;
|
488
|
+
background-position: center;
|
489
|
+
}
|
490
|
+
|
491
|
+
.icon-kontact::before {
|
492
|
+
background-image: url(/assets/img/icon-kontact.svg);
|
493
|
+
}
|
494
|
+
.icon-kmail::before {
|
495
|
+
background-image: url(/assets/img/icon-kmail.svg);
|
496
|
+
}
|
497
|
+
.icon-korganizer::before {
|
498
|
+
background-image: url(/assets/img/icon-korganizer.svg);
|
499
|
+
}
|
500
|
+
.icon-kaddressbook::before {
|
501
|
+
background-image: url(/assets/img/icon-kaddressbook.svg);
|
502
|
+
}
|
503
|
+
.icon-knotes::before {
|
504
|
+
background-image: url(/assets/img/icon-knotes.svg)
|
505
|
+
}
|
506
|
+
.icon-akregator::before {
|
507
|
+
background-image: url(/assets/img/icon-akregator.svg)
|
508
|
+
}
|
509
|
+
|
510
|
+
.preview {
|
511
|
+
cursor: pointer;
|
512
|
+
}
|
513
|
+
|
514
|
+
#kImagePreview {
|
515
|
+
text-align: center;
|
516
|
+
|
517
|
+
img {
|
518
|
+
margin: auto;
|
519
|
+
cursor: pointer;
|
520
|
+
max-width: 100%;
|
521
|
+
}
|
522
|
+
}
|
523
|
+
|
524
|
+
#kImagePreviewContainer {
|
525
|
+
width: 100%;
|
526
|
+
height: 100%;
|
527
|
+
display: flex;
|
528
|
+
flex-direction: column;
|
529
|
+
align-items: center;
|
530
|
+
pointer-events: none;
|
531
|
+
}
|
532
|
+
|
533
|
+
.konsole {
|
534
|
+
display: block;
|
535
|
+
background-color: #31363b;
|
536
|
+
padding: 1px;
|
537
|
+
color: #eff0f1;
|
538
|
+
}
|
539
|
+
.konsole .konsole-red {
|
540
|
+
color: #da4453;
|
541
|
+
}
|
542
|
+
|
543
|
+
#KontactGlobalLogo img {
|
544
|
+
height: 48px;
|
545
|
+
width: auto;
|
546
|
+
}
|
data/_sass/download.scss
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
main.main h1 {
|
2
|
+
display: inline-blocks;
|
3
|
+
}
|
4
|
+
|
5
|
+
.distribution-table {
|
6
|
+
margin-bottom: 30px;
|
7
|
+
|
8
|
+
.title-row {
|
9
|
+
td {
|
10
|
+
padding-top: 30px;
|
11
|
+
}
|
12
|
+
th {
|
13
|
+
padding-top: 20px;
|
14
|
+
}
|
15
|
+
}
|
16
|
+
|
17
|
+
th {
|
18
|
+
font-size: 1.3em;
|
19
|
+
font-weight: normal;
|
20
|
+
}
|
21
|
+
|
22
|
+
td {
|
23
|
+
vertical-align: top;
|
24
|
+
padding: 5px;
|
25
|
+
}
|
26
|
+
|
27
|
+
img {
|
28
|
+
width: 64px;
|
29
|
+
}
|
30
|
+
}
|
data/_sass/glyphs.scss
ADDED
@@ -0,0 +1,136 @@
|
|
1
|
+
@font-face {
|
2
|
+
font-family: 'glyph';
|
3
|
+
src:url('/assets/glyph/glyph.eot?d1eayo');
|
4
|
+
src:url('/assets/glyph/glyph.eot?d1eayo#iefix') format('embedded-opentype'),
|
5
|
+
url('/assets/glyph/glyph.ttf?d1eayo') format('truetype'),
|
6
|
+
url('/assets/glyph/glyph.woff?d1eayo') format('woff'),
|
7
|
+
url('/assets/glyph/glyph.svg?d1eayo#glyph') format('svg');
|
8
|
+
font-weight: normal;
|
9
|
+
font-style: normal;
|
10
|
+
}
|
11
|
+
|
12
|
+
[class^="glyph-"], [class*=" glyph-"] {
|
13
|
+
font-family: 'glyph';
|
14
|
+
speak: none;
|
15
|
+
font-style: normal;
|
16
|
+
font-weight: normal;
|
17
|
+
font-variant: normal;
|
18
|
+
text-transform: none;
|
19
|
+
line-height: 1;
|
20
|
+
|
21
|
+
/* Better Font Rendering =========== */
|
22
|
+
-webkit-font-smoothing: antialiased;
|
23
|
+
-moz-osx-font-smoothing: grayscale;
|
24
|
+
}
|
25
|
+
|
26
|
+
.glyph-favorite:before {
|
27
|
+
content: "\e900";
|
28
|
+
}
|
29
|
+
.glyph-link:before {
|
30
|
+
content: "\6c";
|
31
|
+
}
|
32
|
+
.glyph-share-diaspora:before {
|
33
|
+
content: "\2a";
|
34
|
+
}
|
35
|
+
.glyph-share-facebook:before {
|
36
|
+
content: "\46";
|
37
|
+
}
|
38
|
+
.glyph-share-gplus:before {
|
39
|
+
content: "\47";
|
40
|
+
}
|
41
|
+
.glyph-share-reddit:before {
|
42
|
+
content: "\52";
|
43
|
+
}
|
44
|
+
.glyph-share-twitter:before {
|
45
|
+
content: "\54";
|
46
|
+
}
|
47
|
+
.glyph-share-ycombinator:before {
|
48
|
+
content: "\59";
|
49
|
+
}
|
50
|
+
.glyph-view-catalog:before {
|
51
|
+
content: "\e908";
|
52
|
+
}
|
53
|
+
.glyph-view-categories:before {
|
54
|
+
content: "\e909";
|
55
|
+
}
|
56
|
+
.glyph-view-fullscreen:before {
|
57
|
+
content: "\e90a";
|
58
|
+
}
|
59
|
+
.glyph-view-list-details:before {
|
60
|
+
content: "\e90b";
|
61
|
+
}
|
62
|
+
.glyph-view-list-icons:before {
|
63
|
+
content: "\e90c";
|
64
|
+
}
|
65
|
+
.glyph-view-list-text:before {
|
66
|
+
content: "\e90d";
|
67
|
+
}
|
68
|
+
.glyph-view-list-tree:before {
|
69
|
+
content: "\e90e";
|
70
|
+
}
|
71
|
+
.glyph-view-media-playlist:before {
|
72
|
+
content: "\e90f";
|
73
|
+
}
|
74
|
+
.glyph-window-new:before {
|
75
|
+
content: "\57";
|
76
|
+
}
|
77
|
+
.glyph-video:before {
|
78
|
+
content: "\56";
|
79
|
+
}
|
80
|
+
.glyph-cancel:before {
|
81
|
+
content: "\5c";
|
82
|
+
}
|
83
|
+
.glyph-check:before {
|
84
|
+
content: "\63";
|
85
|
+
}
|
86
|
+
.glyph-close:before {
|
87
|
+
content: "\58";
|
88
|
+
}
|
89
|
+
.glyph-logo-kde:before {
|
90
|
+
content: "\4b";
|
91
|
+
}
|
92
|
+
.glyph-logo-plasma:before {
|
93
|
+
content: "\50";
|
94
|
+
}
|
95
|
+
.glyph-logo-plasmamobile:before {
|
96
|
+
content: "\4d";
|
97
|
+
}
|
98
|
+
.glyph-clear:before {
|
99
|
+
content: "\78";
|
100
|
+
}
|
101
|
+
.glyph-go-down:before {
|
102
|
+
content: "\76";
|
103
|
+
}
|
104
|
+
.glyph-go-home:before {
|
105
|
+
content: "\48";
|
106
|
+
}
|
107
|
+
.glyph-go-next:before {
|
108
|
+
content: "\3e";
|
109
|
+
}
|
110
|
+
.glyph-go-previous:before {
|
111
|
+
content: "\3c";
|
112
|
+
}
|
113
|
+
.glyph-go-up:before {
|
114
|
+
content: "\5e";
|
115
|
+
}
|
116
|
+
.glyph-hamburger:before {
|
117
|
+
content: "\3d";
|
118
|
+
}
|
119
|
+
.glyph-info:before {
|
120
|
+
content: "\49";
|
121
|
+
}
|
122
|
+
.glyph-new-window:before {
|
123
|
+
content: "\77";
|
124
|
+
}
|
125
|
+
.glyph-search:before {
|
126
|
+
content: "\51";
|
127
|
+
}
|
128
|
+
.glyph-settings:before {
|
129
|
+
content: "\53";
|
130
|
+
}
|
131
|
+
.glyph-share:before {
|
132
|
+
content: "\73";
|
133
|
+
}
|
134
|
+
.glyph-share-telegram:before {
|
135
|
+
content: "\2197";
|
136
|
+
}
|