blob: 42aba2c2a67be9e5c0b77cb1307e42ee2267197c [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
28.intro p {
29 text-shadow: $light-shadow
30}
31
32a {
33 &[href^="http://"]:after {
Nils Diewald2488d052015-04-09 21:46:02 +000034 font-family: FontAwesome;
35 content: " " + $fa-extlink;
Nils Diewalda944fab2015-04-08 21:02:04 +000036 font-size: 75%;
37 }
38 &:link {
39 color: $dark-orange;
40 text-decoration: none;
Nils Diewald1c546922015-04-13 01:56:19 +000041 &:hover {
42 color: $light-green; // $darkest-orange;
43 @include color-transition;
44 }
45 &:active, &:visited {
46 color: $darkest-orange;
47 }
Nils Diewalda944fab2015-04-08 21:02:04 +000048 }
49}
50
51main {
52 margin: {
53 left: $standard-margin;
54 right: $standard-margin; // Todo: -16px
55 }
56 &.embedded {
57 margin: {
58 left: 14px;
59 right: 14px;
60 }
61 }
62 p {
63 text-align: justify;
64 hyphens: auto;
65 }
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000066
Nils Diewalda944fab2015-04-08 21:02:04 +000067/*
68 > section > p, > p {
69 a {
70 border-radius: 6px;
71 padding: 0 .3em;
72 background-color: $choose-bg;
73 text-shadow: light-shadow;
74 color: $light-green;
75 &:hover {
76 color: $dark-green;
77 text-shadow: none;
78 background-color: $light-green;
79 }
80 }
81 }
82*/
83}
84/*
85blockquote {
86 border-radius: 12px;
87 margin: 0;
88 text-indent: 0;
89 padding: 1em;
90 border-left: {
91 color: $dark-grey;
92 style: solid;
93 width: 1em;
94 }
95 background-color: $light-grey;
96 &.warning {
97 border-left-color: $dark-orange;
98 }
99 &.exception {
100 border-left-color: red;
101 }
102}
103*/
104
105div.intro {
106 width: 70%;
107 min-width: 600px;
108}