blob: d5a1eac155f8a6c550f6b4e90c515040c4d397c7 [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
10g > text {
11 fill: $dark-grey;
12}
13
14* {
15 @include box-sizing-box;
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 }
66/*
67 > section > p, > p {
68 a {
69 border-radius: 6px;
70 padding: 0 .3em;
71 background-color: $choose-bg;
72 text-shadow: light-shadow;
73 color: $light-green;
74 &:hover {
75 color: $dark-green;
76 text-shadow: none;
77 background-color: $light-green;
78 }
79 }
80 }
81*/
82}
83/*
84blockquote {
85 border-radius: 12px;
86 margin: 0;
87 text-indent: 0;
88 padding: 1em;
89 border-left: {
90 color: $dark-grey;
91 style: solid;
92 width: 1em;
93 }
94 background-color: $light-grey;
95 &.warning {
96 border-left-color: $dark-orange;
97 }
98 &.exception {
99 border-left-color: red;
100 }
101}
102*/
103
104div.intro {
105 width: 70%;
106 min-width: 600px;
107}