blob: 1d3d26aedf38ea36a9a726a74f2171e020d61fd0 [file] [log] [blame]
Nils Diewalda944fab2015-04-08 21:02:04 +00001@charset "utf-8";
2@import "util";
3
4body, html, select, g > text {
5 color: $dark-grey;
6 font-family: verdana, tahoma, arial;
7 margin: 0;
8}
9
Nils Diewalda944fab2015-04-08 21:02:04 +000010* {
11 @include box-sizing-box;
12}
13
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000014g > text {
15 fill: $dark-grey;
16}
17
Nils Diewald1c546922015-04-13 01:56:19 +000018html {
19 height: 100%;
20}
21
Nils Diewalda944fab2015-04-08 21:02:04 +000022body {
Nils Diewald1c546922015-04-13 01:56:19 +000023 position: relative;
24 min-height: 100%;
Nils Diewalda944fab2015-04-08 21:02:04 +000025 font-size: 12pt;
26}
27
Nils Diewalda944fab2015-04-08 21:02:04 +000028
29a {
Nils Diewalda31a5152015-04-17 21:05:23 +000030 &[href^="http://"]:after,
31 &[href^="https://"]:after {
Nils Diewald2488d052015-04-09 21:46:02 +000032 font-family: FontAwesome;
33 content: " " + $fa-extlink;
Nils Diewalda944fab2015-04-08 21:02:04 +000034 font-size: 75%;
35 }
36 &:link {
37 color: $dark-orange;
38 text-decoration: none;
Nils Diewald1c546922015-04-13 01:56:19 +000039 &:hover {
40 color: $light-green; // $darkest-orange;
41 @include color-transition;
42 }
43 &:active, &:visited {
44 color: $darkest-orange;
45 }
Nils Diewalda944fab2015-04-08 21:02:04 +000046 }
47}