-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogtheme.css
138 lines (115 loc) · 3.15 KB
/
blogtheme.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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet');
html {
/*-- Main font sizes --*/
--title-size: 50px;
--body-size: 1.06rem;
--code-size: 14px;
--aside-size: 12px;
--fig-cap-size: 13px;
/*-- Main font colors --*/
--title-color: #06441a; /*-- zuccini --*/
--header-color: #06441a; /*-- zuccini --*/
--body-color: #14141a; /*-- Woodsmoke--*/
--aside-color: #14141a; /*-- Woodsmoke--*/
--fig-cap-color: #14141a; /*-- Woodsmoke--*/
/*-- Specify custom fonts ~~~ must be imported above --*/
--heading-font: "Roboto", monospace;
--mono-font: "Roboto", monospace;
--body-font: "Roboto", monospace;
--navbar-font: "Roboto", monospace;
}
/*-- ARTICLE METADATA --*/
d-byline {
--heading-size: 0.6rem;
--heading-color: #06441a; /*-- zuccini --*/
--body-size: 0.8rem;
--body-color: #14141a; /*-- Woodsmoke--*/
}
/* Postcard main text */
div#content p {
color: #14141a; /*-- Woodsmoke--*/
}
/* Postcard list items */
.list-inline-item {
color: #14141a; /*-- Woodsmoke--*/
}
/* Postcard headers */
h1, h2 {
color: #06441a; /*-- zuccini --*/
}
/* Postcard links */
#content a {
color: #06441a; /*-- zuccini --*/
}
/* mouse over link */
#content a:hover {
color: #adb7b6; /*-- flintsmoke--*/
}
/* selected link */
#content a:active {
color: #06441a; /*-- zuccini --*/
}
/* visited link */
#content a:visited {
color: #06441a; /*-- zuccini --*/
}
/*-- ARTICLE TABLE OF CONTENTS --*/
.d-contents {
--heading-size: 18px;
--heading-color: #263130; /*-- outerspace--*/
--contents-size: 13px;
}
/*-- ARTICLE APPENDIX --*/
d-appendix {
--heading-size: 15px;
--heading-color: #263130; /*-- outerspace--*/
--text-size: 0.8em;
--text-color: #14141a; /*-- Woodsmoke--*/
}
/*-- WEBSITE HEADER + FOOTER --*/
/* These properties only apply to Distill sites and blogs */
.distill-site-header {
--title-size: 18px;
--text-color: #06441a; /*-- zuccini --*/
--text-size: 15px;
--hover-color: white;
--bkgd-color: #4ca46c; /*-- fruit salad --*/
}
.distill-site-footer {
--text-color: #06441a; /*-- zuccini --*/
--text-size: 15px;
--hover-color: white;
--bkgd-color: #4ca46c; /*-- fruit salad --*/
}
/*-- Additional custom styles --*/
/* Add any additional CSS rules below */
/* Change bullets */
ul > li::marker {
font-size: 1.125em;
color: #06441a; /*-- zuccini --*/
}
/* Change link appearance */
d-article a {
color: #06441a; /*-- zuccini --*/
}
/* Non-postcard links */
d-article a{
border-bottom: 0px;
color: #06441a; /*-- zuccini --*/
}
/* mouse over link */
d-article a:hover {
color: #adb7b6; /*-- flintsmoke--*/
}
/* selected link */
d-article a:active {
color: #06441a; /*-- zuccini --*/
}
/* visited link */
d-article a:visited {
color: tomato;
}
/* Post descriptions */
d-article p {
color: #14141a; /*-- Woodsmoke--*/
}