blob: f333d72e80ae8ad06a58d3ea688f537396db1093 (
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
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
|
/*!
* 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 "preamble.less";
@import "reset.less";
@import "typography.less";
/*@import "footer.less";
@import "header.less";*/
/* Import the prism code highlighter stylesheet */
@import (less) "lib/prism.css";
@import (less) "lib/prism_osml.css";
body {
background-color: @color-bg;
}
main > section {
max-width: @layout-width;
margin: 0 auto;
padding: 1rem 3rem;
vertical-align: top;
}
/* Responsively move "asides" to the side */
@media (min-width: (@layout-width + 18em)) {
aside {
position: absolute;
left: -14rem;
max-width: 12rem;
text-align: right;
}
main > section {
padding-left: 16rem;
}
}
/* Responsively increase font size to screen size */
@media (min-width: 300px) {
html {
font-size: 10pt;
}
}
@media (min-width: 500px) {
html {
font-size: 11pt;
}
}
@media (min-width: 1400px) {
html {
font-size: 13pt;
}
}
@media (min-width: 1900px) {
html {
font-size: 14pt;
}
}
/**
* Source code
*/
/*pre {
text-align: left;
margin: 1em 0;
padding: 1em;
}
pre, code {
font-family: monospace;
background-color: #f3f3f3;
font-size: 11pt;
}
pre em {
font-style: normal;
font-weight: bold;
color: #204a87;
}
pre var {
color: #4e9a06;
}
pre mark {
background-color: #ad7fa8;
color: white;
text-shadow: none;
}*/
/*
* Addresses
*/
/*span.address, span.mail, span.phone {
display: block;
}
span.address > span {
display: block;
}
main {
padding-bottom: 3em;
}
img[name=license] {
display: block;
padding: 1em;
}
.column.nav {
text-align: center;
}*/
|