blob: 1d14d300dc26e0c765c0c4eb73399a8f4c39488a (
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
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
|
/*!
* 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 "constants.less";
@import "reset.less";
@import "typography.less";
@import "footer.less";
@import "header.less";
/* Import the prism code highlighter stylesheet */
@import (less) "prism.css";
span.ipa {
color: gray;
}
ol.footnotes {
color: @color-light;
font-size: 10pt;
}
/**
* 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;
}
/**
* Main text
*/
main section#masthead ul#downloads li a {
}
main section {
text-align: justify;
-moz-hyphens: auto;
hyphens: auto;
}
.footnoteRef {
position: relative;
font-size: 85%;
top: -0.25em;
color: crimson;
}
.footnote {
font-size: 85%;
color: gray;
}
ol.footnotes {
clear: both;
}
/**
* Masthead
*/
section.masthead {
h1 {
font-size: 30pt;
}
h2 {
font-size: 20pt;
}
.pitch {
font-size: 14pt;
-moz-hyphens: none;
hyphens: none;
text-align: left;
}
}
.nav a.button:first-child {
background-color: @color-main;
font-weight: bold;
color: white;
width: 14em;
}
main a.button {
text-align: center;
display: inline-block;
width: 4em;
padding: 0.5em 2em;
margin: 1em;
border-radius: 2px;
border: 1px solid @color-main;
}
main a.button:hover {
background-color: @color-main;
color: white;
}
/*
* 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;
}
|