blob: c97973b31404bd54b60203da8e5d2e11876508d0 [file] [log] [blame]
Akronbec4a6a2018-07-10 14:45:15 +02001@import "highlight"; // JSON highlighting
2@import "kwic"; // Kwic view information
3@import "logos"; // Logo images
4@import "matchinfo"; // Match table
5@import "tree"; // Tree view
6@import "pagination"; // Pagination
7@import "query"; // View query
8@import "resultinfo"; // Information on results
9@import "tutorial"; // Embedded and non-embedded tutorial
10@import "koralquery"; // KoralQuery
11@import "tagger"; // Tagger
12@import "alertify"; // Styling alerts
13@import "intro"; // Intro page
14@import "buttongroup"; // Button groups
Akron537bc522018-07-13 19:06:27 +020015@import "panel"; // Base panel system
Akrone8e2c952018-07-04 13:43:12 +020016@import "plugin"; // Plugin mechanism
hebasta75cfca52019-02-19 13:15:27 +010017@import "introjs"; // Guided Tour
18@import "introjs-ids"; // Guided Tour: IDS specific
Nils Diewalda31a5152015-04-17 21:05:23 +000019main {
20 margin: {
21 left: $standard-margin;
Nils Diewald4347ee92015-05-04 20:32:48 +000022 right: ($standard-margin / 2);
Nils Diewalda31a5152015-04-17 21:05:23 +000023 }
24 padding-bottom: 20pt;
25 &.embedded {
26 margin: {
27 left: 14px;
28 right: 14px;
29 }
30 }
31 p {
32 text-align: justify;
33 hyphens: auto;
34 }
Akron9490e3b2019-10-17 12:26:29 +020035
36 h2#page-top {
37 margin-top: 0;
38 padding-top: 1em;
39 }
Akronf7ec4442019-10-27 20:01:05 +010040
41 &.page {
42 margin-left: $logo-left-distance + 15px;
43 p,li, dd, dt {
44 code {
45 background-color: $ids-grey-2;
46 color: $ids-grey-1;
47 padding: 0 .5em;
48 border-radius: $standard-border-radius;
49 }
50 }
51 }
Nils Diewalda31a5152015-04-17 21:05:23 +000052}
53
54blockquote {
55 border-radius: $standard-border-radius;
56 padding: 2pt 5pt 2pt 20pt;
57 margin: 0;
58 border-left: 5px solid $ids-blue-1;
59 background-color: $ids-blue-2;
60 color: $ids-blue-1;
Akron84b91992019-07-16 11:35:49 +020061
62 &.bug, &.missing {
63 border-left-color: $dark-red;
64 background-color: $middle-red;
65 color: $nearly-white;
66 }
Nils Diewalda31a5152015-04-17 21:05:23 +000067}