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