| @charset "utf-8"; |
| @import "util"; |
| |
| /** |
| * Basic global CSS rules for Kalamar |
| */ |
| |
| body, |
| html, |
| select, |
| g > text { |
| color: $dark-grey; |
| font-family: verdana, tahoma, arial; |
| margin: 0; |
| } |
| |
| * { |
| @include box-sizing-box; |
| } |
| |
| /* |
| html { |
| // @include box-sizing-box; |
| box-sizing: border-box; |
| } |
| |
| *, *:before, *:after { |
| box-sizing: inherit; |
| } |
| */ |
| |
| g > text { |
| fill: $dark-grey; |
| } |
| |
| html { |
| height: 100%; |
| } |
| |
| body { |
| position: relative; |
| min-height: 100%; |
| font-size: 12pt; |
| } |
| |
| |
| a { |
| &:link { |
| color: $dark-orange; |
| text-decoration: none; |
| &:hover { |
| color: $darkest-orange; |
| @include color-transition; |
| } |
| } |
| |
| // External links |
| &[href^="http://"]::after, |
| &[href^="https://"]::after { |
| font-family: FontAwesome; |
| content: " " + $fa-extlink; |
| font-size: 75%; |
| } |
| |
| // Link to documentation |
| &.doc-link::after { |
| font-family: FontAwesome; |
| content: " " + $fa-tutorial; |
| font-size: 75%; |
| } |
| } |
| |
| // Styles for Mojolicious::Plugin::TagHelpers::MailToChiffre |
| a[onclick$='return PArok(this,false)'] { |
| direction:rtl; |
| unicode-bidi:bidi-override; |
| text-align:left; |
| & > span { |
| &:nth-child(1n+2){ |
| display:none |
| } |
| &:nth-child(1)::after{ |
| content:'@' |
| } |
| } |
| } |