blob: 572318deee6501fec1af6223ab1377495d297d73 (
plain) (
blame)
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
|
.capitalize {
text-transform: capitalize;
}
.uk-navbar-nav li {
text-transform: capitalize;
line-height: 1em;
vertical-align: middle;
}
/*
* add vertical spacing to social icons
*/
.icons>a {
margin-bottom: 0.3em;
}
/*
* add spacing between the icon and the description
*/
.uk-icon-tag::before,
.uk-icon-rss-square::before,
.uk-icon-external-link::before
{
margin-right: 0.2em;
}
/*
* add additional spacing because the description should be separated from the
* next icon more thant the icon from the description
*/
/*
.uk-icon-rss-square,
*/
.uk-icon-tag
{ margin-right: 0.5em; }
/*
* add spacing to the license links
*/
.license
{ padding-right: 0.5em; }
/*
* the special entity in a heading that
* needs to be formatted differently
.entity {
text-transform: none;
font-family: italic;
font-weight: lighter;
}
*/
/*
* a heading for small messages
* */
.heading {
text-transform: uppercase;
text-align: left;
font-family: sans-serif;
font-style: italic;
font-size: 1.0em;
opacity: 0.4;
}
|