blob: ea252ba66c75e973dacad1ba17bbbbd621c5742e (
plain)
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
|
/*
* 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/>
*/
/* Import fonts */
@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');
}
/* Layout */
@layout-width: 40em;
/* Color constants */
@color-light: #999;
@color-bg: #fcfcfd;
@color-bg-box: #f3f3f3;
@color-text: #333;
@color-text-footer: #f5f5f8;
@color-main: crimson;
@color-footer: #333;
@color-link: #5c3566;
@color-link-hover: #ad7fa8;
@color-link-visited: #75507b;
/* Font constants */
@font-main: 'DejaVu Sans', sans-serif;
@font-monospace: monospace;
@font-serif: Palatino, serif;
|