-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.css
76 lines (71 loc) · 1.75 KB
/
footer.css
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
/*
This file contains all the CSS for the footer,
starting at `body>div.footerbeforediv` to the end.
This is usually just copyright and release info, but
can also include footer links specific to the page.
*/
/* ======================================================= */
div.footerbeforediv ~ div {
background-color: #777676;
}
div.footerbeforediv ~ div,
div.footerbeforediv ~ div * {
margin: 0;
}
/* ======================================================= */
/* footerlinksdiv */
/* The links menu at the bottom (optional) */
div.footerlinksdiv {
padding-top: 2em;
}
span.pagefooterlinks > map > p:last-child {
color: white;
visibility: collapse;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-content: space-around;
}
span.pagefooterlinks > map > p:last-child a {
visibility: visible;
padding-left: 1em;
padding-right: 1em;
font-size: small;
font-family: "Source Sans Pro", sans-serif;
color: white;
}
span.pagefooterlinks > map > p:last-child a, span.pagefooterlinks > map > p:last-child a:hover, span.pagefooterlinks > map > p:last-child a:visited {
color: white;
}
/* ======================================================= */
/* Info about the company that made SIS back in 2002 */
body > div.pagefooterdiv {
/* parent to span.releasetext */
margin-left: 0;
margin-right: 0;
padding-top: 1em;
float: none;
right: 0;
left: 0;
}
span.releasetext {
/* Has the "RELEASE: X.X.X.X" thing */
color: white;
font-size: smaller;
font-weight: 100;
text-align: center;
display: block;
text-transform: capitalize;
}
body > div.banner_copyright {
left: 0;
right: 0;
}
body > div.banner_copyright > h5 {
color: white;
font-size: small;
font-weight: 100;
text-align: center;
margin: 0;
padding-bottom: 1em;
}