blob: f1d0048465628714f2405250c82824297e9006be [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
Akron0f1b93b2020-03-17 11:37:19 +010019@import "oauth"; // OAuth Management styles
20
21
Nils Diewalda31a5152015-04-17 21:05:23 +000022main {
23 margin: {
24 left: $standard-margin;
Nils Diewald4347ee92015-05-04 20:32:48 +000025 right: ($standard-margin / 2);
Nils Diewalda31a5152015-04-17 21:05:23 +000026 }
27 padding-bottom: 20pt;
28 &.embedded {
29 margin: {
30 left: 14px;
31 right: 14px;
32 }
33 }
34 p {
35 text-align: justify;
36 hyphens: auto;
37 }
Akron9490e3b2019-10-17 12:26:29 +020038
39 h2#page-top {
40 margin-top: 0;
41 padding-top: 1em;
42 }
Akronf7ec4442019-10-27 20:01:05 +010043
44 &.page {
45 margin-left: $logo-left-distance + 15px;
46 p,li, dd, dt {
47 code {
48 background-color: $ids-grey-2;
49 color: $ids-grey-1;
50 padding: 0 .5em;
51 border-radius: $standard-border-radius;
52 }
53 }
54 }
Nils Diewalda31a5152015-04-17 21:05:23 +000055}
56
57blockquote {
58 border-radius: $standard-border-radius;
59 padding: 2pt 5pt 2pt 20pt;
60 margin: 0;
61 border-left: 5px solid $ids-blue-1;
62 background-color: $ids-blue-2;
63 color: $ids-blue-1;
Akron84b91992019-07-16 11:35:49 +020064
65 &.bug, &.missing {
66 border-left-color: $dark-red;
67 background-color: $middle-red;
68 color: $nearly-white;
69 }
Nils Diewalda31a5152015-04-17 21:05:23 +000070}