Akron | 3bb91bc | 2016-12-02 16:43:17 +0100 | [diff] [blame] | 1 | @import "highlight"; // JSON highlighting |
| 2 | @import "kwic-new"; // Kwic view information |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 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 |
Akron | 48b1e4d | 2015-06-17 18:47:01 +0200 | [diff] [blame] | 10 | @import "koralquery"; // KoralQuery |
Akron | 88490f2 | 2015-11-30 15:07:08 +0100 | [diff] [blame] | 11 | @import "tagger"; // Tagger |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 12 | @import "alertify"; |
Nils Diewald | a31a515 | 2015-04-17 21:05:23 +0000 | [diff] [blame] | 13 | |
| 14 | div.intro { |
| 15 | width: 70%; |
| 16 | min-width: 600px; |
Akron | b1e49c8 | 2015-05-28 19:49:52 +0200 | [diff] [blame] | 17 | |
| 18 | // Visited links |
| 19 | a:visited { |
| 20 | color: $darkest-orange |
| 21 | } |
Nils Diewald | a31a515 | 2015-04-17 21:05:23 +0000 | [diff] [blame] | 22 | } |
| 23 | |
| 24 | |
| 25 | main { |
| 26 | margin: { |
| 27 | left: $standard-margin; |
Nils Diewald | 4347ee9 | 2015-05-04 20:32:48 +0000 | [diff] [blame] | 28 | right: ($standard-margin / 2); |
Nils Diewald | a31a515 | 2015-04-17 21:05:23 +0000 | [diff] [blame] | 29 | } |
| 30 | padding-bottom: 20pt; |
| 31 | &.embedded { |
| 32 | margin: { |
| 33 | left: 14px; |
| 34 | right: 14px; |
| 35 | } |
| 36 | } |
| 37 | p { |
| 38 | text-align: justify; |
| 39 | hyphens: auto; |
| 40 | } |
| 41 | |
| 42 | /* |
| 43 | > section > p, > p { |
| 44 | a { |
| 45 | border-radius: 6px; |
| 46 | padding: 0 .3em; |
| 47 | background-color: $choose-bg; |
| 48 | text-shadow: light-shadow; |
| 49 | color: $light-green; |
| 50 | &:hover { |
| 51 | color: $dark-green; |
| 52 | text-shadow: none; |
| 53 | background-color: $light-green; |
| 54 | } |
| 55 | } |
| 56 | } |
| 57 | */ |
| 58 | } |
| 59 | |
| 60 | blockquote { |
| 61 | border-radius: $standard-border-radius; |
| 62 | padding: 2pt 5pt 2pt 20pt; |
| 63 | margin: 0; |
| 64 | border-left: 5px solid $ids-blue-1; |
| 65 | background-color: $ids-blue-2; |
| 66 | color: $ids-blue-1; |
| 67 | } |
| 68 | |
| 69 | /* |
| 70 | blockquote { |
| 71 | border-radius: 12px; |
| 72 | margin: 0; |
| 73 | text-indent: 0; |
| 74 | padding: 1em; |
| 75 | border-left: { |
| 76 | color: $dark-grey; |
| 77 | style: solid; |
| 78 | width: 1em; |
| 79 | } |
| 80 | background-color: $light-grey; |
| 81 | &.warning { |
| 82 | border-left-color: $dark-orange; |
| 83 | } |
| 84 | &.exception { |
| 85 | border-left-color: red; |
| 86 | } |
| 87 | } |
| 88 | */ |