Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 1 | @charset "utf-8"; |
2 | @import "util"; | ||||
3 | |||||
4 | body, html, select, g > text { | ||||
5 | color: $dark-grey; | ||||
6 | font-family: verdana, tahoma, arial; | ||||
7 | margin: 0; | ||||
8 | } | ||||
9 | |||||
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 10 | * { |
11 | @include box-sizing-box; | ||||
12 | } | ||||
13 | |||||
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 14 | g > text { |
15 | fill: $dark-grey; | ||||
16 | } | ||||
17 | |||||
Nils Diewald | 1c54692 | 2015-04-13 01:56:19 +0000 | [diff] [blame] | 18 | html { |
19 | height: 100%; | ||||
20 | } | ||||
21 | |||||
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 22 | body { |
Nils Diewald | 1c54692 | 2015-04-13 01:56:19 +0000 | [diff] [blame] | 23 | position: relative; |
24 | min-height: 100%; | ||||
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 25 | font-size: 12pt; |
26 | } | ||||
27 | |||||
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 28 | |
29 | a { | ||||
Nils Diewald | a31a515 | 2015-04-17 21:05:23 +0000 | [diff] [blame] | 30 | &[href^="http://"]:after, |
31 | &[href^="https://"]:after { | ||||
Nils Diewald | 2488d05 | 2015-04-09 21:46:02 +0000 | [diff] [blame] | 32 | font-family: FontAwesome; |
33 | content: " " + $fa-extlink; | ||||
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 34 | font-size: 75%; |
35 | } | ||||
36 | &:link { | ||||
37 | color: $dark-orange; | ||||
38 | text-decoration: none; | ||||
Nils Diewald | 1c54692 | 2015-04-13 01:56:19 +0000 | [diff] [blame] | 39 | &:hover { |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 40 | color: $darkest-orange; |
Nils Diewald | 1c54692 | 2015-04-13 01:56:19 +0000 | [diff] [blame] | 41 | @include color-transition; |
42 | } | ||||
43 | &:active, &:visited { | ||||
44 | color: $darkest-orange; | ||||
45 | } | ||||
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 46 | } |
47 | } |