-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
64 lines (53 loc) · 1015 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
57
58
59
60
61
62
63
64
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;
border: 2px solid orange;
}
.green-box {
background-color: #d9ffe9;
border-radius: 5px;
padding: 20px;
margin-bottom: 10px;
border: 2px solid orange;
}
.orange-box {
background-color: #ffeedf;
border-radius: 5px;
padding: 20px;
margin-bottom: 10px;
border: 2px solid black;
}
.caution, .important, .note, .tip, .warning {
padding: 1em 1em 1em 4em;
margin-bottom: 10px;
background: #f5f5f5 5px center/3em no-repeat;
border: 2px solid orange;
border-radius: 10px;
}
.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");
}
.fitcontent {
width: fit-content;
}