-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstyles.css
56 lines (42 loc) · 1011 Bytes
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Lato');
@import url('https://fonts.googleapis.com/css2?family=Fira+Mono');
@import url('https://fonts.googleapis.com/css2?family=Montserrat');
.distill-site-nav {
color: #FFFFFF;
background-color: rgb(249, 83, 85);
font-family: 'Montserrat', sans-serif;
font-size: 20px;
}
.distill-site-nav a {
color: inherit;
text-decoration: none;
}
.distill-site-header .title {
font-size: 20px;
font-weight: 600;
}
.distill-site-nav a:hover {
color: #383838;
}
.posts-list .metadata .publishedDate {
color: rgb(249, 83, 85);
}
html, body, p, h2 {
font-family: 'Lato', sans-serif;
font-weight: 200;
line-height: 1.3;
font-size: 1.0em;
color: #383838;
font-style: normal;
}
code {
font-family: 'Fira Mono', sans-serif;
color: #383838;
background: rgba(249, 83, 85, 0.1);
font-weight: 400;
font-size: 0.9em;
}
d-article a {
border-bottom: 2px solid rgba(249, 83, 85, 0.4);
text-decoration: none;
}