blob: 0581985b9f8682a52c830d8d1992fda2416afb24 [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 {
8 position: absolute;
9 background-color: $dark-grey;
10 bottom: 0;
Akron066cd352018-05-24 20:41:28 +020011 padding-bottom: 2px;
Nils Diewalda31a5152015-04-17 21:05:23 +000012 font-size: 70%;
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000013 width: 100%;
Nils Diewalda31a5152015-04-17 21:05:23 +000014 text-align: right;
Akronafeca252018-05-23 15:54:28 +020015 a {
16 &:link {
17 margin: 0 .5em;
18 color: $light-grey;
19 }
20 &:visited {
21 color: $light-grey;
22 }
23 &:hover {
24 color: $nearly-white;
25 }
26 &[href^="http://"]::after,
27 &[href^="https://"]::after {
28 content: none
29 }
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000030 }
Akronef6d5f12018-05-28 17:54:58 +020031 span.separator {
32 &:after {
33 content: "-";
34 color: $light-grey;
35 }
36 }
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000037}