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
|
footer {
background-color: @footer-bg;
color: #444;
border-bottom: 1px solid darken(@footer-bg, 10%);
margin-top: 2em;
padding-top: 0.5em;
padding-bottom: 1em;
.box-shadow(~"inset 0 -1px 5px 0 rgba(0,0,0,.1)");
background-image: url('black-thing.svg'), url('znurt.svg');
background-size: 150px, 100px;
background-position: right bottom, right top;
background-repeat: no-repeat;
font-size: 90%;
a:link, a:visited, a:active {
color: @gentoo-purple;
border-bottom: 1px solid darken(@footer-bg, 10%);
}
a:hover {
border-bottom: 1px solid @gentoo-purple-light;
text-decoration: none;
}
.footerhead {
margin-top: 1em;
font-family: @font-family-sans-serif;
font-weight: normal;
text-transform: uppercase;
color: darken(@footer-bg, 60%);
font-size: 1.2em;
}
.spacer {
margin-top: 1em;
}
}
footer .row {
margin-bottom: 1em;
}
footer small {
font-size: 90%;
}
ul.footerlinks {
padding: 0;
margin: 0;
li {
list-style-type: none;
a:link, a:visited {
color: darken(@footer-bg, 40%);
border-radius: 2px;
border: none;
display: block;
padding: 6px 12px;
}
a:hover, a:active {
background-color: darken(@footer-bg, 30%);
text-decoration: none;
color: white;
}
}
li.divider {
border-top: 1px solid darken(@footer-bg, 10%);
margin-top: 5px;
padding-bottom: 5px;
}
}
ul.three-icons li {
text-align: center;
}
@media (min-width: @screen-sm-min) {
ul.three-icons li {
float: left;
width: 33%;
}
}
|