-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathguides.css
More file actions
127 lines (127 loc) · 2.04 KB
/
guides.css
File metadata and controls
127 lines (127 loc) · 2.04 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
.docs-header h1 {
margin-bottom: 5px;
font-size: 40px;
line-height: 1;
}
.docs-header p {
font-weight: 300;
line-height: 1.4;
color: #c1bdd8;
}
@media (min-width: 768px) {
.docs-header {
font-size: 24px;
}
.docs-header h1 {
font-size: 60px;
}
}
@media (min-width: 1200px) {
.docs-header h1,
.docs-header p {
max-width: 75%;
}
}
#contents {
display: none;
}
#markdown-toc {
padding-left: 0;
margin-top: 30px;
font-size: 16px;
list-style: none;
}
#markdown-toc a {
display: block;
padding: 2px 10px 2px 10px;
}
#markdown-toc a:hover {
text-decoration: none;
}
#markdown-toc > li {
margin-bottom: 5px;
}
#markdown-toc > li:first-child {
display: none;
}
#markdown-toc ul {
list-style: none;
padding-left: 20px;
}
#markdown-toc ul ul {
display: none;
}
@media (min-width: 768px) {
#markdown-toc {
float: right;
width: 220px;
margin-right: -250px;
}
#markdown-toc a {
padding-left: 20px;
}
#markdown-toc > .active > ul {
display: block;
}
#markdown-toc .active > a {
padding-left: 18px;
color: #685d9f;
background-color: transparent;
border-left: 2px solid #685d9f;
}
#markdown-toc.affix {
top: 0;
}
#edit-guides-article {
display: block;
float: right;
cursor: pointer;
}
}
.docs-top {
position: fixed;
right: 20px;
bottom: 20px;
display: none;
padding: 6px 12px;
font-size: 14px;
border-radius: 4px;
background-color: #f2f2f2;
}
.docs-top:hover,
.docs-top:focus {
text-decoration: none;
}
@media (min-width: 768px) {
.docs-top {
display: block;
}
}
.docs-content {
font-size: 16px;
}
.docs-content > h1 {
padding-bottom: 10px;
margin: 44px 0 22px;
border-bottom: 1px solid #eeeeee;
}
.docs-content > h2 {
font-weight: 100;
padding-top: 20px;
}
.docs-content > h3 {
font-weight: 100;
}
.docs-content .anchor {
padding-right: 2px;
margin-left: -18px;
display: none;
}
.docs-content .title:hover .anchor {
display: inline-block;
}
@media (min-width: 768px) {
.docs-content {
padding-right: 180px;
}
}