blob: 663510c0e2ae7a6d825805fc64cf51ad732525db [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;
Nils Diewalda31a5152015-04-17 21:05:23 +000011 font-size: 70%;
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000012 width: 100%;
Nils Diewalda31a5152015-04-17 21:05:23 +000013 text-align: right;
Akronafeca252018-05-23 15:54:28 +020014 a {
15 &:link {
16 margin: 0 .5em;
17 color: $light-grey;
18 }
19 &:visited {
20 color: $light-grey;
21 }
22 &:hover {
23 color: $nearly-white;
24 }
25 &[href^="http://"]::after,
26 &[href^="https://"]::after {
27 content: none
28 }
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000029 }
30}