-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
173 lines (131 loc) · 2.85 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
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
161
162
163
164
165
166
/* ****************************************************** */
/* GENERAL */
/* ****************************************************** */
body {
background: #fcfcfc;
font-family: 'Open Sans', sans-serif;
}
a.a {
text-decoration: none;
color: #0060f0;
}
a.a:hover {
text-decoration: underline;
}
/* ****************************************************** */
/* Table of contents */
/* ****************************************************** */
.toc {
position: fixed;
background-color: #f0f0f0;
background-image: url('./pattern.png');
left: 0px;
top: 0px;
width: 240px;
padding: 0px 30px;
height: 100%;
overflow-y: scroll;
}
.toc a {
display: block;
color: #101010;
text-decoration: none;
}
.toc-ending {
height: 100px;
}
.toc a:hover {
color: #0050c0;
/*color: #c00050;*/
/*color: #f0f0f0;*/
}
.toc div {
margin: 0px;
padding: 0px;
}
.toc-div1 a {
font-weight: bold;
font-size: /*F*/ 25px;
margin-top: 30px;
}
.toc-div2 a {
font-size: /*F*/ 20px;
padding-top: 10px;
}
.toc-div3 a {
font-size: /*F*/ 14px;
padding-left: 20px;
padding-top: 10px;
}
.toc-div4 a {
font-size: /*F*/ 12px;
text-transform: lowercase;
padding-left: 40px;
}
/* ****************************************************** */
/* Content */
/* ****************************************************** */
.content {
width: 600px;
margin-left: 350px;
font-size: 14px;
line-height: 28px;
padding-bottom: 200px;
}
h1 {
font-size: /*F*/ 48px;
margin: 256px 0px 64px 0px;
/*padding-bottom: 10px;*/
/*border-bottom: 3px solid #000000;*/
}
h2 {
font-size: /*F*/ 36px;
margin: 256px 0px 36px 0px;
/*padding-bottom: 10px;*/
/*border-bottom: 3px solid #000000;*/
}
h3 {
font-size: /*F*/ 24px;
margin: 48px 0px 24px 0px;
padding: 3px 0px;
border-bottom: 1px solid #000000;
border-top: 1px solid #000000;
/*box-shadow: 0px -5px 2px -2px rgba(255,240,0,0.5) inset;*/
background: rgba(255,240,0,0.5);
}
h4 {
font-size: /*F*/ 20px;
margin: 48px 0px 24px 0px;
/*padding: 10px 0px;*/
border-bottom: 1px solid #000000;
border-top: 1px solid #000000;
/*box-shadow: 0px -5px 2px -2px rgba(255,240,0,0.5) inset;*/
}
/* ****************************************************** */
/* Code */
/* ****************************************************** */
pre.pre {
background: #f0f0f0;
color: #303030;
padding: 10px;
border: 2px solid #ffffff;
box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.25);
}
pre.pre code {
font-family: 'Source Code Pro', serif;
font-size: 12px;
line-height: 20px;
}
code.inline {
display: inline-block;
border: 1px dashed #d0d0d0;
border-radius: 3px;
padding: 0px 10px;
background: #f0f0f0;
color: #303030;
font-family: 'Source Code Pro', serif;
font-size: 12px;
line-height: 20px;
/*border: 2px solid #ffffff;*/
/*box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.25);*/
}