-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
executable file
·65 lines (59 loc) · 1.24 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
body {
padding:10px;
counter-reset: examples;
}
section > pre, div.example > pre {
margin-top: 15px;
margin-right: 0px;
margin-bottom: 15px;
margin-left: 0px;
line-height: 1.5em;
overflow-x: auto;
overflow-y: auto;
padding-top: 6px;
padding-right: 10px;
padding-bottom: 6px;
padding-left: 10px;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
border: 1px solid #dddddd;
background-color: #f8f8f8;
}
code {
font-weight:bold;
background-color: #f8f8f8;
}
th {border:1px solid #999;background-color: #f8f8f8}
.even{background-color: #f8f8f8}
.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 {
counter-increment: examples;
content: "EXAMPLE " counter(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;
}