-
Notifications
You must be signed in to change notification settings - Fork 15
/
guide.css
74 lines (74 loc) · 1.32 KB
/
guide.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
#body{
font-family: Helvetica, arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
width: 1000px;
margin: auto;
line-height: 160%;
font-size: 16px;
background-color: #FFFFFF;
padding: 10px;
border-radius: 10px;
}
.heading{
font-weight: bold;
border-radius: 5px;
}
.spoiler{
border-left: groove;
border-radius: 10px;
padding: 5px;
}
.note{
font-style: italic;
color: #606060;
border-left: 4px solid #A0A0A0;
padding-left: 16px;
}
p, .note{
line-height: 160%;
}
p br{
margin: 30px;
}
#index{
border: ridge;
border-radius: 5px;
width: 500px;
}
.code{
background-color: #404040;
color: #FFFFFF;
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
border-radius: 5px;
padding: 1px;
display: inline;
/* This font family set is what GitHub uses, and I like it :D */
}
.note .code{
background-color: #A0A0A0;
color: #000000;
}
.codefence{
border-radius: 5px;
}
.u{
text-decoration: underline;
}
.hinted{
border-bottom: 1px dotted #000000;
cursor: help;
}
li.depth-1{
list-style-type: upper-alpha;
}
li.depth-2{
list-style-type: decimal;
}
li.depth-3{
list-style-type: lower-alpha;
}
li.depth-4{
list-style-type: upper-roman;
}
li.depth-5{
list-style-type: lower-roman;
}