blob: 08c99423f1e3e9f8498b3f2af11be384a2c15a35 (
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
|
footer {
margin-top: 5em;
@include breakpoint(gamma) {
max-width: 960;
}
&:before {
@include breakpoint(beta) {
@include faded_line_after;
margin-bottom: 1.2em;
}
}
.footer-nav {
list-style-type: none !important;
margin-left: 0 !important;
border-top: 1px $brown dotted;
border-bottom: 1px $brown dotted;
padding: .5rem 0;
@include breakpoint(beta) {
border: none;
}
}
li {
display: inline;
margin: 0 .25em;
&:after {
content: "\00b7";
color: #999999;
padding-left: 0.75em;
}
a {
color: $secondary-link-color;
text-decoration: none;
}
ul { display:inline;}
}
li:last-of-type {
margin-right: 0;
&:after {
content: " ";
}
}
p {
@include fontsize(10);
text-align: center;
margin-top: 1.5em;
margin-bottom: 1.5em;
}
}
.black footer, .dark footer {
&:before {
@include light_faded_line_after;
}
a {
color: $body_font_light;
}
}
.donate-btn {
display: inline-block;
margin-left: .5rem;
input[type="submit"] {
background: url("img/pp_donate.gif") 0 0 no-repeat;
border: none;
width: 100px;
text-indent: -9999em;
line-height: 19px;
padding: 2px 7px 10px;
}
}
.liberapay-btn {
background: url("img/lpdonate.svg") 0 0 no-repeat;
text-indent: -9999em;
display: inline-block;
line-height: 25px;
padding: 5px 7px 3px;
text-decoration: none;
width: 70px;
}
#license {
@include fancy_sans;
@include fontsize(12);
text-transform: none;
letter-spacing: normal;
}
|