forked from mozilla-spidermonkey/spidermonkey.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_page-footer.scss
79 lines (67 loc) · 1.43 KB
/
_page-footer.scss
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
footer {
background-color: var(--color-dim-bg);
padding-top:10px;
}
.page-footer {
clear: both;
color: var(--color-dim-primary);
font-size: 12px;
font-weight: $font-weight-regular;
min-height: 100px;
overflow: auto;
padding: 0 4% $grid-gutter;
width: 100%;
h3 {
border-bottom: 1px solid var(--color-dim-primary);
font-weight: $font-weight-regular;
margin-bottom: 1.25rem;
margin-top: 1.25rem;
padding-bottom: 1em;
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
&__link {
color: var(--color-dim-primary);
font-weight: $font-weight-regular;
line-height: $footer-line-height;
text-decoration: underline;
.icon {
clear: left;
float: left;
max-height: $footer-line-height;
max-width: $footer-icon-width;
padding-right: 1em;
}
.icon path {
fill: var(--color-dim-primary);
}
.icon .spidermonkey-small {
fill: var(--color-bg);
}
.icon .spidermonkey-circle {
fill: var(--color-dim-primary);
}
&:active .icon path,
&:focus .icon path,
&:hover .icon path {
fill: var(--color-link);
}
&:hover .icon .spidermonkey-small {
fill: var(--color-bg);
}
&:hover .icon .spidermonkey-circle {
fill: var(--color-link);
}
span {
line-height: $footer-line-height;
}
}
}
@media (min-width: $bp-large-tablet) {
footer {
padding-top:30px;
}
}