-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathnotes.css
More file actions
executable file
·161 lines (130 loc) · 1.99 KB
/
notes.css
File metadata and controls
executable file
·161 lines (130 loc) · 1.99 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
body {
background-color: #4977CD;
}
h1, h2, h3, h4, h5 {
font-family: Helvetica, Sans-Serif;
}
a {
color: #002165;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
#container {
width: 50em;
background-color: #CADDFF;
margin-left: auto;
margin-right: auto;
}
#title {
background-color: #039;
color: white;
padding-left: 1em;
padding-right: 1em;
padding-bottom: 1em;
padding-top: 1em;
}
#title h1 {
margin: 0;
padding: 0;
}
#title .left {
margin: 0;
padding: 0;
float: left;
text-align: left;
}
#title .right {
margin: 0;
padding: 0;
text-align: right;
}
#sidebar {
background-color: #CADDFF;
font-size: 85%;
font-family: Helvetica, Sans-serif;
width: 10em;
padding: 1em .5em 1em .5em;
margin: 0 0 0 0;
float: right;
}
#sidebar ul {
margin-left: 0em;
padding-left: .75em;
list-style-position: outside;
list-style-type: none;
}
#sidebar ul li {
margin-bottom: .5em;
}
#sidebar h1 {
font-size: 100%;
}
#sidebar a {
color: black;
}
#sidebar hr {
background-color: #002165;
border: 0;
height: 2px;
width: 75%;
}
#note {
background-color: white;
margin-top 0em;
margin-right: 9.35em; /* (10 + .5 + .5)*.85 */
padding: 1em 1em 1em 2em;
/* float: left;*/
}
#note h1 {
font-size: 150%;
}
#note h2 {
font-size: 125%;
}
#note h3 {
font-size: 100%;
}
#note h4,h5 {
font-size: 80%;
}
#note img.c {
display: block;
margin-left: auto;
margin-right: auto;
}
#note pre span.ln {
color: #888;
font-size: 75%;
}
#note .info {
font-size: 75%;
color: #888;
}
#note .info a {
color: #4977CD;
}
#note table {
border-collapse: collapse;
}
#note table th {
padding: .5em 1em .25em 1em;
background-color: #ddd;
border: 1px solid black;
border-bottom: 2px solid black;
}
#note table td {
padding: .25em 1em .25em 1em;
border: 1px solid black;
}
#note ol,ul {
margin-top: .5em;
margin-bottom: .5em;
}
#note li {
margin-top: .5em;
}
#note p.self {
background-color: #faa;
}