blob: 8f23bbd8faba2b3f99d5b02d1274a97124128d49 [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;
15}
16
17
18main {
19 margin: {
20 left: $standard-margin;
Nils Diewald4347ee92015-05-04 20:32:48 +000021 right: ($standard-margin / 2);
Nils Diewalda31a5152015-04-17 21:05:23 +000022 }
23 padding-bottom: 20pt;
24 &.embedded {
25 margin: {
26 left: 14px;
27 right: 14px;
28 }
29 }
30 p {
31 text-align: justify;
32 hyphens: auto;
33 }
34
35/*
36 > section > p, > p {
37 a {
38 border-radius: 6px;
39 padding: 0 .3em;
40 background-color: $choose-bg;
41 text-shadow: light-shadow;
42 color: $light-green;
43 &:hover {
44 color: $dark-green;
45 text-shadow: none;
46 background-color: $light-green;
47 }
48 }
49 }
50*/
51}
52
53blockquote {
54 border-radius: $standard-border-radius;
55 padding: 2pt 5pt 2pt 20pt;
56 margin: 0;
57 border-left: 5px solid $ids-blue-1;
58 background-color: $ids-blue-2;
59 color: $ids-blue-1;
60}
61
62/*
63blockquote {
64 border-radius: 12px;
65 margin: 0;
66 text-indent: 0;
67 padding: 1em;
68 border-left: {
69 color: $dark-grey;
70 style: solid;
71 width: 1em;
72 }
73 background-color: $light-grey;
74 &.warning {
75 border-left-color: $dark-orange;
76 }
77 &.exception {
78 border-left-color: red;
79 }
80}
81*/