forked from r-devel/rdevguide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
69 lines (57 loc) · 1.13 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Slab&display=swap');
p.caption {
color: #777;
margin-top: 10px;
}
p, code {
white-space: inherit;
}
pre {
word-break: normal;
word-wrap: normal;
}
pre, code {
white-space: inherit;
}
p, div {
font-family: 'Raleway';
}
a {
font-family: 'Raleway';
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Josefin Slab', serif;
color: #2673D9 !important;
}
.summary {
background-color: white;
}
a {
color: #2673D9 !important;
}
/* these are Josh Comeau's amazing style!! */
div.note {
position: relative;
padding: 1em;
margin: 2em 0;
background-size: 70px;
background: hsla(214, 70%, 50%, 0.15);
background-repeat: no-repeat;
background-position: 15px center;
border-left: solid 4px hsl(214, 70%, 50%)
}
div.note.image {
content:url(img/information.svg);
}
.note-icon {
height: 32px;
width: 32px;
position: absolute;
top: 0px;
left: 0px;
transform: translate(-50%, -50%);
background: white;
border-radius: 50%;
padding: 8px;
}