blob: da95c8183d6a5a5fc91e7b1d6076a553b6c1ad8c [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
18body {
19 font-size: 12pt;
20}
21
22.intro p {
23 text-shadow: $light-shadow
24}
25
26a {
27 &[href^="http://"]:after {
28 font-family: "FontAwesome";
29 content: " \f08e";
30 font-size: 75%;
31 }
32 &:link {
33 color: $dark-orange;
34 text-decoration: none;
35 }
36 &:link:hover:hover {
37 color: $light-green; // $darkest-orange;
38 @include color-transition;
39 }
40 &:active, &:visited {
41 color: $darkest-orange;
42 }
43}
44
45main {
46 margin: {
47 left: $standard-margin;
48 right: $standard-margin; // Todo: -16px
49 }
50 &.embedded {
51 margin: {
52 left: 14px;
53 right: 14px;
54 }
55 }
56 p {
57 text-align: justify;
58 hyphens: auto;
59 }
60/*
61 > section > p, > p {
62 a {
63 border-radius: 6px;
64 padding: 0 .3em;
65 background-color: $choose-bg;
66 text-shadow: light-shadow;
67 color: $light-green;
68 &:hover {
69 color: $dark-green;
70 text-shadow: none;
71 background-color: $light-green;
72 }
73 }
74 }
75*/
76}
77/*
78blockquote {
79 border-radius: 12px;
80 margin: 0;
81 text-indent: 0;
82 padding: 1em;
83 border-left: {
84 color: $dark-grey;
85 style: solid;
86 width: 1em;
87 }
88 background-color: $light-grey;
89 &.warning {
90 border-left-color: $dark-orange;
91 }
92 &.exception {
93 border-left-color: red;
94 }
95}
96*/
97
98div.intro {
99 width: 70%;
100 min-width: 600px;
101}