-
Notifications
You must be signed in to change notification settings - Fork 0
/
hibiki.css
76 lines (67 loc) · 2.26 KB
/
hibiki.css
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
/* base variables */
/* m-plus-1p-regular - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'M PLUS 1p';
font-style: normal;
font-weight: 400;
src: url('fonts/m-plus-1p-v27-latin-regular.eot'); /* IE9 Compat Modes */
src: url('fonts/m-plus-1p-v27-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('fonts/m-plus-1p-v27-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
url('fonts/m-plus-1p-v27-latin-regular.woff') format('woff'), /* Modern Browsers */
url('fonts/m-plus-1p-v27-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
url('fonts/m-plus-1p-v27-latin-regular.svg#MPLUS1p') format('svg'); /* Legacy iOS */
}
html {
/*-- Main font sizes --*/
--title-size: 18px;
--body-size: 1rem;
--code-size: 14px;
--aside-size: 12px;
--fig-cap-size: 12px;
/*-- Main font colors --*/
--title-color: #02141c;
--header-color: #02141c;
--body-color: #02141c;
--aside-color: #02141c;
--fig-cap-color: #02141c;
/*-- Specify custom fonts ~~~ must be imported above --*/
--heading-font: 'M PLUS 1p', sans-serif;
--mono-font: Inconsolata, monospace;
--body-font: 'M PLUS 1p', sans-serif;
--navbar-font: 'M PLUS 1p', sans-serif; /* websites + blogs only */
}
/*-- ARTICLE METADATA --*/
d-byline {
--heading-size: 0.6rem;
--heading-color: #02141c;
--body-size: 0.8rem;
--body-color: #02141c;
}
/*-- ARTICLE TABLE OF CONTENTS --*/
.d-contents {
--heading-size: 14px;
--contents-size: 12px;
}
/*-- ARTICLE APPENDIX --*/
d-appendix {
--heading-size: 14px;
--heading-color: #02141c;
--text-size: 0.8em;
--text-color: #02141c;
}
/*-- WEBSITE HEADER + FOOTER --*/
/* These properties only apply to Distill sites and blogs */
.distill-site-header {
--title-size: 16px;
--text-color: #02141c;
--text-size: 14px;
--hover-color: #dd424c;
--bkgd-color: rgba(250, 250, 251, 0.8);
}
.distill-site-footer {
--text-color: #02141c;
--text-size: 11px;
--hover-color: #dd424c;
--bkgd-color: #ffffff;
}