-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (47 loc) · 859 Bytes
/
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
body {
font-size: 1.6rem;
text-align: justify;
}
h1,h2,h3,h4,h5 {
text-align: left;
}
.blue-box {
background-color: #e6f0ff;
border-radius: 5px;
padding: 20px;
margin-bottom: 10px;
}
.green-box {
background-color: #d9ffe9;
border-radius: 5px;
padding: 20px;
margin-bottom: 10px;
}
.orange-box {
background-color: #ffeedf;
border-radius: 5px;
padding: 20px;
margin-bottom: 10px;
}
.caution, .important, .note, .tip, .warning {
padding: 1em 1em 1em 4em;
margin-bottom: 10px;
background: #e5cfe2 5px center/3em no-repeat;
border: 2px solid orange;
border-radius: 10px;
}
.note {
background-image: url("img/note.png");
}
.book .book-summary {
width: 370px;
position:absolute;
top:0;
left:-370px;
}
.book.with-summary .book-header.fixed {
left: 370px;
}
.book.with-summary .book-body {
left: 370px;
}