blob: 8c2675ce31e1ba4fe9bc7f68686b56b534676831 [file] [log] [blame]
Nils Diewaldab4d3ca2015-04-17 01:48:43 +00001@charset "utf-8";
2@import "../util";
3
Nils Diewald652e5f42015-05-10 18:11:45 +00004/**
5 * Rules for the footer section of Kalamar
6 */
Nils Diewaldab4d3ca2015-04-17 01:48:43 +00007footer {
Nils Diewaldab4d3ca2015-04-17 01:48:43 +00008 background-color: $dark-grey;
Akron7e5afce2020-08-25 15:50:19 +02009 position: absolute;
10 bottom: 0;
11 padding-bottom: 2px;
12 font-size: 70%;
13 width: 100%;
14 text-align: right;
15
Akronafeca252018-05-23 15:54:28 +020016 a {
17 &:link {
18 margin: 0 .5em;
Akron7e5afce2020-08-25 15:50:19 +020019 color: $light-grey;
Akronafeca252018-05-23 15:54:28 +020020 }
21 &:visited {
Akron7e5afce2020-08-25 15:50:19 +020022 color: $light-grey;
Akronafeca252018-05-23 15:54:28 +020023 }
24 &:hover {
Akron7e5afce2020-08-25 15:50:19 +020025 color: $nearly-white;
Akronafeca252018-05-23 15:54:28 +020026 }
27 &[href^="http://"]::after,
28 &[href^="https://"]::after {
29 content: none
30 }
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000031 }
Akronef6d5f12018-05-28 17:54:58 +020032 span.separator {
33 &:after {
34 content: "-";
Akron7e5afce2020-08-25 15:50:19 +020035 color: $light-grey;
Akronef6d5f12018-05-28 17:54:58 +020036 }
37 }
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000038}