-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
68 lines (61 loc) · 1.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
p caption {
color: #777;
margin-top: 10px;
}
p code {
white-space: inherit;
}
pre {
word-break: normal;
word-wrap: normal;
}
pre code {
white-space: inherit;
}
.rmdnote, .rmdtip, .rmdwarning {
padding: 1em 1em 1em 4em;
margin-bottom: 10px;
background: #f5f5f5 5px center/3em no-repeat;
}
.rmdnote {
background-image: url("images/note.png");
}
.rmdtip {
background-image: url("images/tip.png");
}
.rmdwarning {
background-image: url("images/warning.png");
}
.open {
background-color: #92d094; /* Green */
border: 2px solid #357c38; /* Green */
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-radius: 8px;
}
.open:hover {
background-color: white;
border: 2px solid #357c38; /* Green */
}
.closed {
background-color: #d09492; /* Red */
border: 2px solid #7c3835; /* Red */
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-radius: 8px;
}
.closed:hover {
background-color: white;
border: 2px solid #7c3835; /* Red */
}
.section.level4.unnumbered {
margin-left: 30px;
}