-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.scss
72 lines (61 loc) · 1.56 KB
/
style.scss
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
/*-- scss:defaults --*/
/* Cover image colours:
#782386 (purple)
#ab1866 (pink)
#d1295a (pinkish-red)
#e05b5c (peach)
#ffcc66 (starch) */
// Base document colors
//$body-bg: #181818;
//$body-color: white;
$link-color: #e05b5c;
$footer-bg: #d1295a;
// Code blocks
$code-block-bg-alpha: -.8;
/*-- scss:rules --*/
// Fonts
@font-face {
font-family: "Atkinson Hyperlegible";
src: url('font/woff2/Atkinson-Hyperlegible-Regular-102a.woff2');
src: url('font/woff2/Atkinson-Hyperlegible-Regular-102a.woff2') format('woff2');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "Atkinson Hyperlegible";
src: url('font/woff2/Atkinson-Hyperlegible-Bold-102a.woff2');
src: url('font/woff2/Atkinson-Hyperlegible-Bold-102a.woff2') format('woff2');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: "Atkinson Hyperlegible";
src: url('font/woff2/Atkinson-Hyperlegible-Italic-102a.woff2');
src: url('font/woff2/Atkinson-Hyperlegible-Italic-102a.woff2') format('woff2');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: "Atkinson Hyperlegible";
src: url('font/woff2/Atkinson-Hyperlegible-BoldItalic-102a.woff2');
src: url('font/woff2/Atkinson-Hyperlegible-BoldItalic-102a.woff2') format('woff2');
font-weight: bold;
font-style: italic;
}
body {
font-family: 'Atkinson Hyperlegible' !important;
}
p.caption {
color: #777;
margin-top: 10px;
}
p code {
white-space: inherit;
}
pre {
word-break: normal;
word-wrap: normal;
}
pre code {
white-space: inherit;
}