| @charset "utf-8"; |
| @import "util"; |
| |
| body, html, select, g > text { |
| color: $dark-grey; |
| font-family: verdana, tahoma, arial; |
| margin: 0; |
| } |
| |
| * { |
| @include box-sizing-box; |
| } |
| |
| g > text { |
| fill: $dark-grey; |
| } |
| |
| html { |
| height: 100%; |
| } |
| |
| body { |
| position: relative; |
| min-height: 100%; |
| font-size: 12pt; |
| } |
| |
| |
| a { |
| &[href^="http://"]:after, |
| &[href^="https://"]:after { |
| font-family: FontAwesome; |
| content: " " + $fa-extlink; |
| font-size: 75%; |
| } |
| &:link { |
| color: $dark-orange; |
| text-decoration: none; |
| &:hover { |
| color: $light-green; // $darkest-orange; |
| @include color-transition; |
| } |
| &:active, &:visited { |
| color: $darkest-orange; |
| } |
| } |
| } |