-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdefault.css
More file actions
46 lines (40 loc) · 782 Bytes
/
default.css
File metadata and controls
46 lines (40 loc) · 782 Bytes
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
a[href^="#"] em { border-bottom: 1px dotted #666 }
a[href^="#"] em { color: #000; }
body {
counter-reset: examples;
}
section > pre {
font-weight: bold;
background-color: #ddd;
padding: 0.5em;
}
.example, .note {
margin-top: 0.5em;
margin-bottom: 0.5em;
padding: 0.5em;
}
.example:before, .note:before {
display: block;
padding-bottom: 0.5em;
}
.example {
border-left: 0.5em solid #E0CB52;
background-color: #FCFAEE;
}
.example:before {
content: "EXAMPLE " counter(examples);
counter-increment: examples;
color: #B9AB2D;
}
.example pre {
padding-left: 1em;
}
.note {
border-left: 0.5em solid #52E052;
background-color: #E9FBE9;
padding-left: 1em;
}
.note:before {
content: "NOTE";
color: #2B2;
}