-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
68 lines (60 loc) · 1.15 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
/******************************************************************************
CSS from "https://brad-cannell.github.io/r_notes/bookdown-quick-start.html"
******************************************************************************/
/*
CSS that came with bookdown
*/
p.caption {
color: #777;
margin-top: 10px;
}
p code {
white-space: inherit;
}
pre {
word-break: normal;
word-wrap: normal;
}
pre code {
white-space: inherit;
}
/*
Font Styles
*/
.large-bold {
font-size: 2em;
font-weight: bold;
}
.underline {
text-decoration: underline;
}
.red-text {
color: red;
}
.code {
color: #0365C0;
font-family: "Courier New", Courier, monospace;
}
/*
Note styles
*/
.note {
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
background-color: #f0f7fb;
border: solid 1px #3498db;
border-radius: 6px;
line-height: 18px;
overflow: hidden;
padding: 15px 15px;
}
.warning {
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
background-color: #FEFBEA;
border: solid 1px #F2E394;
border-radius: 6px;
line-height: 18px;
overflow: hidden;
padding: 15px 15px;
}