Akron | bec4a6a | 2018-07-10 14:45:15 +0200 | [diff] [blame] | 1 | @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 |
Akron | 537bc52 | 2018-07-13 19:06:27 +0200 | [diff] [blame] | 15 | @import "panel"; // Base panel system |
Akron | e8e2c95 | 2018-07-04 13:43:12 +0200 | [diff] [blame] | 16 | @import "plugin"; // Plugin mechanism |
hebasta | 75cfca5 | 2019-02-19 13:15:27 +0100 | [diff] [blame] | 17 | @import "introjs"; // Guided Tour |
| 18 | @import "introjs-ids"; // Guided Tour: IDS specific |
Akron | 0f1b93b | 2020-03-17 11:37:19 +0100 | [diff] [blame^] | 19 | @import "oauth"; // OAuth Management styles |
| 20 | |
| 21 | |
Nils Diewald | a31a515 | 2015-04-17 21:05:23 +0000 | [diff] [blame] | 22 | main { |
| 23 | margin: { |
| 24 | left: $standard-margin; |
Nils Diewald | 4347ee9 | 2015-05-04 20:32:48 +0000 | [diff] [blame] | 25 | right: ($standard-margin / 2); |
Nils Diewald | a31a515 | 2015-04-17 21:05:23 +0000 | [diff] [blame] | 26 | } |
| 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 | } |
Akron | 9490e3b | 2019-10-17 12:26:29 +0200 | [diff] [blame] | 38 | |
| 39 | h2#page-top { |
| 40 | margin-top: 0; |
| 41 | padding-top: 1em; |
| 42 | } |
Akron | f7ec444 | 2019-10-27 20:01:05 +0100 | [diff] [blame] | 43 | |
| 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 Diewald | a31a515 | 2015-04-17 21:05:23 +0000 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | blockquote { |
| 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; |
Akron | 84b9199 | 2019-07-16 11:35:49 +0200 | [diff] [blame] | 64 | |
| 65 | &.bug, &.missing { |
| 66 | border-left-color: $dark-red; |
| 67 | background-color: $middle-red; |
| 68 | color: $nearly-white; |
| 69 | } |
Nils Diewald | a31a515 | 2015-04-17 21:05:23 +0000 | [diff] [blame] | 70 | } |