blob: f0ff84b0ffe7fae3a33e44e94788022c798395fb [file] [log] [blame]
Nils Diewaldab4d3ca2015-04-17 01:48:43 +00001@import "highlight"; // Navigation on the left side
2@import "kwic"; // Kwic view information
3@import "logos"; // Logo images
4@import "matchinfo"; // Match table and tree
5@import "pagination"; // Pagination
6@import "query"; // View query
7@import "resultinfo"; // Information on results
8@import "sidebar"; // Navigation on the left side
9@import "tutorial"; // Embedded and non-embedded tutorial
10@import "alertify";
Nils Diewalda31a5152015-04-17 21:05:23 +000011
12div.intro {
13 width: 70%;
14 min-width: 600px;
Akronb1e49c82015-05-28 19:49:52 +020015
16 // Visited links
17 a:visited {
18 color: $darkest-orange
19 }
Nils Diewalda31a5152015-04-17 21:05:23 +000020}
21
22
23main {
24 margin: {
25 left: $standard-margin;
Nils Diewald4347ee92015-05-04 20:32:48 +000026 right: ($standard-margin / 2);
Nils Diewalda31a5152015-04-17 21:05:23 +000027 }
28 padding-bottom: 20pt;
29 &.embedded {
30 margin: {
31 left: 14px;
32 right: 14px;
33 }
34 }
35 p {
36 text-align: justify;
37 hyphens: auto;
38 }
39
40/*
41 > section > p, > p {
42 a {
43 border-radius: 6px;
44 padding: 0 .3em;
45 background-color: $choose-bg;
46 text-shadow: light-shadow;
47 color: $light-green;
48 &:hover {
49 color: $dark-green;
50 text-shadow: none;
51 background-color: $light-green;
52 }
53 }
54 }
55*/
56}
57
58blockquote {
59 border-radius: $standard-border-radius;
60 padding: 2pt 5pt 2pt 20pt;
61 margin: 0;
62 border-left: 5px solid $ids-blue-1;
63 background-color: $ids-blue-2;
64 color: $ids-blue-1;
65}
66
67/*
68blockquote {
69 border-radius: 12px;
70 margin: 0;
71 text-indent: 0;
72 padding: 1em;
73 border-left: {
74 color: $dark-grey;
75 style: solid;
76 width: 1em;
77 }
78 background-color: $light-grey;
79 &.warning {
80 border-left-color: $dark-orange;
81 }
82 &.exception {
83 border-left-color: red;
84 }
85}
86*/