Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 1 | @charset "utf-8"; |
2 | @import "../util"; | ||||
3 | |||||
Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 4 | /** |
5 | * Rules for the footer section of Kalamar | ||||
6 | */ | ||||
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 7 | footer { |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 8 | background-color: $dark-grey; |
Akron | 7e5afce | 2020-08-25 15:50:19 +0200 | [diff] [blame] | 9 | position: absolute; |
10 | bottom: 0; | ||||
11 | padding-bottom: 2px; | ||||
12 | font-size: 70%; | ||||
13 | width: 100%; | ||||
14 | text-align: right; | ||||
15 | |||||
Akron | afeca25 | 2018-05-23 15:54:28 +0200 | [diff] [blame] | 16 | a { |
17 | &:link { | ||||
18 | margin: 0 .5em; | ||||
Akron | 7e5afce | 2020-08-25 15:50:19 +0200 | [diff] [blame] | 19 | color: $light-grey; |
Akron | afeca25 | 2018-05-23 15:54:28 +0200 | [diff] [blame] | 20 | } |
21 | &:visited { | ||||
Akron | 7e5afce | 2020-08-25 15:50:19 +0200 | [diff] [blame] | 22 | color: $light-grey; |
Akron | afeca25 | 2018-05-23 15:54:28 +0200 | [diff] [blame] | 23 | } |
24 | &:hover { | ||||
Akron | 7e5afce | 2020-08-25 15:50:19 +0200 | [diff] [blame] | 25 | color: $nearly-white; |
Akron | afeca25 | 2018-05-23 15:54:28 +0200 | [diff] [blame] | 26 | } |
27 | &[href^="http://"]::after, | ||||
28 | &[href^="https://"]::after { | ||||
29 | content: none | ||||
30 | } | ||||
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 31 | } |
Akron | ef6d5f1 | 2018-05-28 17:54:58 +0200 | [diff] [blame] | 32 | span.separator { |
33 | &:after { | ||||
34 | content: "-"; | ||||
Akron | 7e5afce | 2020-08-25 15:50:19 +0200 | [diff] [blame] | 35 | color: $light-grey; |
Akron | ef6d5f1 | 2018-05-28 17:54:58 +0200 | [diff] [blame] | 36 | } |
37 | } | ||||
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 38 | } |