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
|
/*
* Ousía Website CSS
*
* (c) Andreas Stöckel, 2015
*
* This work is licensed under a Creative Commons Attribution-ShareAlike 4.0
* International License. <http://creativecommons.org/licenses/by-sa/4.0/>
*/
@font-face {
font-family: 'Noto Sans';
font-style: normal;
font-weight: 400;
src: local('Noto Sans'), local('NotoSans'), url('../fonts/NotoSans.ttf') format('truetype');
}
@font-face {
font-family: 'Noto Sans';
font-style: normal;
font-weight: 700;
src: local('Noto Sans Bold'), local('NotoSans-Bold'), url('../fonts/NotoSansBold.ttf') format('truetype');
}
@font-face {
font-family: 'Noto Sans';
font-style: italic;
font-weight: 400;
src: local('Noto Sans Italic'), local('NotoSans-Italic'), url('../fonts/NotoSansItalic.ttf') format('truetype');
}
html {
font-family: 'Noto Sans', 'DejaVu Sans', sans-serif;
font-size: 12pt;
color: @color-text;
background-color: @color-footer;
}
/* Paragraphs and headers */
main {
p { margin: 1.12em 0 }
h1 { font-size: 2em; margin: .67em 0 }
h2 { font-size: 1.5em; margin: .75em 0 }
h3 { font-size: 1.17em; margin: .83em 0 }
}
h1 {
color: @color-main;
}
a, a:link, a:visited, a:hover, a:active {
color: crimson;
text-decoration: none;
transition: all 0.25s ease-in;
}
a:hover {
color: #900000;
text-decoration: underline;
}
main a:visited, footer a:visited {
color: #a40000;
}
section {
max-width: 975px;
max-width: 60rem;
margin: 0 auto;
padding: 1rem 3rem;
vertical-align: top;
}
header, main {
background-color: @color-bg;
}
dl {
width: 100%;
}
dl::after {
content: "";
display: block;
clear: both;
}
dt, dd {
float: left;
margin: 1em 0;
}
dt {
font-weight: bold;
color: @color-main;
width: 30%;
margin-right: 5%;
text-align: right;
}
dd {
width: 65%;
}
/**
* Footnotes
*/
sup {
position: relative;
font-size: 80%;
top: -0.5em;
}
/**
* Main text
*/
main, footer {
line-height: 1.75;
}
main {
h1, h2, h3, h4, h5, h6 {
color: @color-main;
margin-top: 0.25em;
margin-bottom: 0.25em;
}
h1 {
font-size: 200%;
}
h2 {
font-size: 150%;
}
h3 {
font-size: 125%;
}
h4, h5, h6 {
font-weight: bold;
}
}
|