blob: 51ee7bba202d64b15c0feadedcc3c1f1df522824 (
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
|
/*
* 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/>
*/
footer {
overflow: hidden;
font-size: 10pt;
color: white;
padding: 0;
background-color: @color-footer;
padding: 1em 0;
line-height: 1.75;
a, a:link {
color: white;
}
a:visited {
color: #CCC;
}
nav ul h3 {
color: @color-main;
text-transform: uppercase;
font-weight: bold;
}
nav ul > li {
vertical-align: top;
display: inline-block;
width: 8rem;
margin: 0;
}
}
|