blob: 2bd308dfb464b5b56768aea805a55ade5096de73 [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
Akron48b1e4d2015-06-17 18:47:01 +020010@import "koralquery"; // KoralQuery
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000011@import "alertify";
Nils Diewalda31a5152015-04-17 21:05:23 +000012
13div.intro {
14 width: 70%;
15 min-width: 600px;
Akronb1e49c82015-05-28 19:49:52 +020016
17 // Visited links
18 a:visited {
19 color: $darkest-orange
20 }
Nils Diewalda31a5152015-04-17 21:05:23 +000021}
22
23
24main {
25 margin: {
26 left: $standard-margin;
Nils Diewald4347ee92015-05-04 20:32:48 +000027 right: ($standard-margin / 2);
Nils Diewalda31a5152015-04-17 21:05:23 +000028 }
29 padding-bottom: 20pt;
30 &.embedded {
31 margin: {
32 left: 14px;
33 right: 14px;
34 }
35 }
36 p {
37 text-align: justify;
38 hyphens: auto;
39 }
40
41/*
42 > section > p, > p {
43 a {
44 border-radius: 6px;
45 padding: 0 .3em;
46 background-color: $choose-bg;
47 text-shadow: light-shadow;
48 color: $light-green;
49 &:hover {
50 color: $dark-green;
51 text-shadow: none;
52 background-color: $light-green;
53 }
54 }
55 }
56*/
57}
58
59blockquote {
60 border-radius: $standard-border-radius;
61 padding: 2pt 5pt 2pt 20pt;
62 margin: 0;
63 border-left: 5px solid $ids-blue-1;
64 background-color: $ids-blue-2;
65 color: $ids-blue-1;
66}
67
68/*
69blockquote {
70 border-radius: 12px;
71 margin: 0;
72 text-indent: 0;
73 padding: 1em;
74 border-left: {
75 color: $dark-grey;
76 style: solid;
77 width: 1em;
78 }
79 background-color: $light-grey;
80 &.warning {
81 border-left-color: $dark-orange;
82 }
83 &.exception {
84 border-left-color: red;
85 }
86}
87*/