-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (95 loc) · 1.31 KB
/
style.css
File metadata and controls
95 lines (95 loc) · 1.31 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
body {
font-family: sans-serif;
}
p {
text-align: left;
}
h1, h2 {
border-bottom: 1px solid gray;
}
h4, h5, h6 {
text-align: center;
}
.toc {
background: whitesmoke;
border: 1px solid darkgray;
margin: 1em 0.5em;
padding: 0.25em;
}
.toc h2 {
font-size: 1.25em;
border: 0;
margin: 0.25em;
}
pre {
font: 1em monospace;
border: 1px solid gray;
margin: 1em 0.25em;
padding: 0.25em;
overflow: auto;
}
code {
font: 1em monospace;
border: 1px dotted gray;
padding: 1px 2px;
}
blockquote {
background: whitesmoke;
margin: 1em 40px;
padding: 0.5em;
}
blockquote blockquote {
background: white;
border-left: 1em solid lightgray;
margin: 0.5em;
}
blockquote p:first-child {
margin-top: 0;
}
blockquote p:last-child {
margin-bottom: 0;
}
table {
border-collapse: collapse;
border: 2px ridge darkgray;
margin: 0 0.5em 0.5em 0.5em;
}
caption {
margin-top: 0.5em;
}
tr {
background: whitesmoke;
}
tr:nth-child(odd) {
background: gainsboro;
}
th, td {
border: 1px solid gray;
padding: 0.25em;
}
th {
padding: 0.5em;
}
nav, .nav {
font-style: italic;
margin: 1em 0em;
}
header p, .header p {
font-style: italic;
padding-left: 40px;
}
footer, .footer {
clear: both;
font-size: smaller;
text-align: right;
margin: 1em 0em;
}
.left {
text-align: left;
}
.center {
text-align: center;
}
.right {
text-align: right;
}