-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
111 lines (92 loc) · 2.21 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
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
@import url("fonts/sketchrockwell/font.css"); /*font-family:"SketchRockwellRegular"*/
@import url("fonts/handsean/font.css");/*font-family:"HandOfSeanRegular"*/
p.caption {
color: #777;
margin-top: 10px;
}
p code {
white-space: inherit;
}
pre {
word-break: normal;
word-wrap: normal;
}
pre code {
white-space: inherit;
}
.level1 h1 {
border-bottom: 1px solid;
}
.cover {
width: 500px;
display: block;
margin-left: auto;
margin-right: auto;
}
.book .book-body .page-wrapper .page-inner h2 {
font-family: "HandOfSeanRegular";
}
.book .book-summary {
background: #FFFFFF ;
}
.book .book-body .page-wrapper .page-inner section.normal h1.title{
font-size: 2.5em;
line-height: 1em;
font-family: "SketchRockwellRegular";
text-align: right;
}
.book .book-body .page-wrapper .page-inner section.normal h1 {
font-family: "SketchRockwellRegular";
font-size: 2em;
color: #1982D1;
}
.book .book-body {
background: #FFFFFF url(images/paper.jpg) repeat;
}
.book .book-body .page-wrapper .page-inner section {
border-radius: 15px;
border: 1px solid lightgray;
padding: 30px;
}
#flip {
-webkit-transform:rotate(-180deg);
-moz-transform:rotate(-180deg);
-o-transform:rotate(-180deg);
transform:rotate(-180deg);
ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
color: #C0C0C0;
}
.thintable {
width: 100px;
}
.infobox, .rmdtechnical, .rmdimportant, .rmdnote, .rmdtip, .rmdwarning, .rmdrant, .rmdjoke, .rmdtweet {
padding: 1em 1em 1em 4em;
margin-bottom: 10px;
background: #f5f5f5 5px center/3em no-repeat;
background-position: 10px 10px;
}
.rmdnote {
background-image: url("https://bookdown.org/yihui/bookdown/images/note.png");
}
.rmdjoke {
background-image: url("icons/laughing.png");
}
.rmdtweet {
background-image: url("icons/twitter.png");
background-repeat: no-repeat;
}
.rmdrant {
background-image: url("icons/rant-icon.png");
background-repeat: no-repeat;
}
.infobox {
padding: 1em 1em 1em 4em;
margin-bottom: 10px;
border: 2px solid orange;
border-radius: 10px;
background: #f5f5f5 5px center/3em no-repeat;
}
.caution {
background-image: url("images/caution.png");
}