Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 1 | /** |
Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 2 | * Some variables and mixins for Kalamar, |
| 3 | * other Sass styles will use. |
| 4 | */ |
| 5 | |
| 6 | /** |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 7 | * Official IDS colors |
| 8 | */ |
| 9 | $ids-orange-1: rgb(246, 168, 0); |
| 10 | $ids-orange-2: rgb(242, 148, 0); |
| 11 | $ids-grey-1: rgb(135, 136, 138); |
| 12 | $ids-grey-2: rgb(217, 218, 219); |
| 13 | $ids-blue-1: rgb( 0, 158, 224); // Pragmatik |
| 14 | $ids-blue-2: rgb(188, 228, 247); // Pragmatik |
| 15 | $ids-green-1: rgb( 99, 111, 7); // Grammatik |
| 16 | $ids-green-2: rgb(227, 232, 163); // Grammatik |
| 17 | $ids-pink-1: rgb(193, 0, 43); // Lexik |
| 18 | $ids-pink-2: rgb(250, 243, 222); // Lexik |
| 19 | |
Akron | 08b82d6 | 2016-12-05 15:06:05 +0100 | [diff] [blame] | 20 | $black: #333; |
| 21 | |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 22 | /** |
| 23 | * Orange Colors |
| 24 | */ |
| 25 | $light-orange: #f4eebb; // #ffe56a; |
| 26 | $middle-orange: #ffd080; |
| 27 | $dark-orange: $ids-orange-1; // #ffa500; |
| 28 | $darker-orange: #ff8000; |
Nils Diewald | 0e6992a | 2015-04-14 20:13:52 +0000 | [diff] [blame] | 29 | $darkest-orange: #e55d00; |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 30 | // $light-orange-2: #f4eebb;, #ffd080; |
| 31 | // Yellow: #fff48d |
| 32 | |
| 33 | /** |
| 34 | * Green Colors |
| 35 | */ |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 36 | $dark-green: $ids-green-1; // #496000; |
| 37 | $middle-green: lighten($ids-green-1, 5%); // $ids-green-1; // #688704; |
| 38 | $light-green: lighten($ids-green-1, 13%); // #7ba400; |
| 39 | $lightest-green: lighten($ids-green-1, 26%); |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 40 | |
| 41 | /** |
| 42 | * Blue Colors |
| 43 | */ |
Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 44 | $light-blue: $ids-blue-2; |
| 45 | $dark-blue: $ids-blue-1; |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 46 | $darkest-blue: darken($dark-blue, 40%); |
| 47 | |
Nils Diewald | a122862 | 2015-04-25 01:59:10 +0000 | [diff] [blame] | 48 | /** |
| 49 | * Grey Colors |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 50 | */ |
| 51 | $middle-grey: $ids-grey-1; // #999; |
| 52 | $light-grey: $ids-grey-2; // #ddd; |
Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 53 | $dark-grey: darken($middle-grey, 15%); |
| 54 | $nearly-white: #fefefe; |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 55 | |
Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 56 | /** |
| 57 | * Red Colors (no IDS relation) |
| 58 | */ |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 59 | $middle-red: #c1002b; |
| 60 | $light-red: lighten($middle-red, 40%); |
| 61 | $dark-red: darken($middle-red, 40%); |
| 62 | |
Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 63 | |
| 64 | /** |
| 65 | * Basic shadows |
| 66 | */ |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 67 | $dark-shadow: 1px 1px 1px rgba(0,0,0,0.3); |
| 68 | $light-shadow: 1px 1px rgba(255,255,255,0.5); |
| 69 | |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 70 | /** |
| 71 | * KWIC colors |
| 72 | */ |
| 73 | $kwic-border: $middle-grey; |
| 74 | $kwic-line-noneven: $light-grey; |
| 75 | $kwic-line-even: $nearly-white; |
| 76 | $kwic-match-color: $dark-grey; |
| 77 | $kwic-match-shadow: $light-shadow; |
| 78 | |
| 79 | $kwic-highlight-1: $middle-red; |
| 80 | $kwic-highlight-2: $dark-blue; // #009ee0; |
| 81 | $kwic-highlight-3: $dark-orange; // #f29400; |
| 82 | $kwic-highlight-4: $light-green; |
| 83 | |
| 84 | $choose-bg: $light-grey; |
| 85 | $choose-border-color: $middle-grey; |
| 86 | $choose-border: 2px solid $choose-border-color; |
| 87 | $choose-color: $dark-grey; |
| 88 | $choose-blind-color: $middle-grey; |
| 89 | $choose-box-shadow: 2px 2px 2px rgba(0,0,0,0.2); |
| 90 | $standard-border-radius: 6px; |
| 91 | $item-padding: 3pt 6pt; |
Akron | 189b359 | 2016-01-04 20:56:46 +0100 | [diff] [blame] | 92 | $button-width: 30px; |
| 93 | $base-padding: 8px; |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 94 | |
Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 95 | $total-results: $light-green; |
| 96 | |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 97 | /** |
Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 98 | * Path information - relative to css! |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 99 | */ |
Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 100 | $img-path: '../img'; |
Nils Diewald | ce32811 | 2015-04-08 22:48:18 +0000 | [diff] [blame] | 101 | $font-path: '../font'; |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 102 | |
| 103 | /** |
| 104 | * Margins |
| 105 | */ |
Nils Diewald | 4347ee9 | 2015-05-04 20:32:48 +0000 | [diff] [blame] | 106 | $standard-margin: 40px; |
Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 107 | $right-distance: $standard-margin; |
Nils Diewald | 4347ee9 | 2015-05-04 20:32:48 +0000 | [diff] [blame] | 108 | $right-match-distance: $standard-margin / 2; |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 109 | $logo-left-distance: 230px; |
| 110 | |
Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 111 | /** |
| 112 | * Mixin for blind elements |
| 113 | * (e.g., spans in elements with an icon background) |
| 114 | */ |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 115 | @mixin blind { |
| 116 | position: absolute; |
| 117 | margin-left: -3000px; |
| 118 | } |
| 119 | |
Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 120 | |
| 121 | /** |
| 122 | * Chooseable items (default) |
| 123 | */ |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 124 | @mixin choose-item { |
| 125 | color: $choose-color; |
| 126 | background-color: $choose-bg; |
| 127 | border-color: $choose-border-color; |
| 128 | text-shadow: $light-shadow; |
| 129 | } |
| 130 | |
Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 131 | /** |
| 132 | * Chooseable items (mouse over) |
| 133 | */ |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 134 | @mixin choose-hover { |
| 135 | color: $nearly-white; |
| 136 | text-shadow: none; |
| 137 | background-color: $dark-orange; |
| 138 | border-color: $darker-orange; |
| 139 | } |
| 140 | |
Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 141 | /** |
| 142 | * Chooseable items (not available) |
| 143 | */ |
Nils Diewald | a122862 | 2015-04-25 01:59:10 +0000 | [diff] [blame] | 144 | @mixin choose-inactive { |
| 145 | color: lighten($choose-color, 20%); |
| 146 | background-color: lighten($choose-bg, 20%); |
| 147 | border-color: transparent; |
| 148 | text-shadow: none; |
| 149 | } |
| 150 | |
Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 151 | /** |
| 152 | * Chooseable items (active) |
| 153 | */ |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 154 | @mixin choose-active { |
| 155 | color: $dark-green; |
| 156 | text-shadow: none; |
| 157 | background-color: $light-green; |
| 158 | border-color: $dark-green; |
| 159 | } |
| 160 | |
Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 161 | /** |
| 162 | * Chooseable items (action: remove something) |
| 163 | */ |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 164 | @mixin choose-remove { |
| 165 | color: $nearly-white; |
| 166 | text-shadow: none; |
| 167 | background-color: $middle-red; |
| 168 | border-color: $dark-red; |
| 169 | } |
| 170 | |
Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 171 | /** |
| 172 | * Mixin for basic color transition |
| 173 | */ |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 174 | @mixin color-transition { |
| 175 | transition: color 0.3s ease 0s; |
| 176 | } |
| 177 | |
Akron | 189b359 | 2016-01-04 20:56:46 +0100 | [diff] [blame] | 178 | @mixin input-field { |
| 179 | outline: none; |
| 180 | font-size: 11pt; |
| 181 | border: $border-size solid $nearly-white; |
| 182 | padding: 2px; |
| 183 | margin: 0; |
| 184 | } |
| 185 | |
Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 186 | /** |
| 187 | * Mixing for basic text padding |
| 188 | */ |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 189 | @mixin standard-text-padding { |
| 190 | padding-left: .4em; |
| 191 | padding-right: .4em; |
| 192 | } |
| 193 | |
Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 194 | |
| 195 | /** |
| 196 | * Mixing for correct box sizing (probably not necessary) |
Akron | 308db38 | 2016-05-30 22:34:07 +0200 | [diff] [blame] | 197 | * DEPRECATED |
Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 198 | */ |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 199 | @mixin box-sizing-box() { |
| 200 | -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */ |
| 201 | -moz-box-sizing: border-box; /* Firefox, other Gecko */ |
| 202 | box-sizing: border-box; /* Opera/IE 8+ */ |
| 203 | } |
| 204 | |
Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 205 | /** |
| 206 | * Noisy background (probably not necessary) |
| 207 | */ |
Nils Diewald | 1c54692 | 2015-04-13 01:56:19 +0000 | [diff] [blame] | 208 | @mixin light-noise { |
| 209 | background-image:url('#{$img-path}/noise.png'); |
| 210 | } |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 211 | |
Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 212 | /** |
| 213 | * Mixin for no-appearance rules |
| 214 | */ |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 215 | // https://css-tricks.com/almanac/properties/a/appearance/ |
| 216 | @mixin no-appearance { |
| 217 | -webkit-appearance:none; |
| 218 | -moz-appearance:none; |
| 219 | appearance:none; |
| 220 | } |
Nils Diewald | 2488d05 | 2015-04-09 21:46:02 +0000 | [diff] [blame] | 221 | |
| 222 | |
| 223 | /** |
Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 224 | * Font Awesome symbol table |
Nils Diewald | 2488d05 | 2015-04-09 21:46:02 +0000 | [diff] [blame] | 225 | */ |
Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 226 | $fa-bars: "\f0c9"; |
| 227 | $fa-extlink: "\f08e"; |
| 228 | $fa-up: "\f0d8"; |
| 229 | $fa-down: "\f0d7"; |
| 230 | $fa-close: "\f00d"; |
Akron | c56cf2d | 2016-11-09 22:02:38 +0100 | [diff] [blame] | 231 | $fa-download: "\f019"; |
Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 232 | $fa-info: "\f05a"; |
| 233 | $fa-elipsis: "\f141"; |
| 234 | $fa-previous: "\f0d9"; |
| 235 | $fa-next: "\f0da"; |
| 236 | $fa-search: "\f002"; |
Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 237 | $fa-rewrite: "\f040"; |
Nils Diewald | 7c8ced2 | 2015-04-15 19:21:00 +0000 | [diff] [blame] | 238 | $fa-login: "\f090"; |
| 239 | $fa-logout: "\f08b"; |
| 240 | $fa-tutorial: "\f19d"; |
| 241 | $fa-left-align: "\f036"; |
| 242 | $fa-right-align: "\f038"; |
Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 243 | $fa-question: "\f128"; |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 244 | $fa-checked: "\f046"; |
Nils Diewald | 845282c | 2015-05-14 07:53:03 +0000 | [diff] [blame] | 245 | $fa-check: "\f096"; |
Akron | 0669f2f | 2015-05-28 20:27:09 +0200 | [diff] [blame] | 246 | $fa-code: "\f121"; |
Akron | 9a5b1e1 | 2016-12-06 18:18:23 +0100 | [diff] [blame] | 247 | $fa-marked: "\f005"; |
| 248 | $fa-metadata: "\f067"; |