-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (42 loc) · 768 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
body {
font-size: 1.6rem;
text-align: justify;
}
.title {
color: firebrick;
}
h1,h2,h3,h4,h5 {
text-align: left;
}
.figure-box {
background-color: #dbf0f6;
border-radius: 5px;
padding: 20px;
margin-bottom: 10px;
}
.table-box {
background-color: #ffffe0;
border-radius: 5px;
padding: 20px;
margin-bottom: 10px;
}
.caution, .important, .note, .tip, .warning {
padding: 1em 1em 1em 4em;
margin-bottom: 10px;
background: #f5f5f5 5px center/3em no-repeat;
}
.caution {
background-image: url("img/caution.png");
}
.important {
background-image: url("img/important.png");
}
.note {
background-image: url("img/note.png");
}
.tip {
background-image: url("img/tip.png");
}
.warning {
background-image: url("img/warning.png");
}