blob: f25ff39620755833cecfa24fc99da721a16351fa (
plain) (
blame)
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
|
@font-face {
font-family: 'RobotoSlab-Regular';
src: url('/fonts/RobotoSlab-Regular-webfont.eot');
src: url('/fonts/RobotoSlab-Regular-webfont.eot?#iefix') format('embedded-opentype'),
url('/fonts/RobotoSlab-Regular-webfont.woff2') format('woff2'),
url('/fonts/RobotoSlab-Regular-webfont.woff') format('woff'),
url('/fonts/RobotoSlab-Regular-webfont.ttf') format('truetype'),
url('/fonts/RobotoSlab-Regular-webfont.svg#roboto_slabregular') format('svg');
font-weight: normal;
font-style: normal;
}
* {
box-sizing: border-box;
}
nav {
margin-bottom: 2em;
}
hr.new1 {
border: 1px solid #e2e2e2;
}
/* .title { */
/* font-size: 1.1em; */
/* color: orange; */
/* background-color: yellow; */
/* } */
.subtitle {
font-size: 1.3em;
color: yellow;
background-color: red;
}
.sourceCode {
font-size: 0.86em;
}
figcaption {
font-size: 0.69em;
}
/* img { */
/* display: block; */
/* margin-left: auto; */
/* margin-right: auto; */
/* width: 50%; */
/* } */
body {
font-family: 'RobotoSlab-Regular', serif;
font-size: 18px;
margin-left: auto;
margin-right: auto;
max-width: 800px;
padding: 20px;
}
/* li { */
/* margin-top: 0.7em; */
/* margin-bottom: 0.7em; */
/* } */
h1, h2, h3, h4, h5, h6 {
text-align: left;
}
/* a { */
/* color: blue; */
/* } */
|