Unknown | d2db0f1 | 2019-01-10 14:22:00 -0500 | [diff] [blame] | 1 | /*! |
| 2 | * Neon Pingendo template (https://templates.pingendo.com) |
| 3 | * Based on: Bootstrap v4.1.3 (https://getbootstrap.com) |
| 4 | * Copyright 2014-2018 Pingendo (https://pingendo.com) |
| 5 | */ |
| 6 | @import url("https://fonts.googleapis.com/css?family=Montserrat:200"); |
| 7 | /*! |
| 8 | * Bootstrap v4.1.3 (https://getbootstrap.com/) |
| 9 | * Copyright 2011-2018 The Bootstrap Authors |
| 10 | * Copyright 2011-2018 Twitter, Inc. |
| 11 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
| 12 | */ |
| 13 | :root { |
| 14 | --blue: #007bff; |
| 15 | --indigo: #6610f2; |
| 16 | --purple: #6f42c1; |
| 17 | --pink: #e83e8c; |
| 18 | --red: #dc3545; |
| 19 | --orange: #fd7e14; |
| 20 | --yellow: #ffc107; |
| 21 | --green: #28a745; |
| 22 | --teal: #20c997; |
| 23 | --cyan: #17a2b8; |
| 24 | --white: #fff; |
| 25 | --gray: #6c757d; |
| 26 | --gray-dark: #343a40; |
| 27 | --primary: #0080ff; |
| 28 | --secondary: #0060aa; |
| 29 | --success: #28a745; |
| 30 | --info: #00aaff; |
| 31 | --warning: #ffc107; |
| 32 | --danger: #dc3545; |
| 33 | --light: #f3f3f3; |
| 34 | --dark: #303030; |
| 35 | --breakpoint-xs: 0; |
| 36 | --breakpoint-sm: 576px; |
00day0 | 769a17f | 2019-04-08 12:31:11 +0200 | [diff] [blame] | 37 | --breakpoint-md: 868px; |
Unknown | d2db0f1 | 2019-01-10 14:22:00 -0500 | [diff] [blame] | 38 | --breakpoint-lg: 992px; |
| 39 | --breakpoint-xl: 1200px; |
| 40 | --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; |
| 41 | --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } |
| 42 | |
| 43 | *, |
| 44 | *::before, |
| 45 | *::after { |
| 46 | box-sizing: border-box; } |
| 47 | |
| 48 | html { |
| 49 | font-family: sans-serif; |
| 50 | line-height: 1.15; |
| 51 | -webkit-text-size-adjust: 100%; |
| 52 | -ms-text-size-adjust: 100%; |
| 53 | -ms-overflow-style: scrollbar; |
| 54 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } |
| 55 | |
| 56 | @-ms-viewport { |
| 57 | width: device-width; } |
| 58 | |
| 59 | article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { |
| 60 | display: block; } |
| 61 | |
| 62 | body { |
| 63 | margin: 0; |
| 64 | font-family: Montserrat; |
| 65 | font-size: 0.85rem; |
| 66 | font-weight: 200; |
| 67 | line-height: 1.8; |
| 68 | color: #efefef; |
| 69 | text-align: left; |
| 70 | background-color: #111; } |
| 71 | |
| 72 | [tabindex="-1"]:focus { |
| 73 | outline: 0 !important; } |
| 74 | |
| 75 | hr { |
| 76 | box-sizing: content-box; |
| 77 | height: 0; |
| 78 | overflow: visible; } |
| 79 | |
| 80 | h1, h2, h3, h4, h5, h6 { |
| 81 | margin-top: 0; |
| 82 | margin-bottom: 0.75rem; } |
| 83 | |
| 84 | p { |
| 85 | margin-top: 0; |
| 86 | margin-bottom: 1rem; } |
| 87 | |
| 88 | abbr[title], |
| 89 | abbr[data-original-title] { |
| 90 | text-decoration: underline; |
| 91 | -webkit-text-decoration: underline dotted; |
| 92 | text-decoration: underline dotted; |
| 93 | cursor: help; |
| 94 | border-bottom: 0; } |
| 95 | |
| 96 | address { |
| 97 | margin-bottom: 1rem; |
| 98 | font-style: normal; |
| 99 | line-height: inherit; } |
| 100 | |
| 101 | ol, |
| 102 | ul, |
| 103 | dl { |
| 104 | margin-top: 0; |
| 105 | margin-bottom: 1rem; } |
| 106 | |
| 107 | ol ol, |
| 108 | ul ul, |
| 109 | ol ul, |
| 110 | ul ol { |
| 111 | margin-bottom: 0; } |
| 112 | |
| 113 | dt { |
| 114 | font-weight: 700; } |
| 115 | |
| 116 | dd { |
| 117 | margin-bottom: .5rem; |
| 118 | margin-left: 0; } |
| 119 | |
| 120 | blockquote { |
| 121 | margin: 0 0 1rem; } |
| 122 | |
| 123 | dfn { |
| 124 | font-style: italic; } |
| 125 | |
| 126 | b, |
| 127 | strong { |
| 128 | font-weight: bolder; } |
| 129 | |
| 130 | small { |
| 131 | font-size: 80%; } |
| 132 | |
| 133 | sub, |
| 134 | sup { |
| 135 | position: relative; |
| 136 | font-size: 75%; |
| 137 | line-height: 0; |
| 138 | vertical-align: baseline; } |
| 139 | |
| 140 | sub { |
| 141 | bottom: -.25em; } |
| 142 | |
| 143 | sup { |
| 144 | top: -.5em; } |
| 145 | |
| 146 | a { |
| 147 | color: #0080ff; |
| 148 | text-decoration: none; |
| 149 | background-color: transparent; |
| 150 | -webkit-text-decoration-skip: objects; } |
| 151 | a:hover { |
Stefan Ivic | ff54ece | 2019-08-31 14:49:48 +0200 | [diff] [blame] | 152 | color: #0080ff; |
Unknown | d2db0f1 | 2019-01-10 14:22:00 -0500 | [diff] [blame] | 153 | text-decoration: none; } |
| 154 | |
| 155 | a:not([href]):not([tabindex]) { |
| 156 | color: inherit; |
| 157 | text-decoration: none; } |
| 158 | a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus { |
| 159 | color: inherit; |
| 160 | text-decoration: none; } |
| 161 | a:not([href]):not([tabindex]):focus { |
| 162 | outline: 0; } |
| 163 | |
| 164 | pre, |
| 165 | code, |
| 166 | kbd, |
| 167 | samp { |
| 168 | font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; |
| 169 | font-size: 1em; } |
| 170 | |
| 171 | pre { |
| 172 | margin-top: 0; |
| 173 | margin-bottom: 1rem; |
| 174 | overflow: auto; |
| 175 | -ms-overflow-style: scrollbar; } |
| 176 | |
| 177 | figure { |
| 178 | margin: 0 0 1rem; } |
| 179 | |
| 180 | img { |
| 181 | vertical-align: middle; |
| 182 | border-style: none; } |
| 183 | |
| 184 | svg { |
| 185 | overflow: hidden; |
| 186 | vertical-align: middle; } |
| 187 | |
| 188 | table { |
| 189 | border-collapse: collapse; } |
| 190 | |
| 191 | caption { |
| 192 | padding-top: 0.75rem; |
| 193 | padding-bottom: 0.75rem; |
| 194 | color: #6c757d; |
| 195 | text-align: left; |
| 196 | caption-side: bottom; } |
| 197 | |
| 198 | th { |
| 199 | text-align: inherit; } |
| 200 | |
| 201 | label { |
| 202 | display: inline-block; |
| 203 | margin-bottom: 0.5rem; } |
| 204 | |
| 205 | button { |
| 206 | border-radius: 0; } |
| 207 | |
| 208 | button:focus { |
| 209 | outline: 1px dotted; |
| 210 | outline: 5px auto -webkit-focus-ring-color; } |
| 211 | |
| 212 | input, |
| 213 | button, |
| 214 | select, |
| 215 | optgroup, |
| 216 | textarea { |
| 217 | margin: 0; |
| 218 | font-family: inherit; |
| 219 | font-size: inherit; |
| 220 | line-height: inherit; } |
| 221 | |
| 222 | button, |
| 223 | input { |
| 224 | overflow: visible; } |
| 225 | |
| 226 | button, |
| 227 | select { |
| 228 | text-transform: none; } |
| 229 | |
| 230 | button, |
| 231 | html [type="button"], |
| 232 | [type="reset"], |
| 233 | [type="submit"] { |
| 234 | -webkit-appearance: button; } |
| 235 | |
| 236 | button::-moz-focus-inner, |
| 237 | [type="button"]::-moz-focus-inner, |
| 238 | [type="reset"]::-moz-focus-inner, |
| 239 | [type="submit"]::-moz-focus-inner { |
| 240 | padding: 0; |
| 241 | border-style: none; } |
| 242 | |
| 243 | input[type="radio"], |
| 244 | input[type="checkbox"] { |
| 245 | box-sizing: border-box; |
| 246 | padding: 0; } |
| 247 | |
| 248 | input[type="date"], |
| 249 | input[type="time"], |
| 250 | input[type="datetime-local"], |
| 251 | input[type="month"] { |
| 252 | -webkit-appearance: listbox; } |
| 253 | |
| 254 | textarea { |
| 255 | overflow: auto; |
| 256 | resize: vertical; } |
| 257 | |
| 258 | fieldset { |
| 259 | min-width: 0; |
| 260 | padding: 0; |
| 261 | margin: 0; |
| 262 | border: 0; } |
| 263 | |
| 264 | legend { |
| 265 | display: block; |
| 266 | width: 100%; |
| 267 | max-width: 100%; |
| 268 | padding: 0; |
| 269 | margin-bottom: .5rem; |
| 270 | font-size: 1.5rem; |
| 271 | line-height: inherit; |
| 272 | color: inherit; |
| 273 | white-space: normal; } |
| 274 | |
| 275 | progress { |
| 276 | vertical-align: baseline; } |
| 277 | |
| 278 | [type="number"]::-webkit-inner-spin-button, |
| 279 | [type="number"]::-webkit-outer-spin-button { |
| 280 | height: auto; } |
| 281 | |
| 282 | [type="search"] { |
| 283 | outline-offset: -2px; |
| 284 | -webkit-appearance: none; } |
| 285 | |
| 286 | [type="search"]::-webkit-search-cancel-button, |
| 287 | [type="search"]::-webkit-search-decoration { |
| 288 | -webkit-appearance: none; } |
| 289 | |
| 290 | ::-webkit-file-upload-button { |
| 291 | font: inherit; |
| 292 | -webkit-appearance: button; } |
| 293 | |
| 294 | output { |
| 295 | display: inline-block; } |
| 296 | |
| 297 | summary { |
| 298 | display: list-item; |
| 299 | cursor: pointer; } |
| 300 | |
| 301 | template { |
| 302 | display: none; } |
| 303 | |
| 304 | [hidden] { |
| 305 | display: none !important; } |
| 306 | |
| 307 | h1, h2, h3, h4, h5, h6, |
| 308 | .h1, .h2, .h3, .h4, .h5, .h6 { |
| 309 | margin-bottom: 0.75rem; |
| 310 | font-family: Montserrat; |
| 311 | font-weight: 500; |
| 312 | line-height: 1.2; |
| 313 | color: inherit; } |
| 314 | |
| 315 | h1, .h1 { |
| 316 | font-size: 2.125rem; } |
| 317 | |
| 318 | h2, .h2 { |
| 319 | font-size: 1.7rem; } |
| 320 | |
| 321 | h3, .h3 { |
| 322 | font-size: 1.4875rem; } |
| 323 | |
| 324 | h4, .h4 { |
| 325 | font-size: 1.275rem; } |
| 326 | |
| 327 | h5, .h5 { |
| 328 | font-size: 1.0625rem; } |
| 329 | |
| 330 | h6, .h6 { |
| 331 | font-size: 0.85rem; } |
| 332 | |
| 333 | .lead { |
| 334 | font-size: 1.3rem; |
| 335 | font-weight: 300; } |
| 336 | |
| 337 | .display-1 { |
| 338 | font-size: 6rem; |
| 339 | font-weight: 300; |
| 340 | line-height: 1.2; } |
| 341 | |
| 342 | .display-2 { |
| 343 | font-size: 5.5rem; |
| 344 | font-weight: 300; |
| 345 | line-height: 1.2; } |
| 346 | |
| 347 | .display-3 { |
| 348 | font-size: 4.5rem; |
| 349 | font-weight: 300; |
| 350 | line-height: 1.2; } |
| 351 | |
| 352 | .display-4 { |
| 353 | font-size: 3.5rem; |
| 354 | font-weight: 300; |
| 355 | line-height: 1.2; } |
| 356 | |
Stefan Ivic | ff54ece | 2019-08-31 14:49:48 +0200 | [diff] [blame] | 357 | .body-font { |
| 358 | font-size: 16px; |
| 359 | line-height: 27px; |
| 360 | letter-spacing: 1px; |
| 361 | } |
| 362 | |
Unknown | d2db0f1 | 2019-01-10 14:22:00 -0500 | [diff] [blame] | 363 | hr { |
| 364 | margin-top: 1.5rem; |
| 365 | margin-bottom: 1.5rem; |
| 366 | border: 0; |
| 367 | border-top: 1px solid rgba(0, 128, 255, 0.75); } |
| 368 | |
| 369 | small, |
| 370 | .small { |
| 371 | font-size: 80%; |
| 372 | font-weight: 200; } |
| 373 | |
| 374 | mark, |
| 375 | .mark { |
| 376 | padding: 0.2em; |
| 377 | background-color: #fcf8e3; } |
| 378 | |
| 379 | .list-unstyled { |
| 380 | padding-left: 0; |
| 381 | list-style: none; } |
| 382 | |
Stefan Ivic | 0947278 | 2019-09-01 11:16:38 +0200 | [diff] [blame^] | 383 | .list-unstyled a { |
| 384 | color: white; |
| 385 | } |
| 386 | |
Unknown | d2db0f1 | 2019-01-10 14:22:00 -0500 | [diff] [blame] | 387 | .list-inline { |
| 388 | padding-left: 0; |
| 389 | list-style: none; } |
| 390 | |
| 391 | .list-inline-item { |
| 392 | display: inline-block; } |
| 393 | .list-inline-item:not(:last-child) { |
| 394 | margin-right: 0.5rem; } |
| 395 | |
| 396 | .initialism { |
| 397 | font-size: 90%; |
| 398 | text-transform: uppercase; } |
| 399 | |
| 400 | .blockquote { |
| 401 | margin-bottom: 1.5rem; |
| 402 | font-size: 1.0625rem; } |
| 403 | |
| 404 | .blockquote-footer { |
| 405 | display: block; |
| 406 | font-size: 80%; |
| 407 | color: #6c757d; } |
| 408 | .blockquote-footer::before { |
| 409 | content: "\2014 \00A0"; } |
| 410 | |
| 411 | .img-fluid { |
| 412 | max-width: 100%; |
| 413 | height: auto; } |
| 414 | |
| 415 | .img-thumbnail { |
| 416 | padding: 0.25rem; |
| 417 | background-color: #111; |
| 418 | border: 1px solid #0080ff; |
| 419 | border-radius: 0.75rem; |
| 420 | max-width: 100%; |
| 421 | height: auto; } |
| 422 | |
| 423 | .figure { |
| 424 | display: inline-block; } |
| 425 | |
| 426 | .figure-img { |
| 427 | margin-bottom: 0.75rem; |
| 428 | line-height: 1; } |
| 429 | |
| 430 | .figure-caption { |
| 431 | font-size: 90%; |
| 432 | color: #6c757d; } |
| 433 | |
| 434 | code { |
| 435 | font-size: 87.5%; |
| 436 | color: #e83e8c; |
| 437 | word-break: break-word; } |
| 438 | a > code { |
| 439 | color: inherit; } |
| 440 | |
| 441 | kbd { |
| 442 | padding: 0.2rem 0.4rem; |
| 443 | font-size: 87.5%; |
| 444 | color: #fff; |
| 445 | background-color: #212529; |
| 446 | border-radius: 0.3rem; } |
| 447 | kbd kbd { |
| 448 | padding: 0; |
| 449 | font-size: 100%; |
| 450 | font-weight: 700; } |
| 451 | |
| 452 | pre { |
| 453 | display: block; |
| 454 | font-size: 87.5%; |
| 455 | color: #212529; } |
| 456 | pre code { |
| 457 | font-size: inherit; |
| 458 | color: inherit; |
| 459 | word-break: normal; } |
| 460 | |
| 461 | .pre-scrollable { |
| 462 | max-height: 340px; |
| 463 | overflow-y: scroll; } |
| 464 | |
| 465 | .container { |
| 466 | width: 100%; |
| 467 | padding-right: 15px; |
| 468 | padding-left: 15px; |
| 469 | margin-right: auto; |
| 470 | margin-left: auto; } |
| 471 | @media (min-width: 576px) { |
| 472 | .container { |
| 473 | max-width: 540px; } } |
00day0 | 769a17f | 2019-04-08 12:31:11 +0200 | [diff] [blame] | 474 | @media (min-width: 868px) { |
Unknown | d2db0f1 | 2019-01-10 14:22:00 -0500 | [diff] [blame] | 475 | .container { |
| 476 | max-width: 720px; } } |
| 477 | @media (min-width: 992px) { |
| 478 | .container { |
| 479 | max-width: 960px; } } |
| 480 | @media (min-width: 1200px) { |
| 481 | .container { |
| 482 | max-width: 1140px; } } |
| 483 | |
| 484 | .container-fluid { |
| 485 | width: 100%; |
| 486 | padding-right: 15px; |
| 487 | padding-left: 15px; |
| 488 | margin-right: auto; |
| 489 | margin-left: auto; } |
| 490 | |
| 491 | .row { |
| 492 | display: flex; |
| 493 | flex-wrap: wrap; |
| 494 | margin-right: -15px; |
| 495 | margin-left: -15px; } |
| 496 | |
| 497 | .no-gutters { |
| 498 | margin-right: 0; |
| 499 | margin-left: 0; } |
| 500 | .no-gutters > .col, |
| 501 | .no-gutters > [class*="col-"] { |
| 502 | padding-right: 0; |
| 503 | padding-left: 0; } |
| 504 | |
| 505 | .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, |
| 506 | .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, |
| 507 | .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, |
| 508 | .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, |
| 509 | .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, |
| 510 | .col-xl-auto { |
| 511 | position: relative; |
| 512 | width: 100%; |
| 513 | min-height: 1px; |
| 514 | padding-right: 15px; |
| 515 | padding-left: 15px; } |
| 516 | |
| 517 | .col { |
| 518 | flex-basis: 0; |
| 519 | flex-grow: 1; |
| 520 | max-width: 100%; } |
| 521 | |
| 522 | .col-auto { |
| 523 | flex: 0 0 auto; |
| 524 | width: auto; |
| 525 | max-width: none; } |
| 526 | |
| 527 | .col-1 { |
| 528 | flex: 0 0 8.33333%; |
| 529 | max-width: 8.33333%; } |
| 530 | |
| 531 | .col-2 { |
| 532 | flex: 0 0 16.66667%; |
| 533 | max-width: 16.66667%; } |
| 534 | |
| 535 | .col-3 { |
| 536 | flex: 0 0 25%; |
| 537 | max-width: 25%; } |
| 538 | |
| 539 | .col-4 { |
| 540 | flex: 0 0 33.33333%; |
| 541 | max-width: 33.33333%; } |
| 542 | |
| 543 | .col-5 { |
| 544 | flex: 0 0 41.66667%; |
| 545 | max-width: 41.66667%; } |
| 546 | |
| 547 | .col-6 { |
| 548 | flex: 0 0 50%; |
| 549 | max-width: 50%; } |
| 550 | |
| 551 | .col-7 { |
| 552 | flex: 0 0 58.33333%; |
| 553 | max-width: 58.33333%; } |
| 554 | |
| 555 | .col-8 { |
| 556 | flex: 0 0 66.66667%; |
| 557 | max-width: 66.66667%; } |
| 558 | |
| 559 | .col-9 { |
| 560 | flex: 0 0 75%; |
| 561 | max-width: 75%; } |
| 562 | |
| 563 | .col-10 { |
| 564 | flex: 0 0 83.33333%; |
| 565 | max-width: 83.33333%; } |
| 566 | |
| 567 | .col-11 { |
| 568 | flex: 0 0 91.66667%; |
| 569 | max-width: 91.66667%; } |
| 570 | |
| 571 | .col-12 { |
| 572 | flex: 0 0 100%; |
| 573 | max-width: 100%; } |
| 574 | |
| 575 | .order-first { |
| 576 | order: -1; } |
| 577 | |
| 578 | .order-last { |
| 579 | order: 13; } |
| 580 | |
| 581 | .order-0 { |
| 582 | order: 0; } |
| 583 | |
| 584 | .order-1 { |
| 585 | order: 1; } |
| 586 | |
| 587 | .order-2 { |
| 588 | order: 2; } |
| 589 | |
| 590 | .order-3 { |
| 591 | order: 3; } |
| 592 | |
| 593 | .order-4 { |
| 594 | order: 4; } |
| 595 | |
| 596 | .order-5 { |
| 597 | order: 5; } |
| 598 | |
| 599 | .order-6 { |
| 600 | order: 6; } |
| 601 | |
| 602 | .order-7 { |
| 603 | order: 7; } |
| 604 | |
| 605 | .order-8 { |
| 606 | order: 8; } |
| 607 | |
| 608 | .order-9 { |
| 609 | order: 9; } |
| 610 | |
| 611 | .order-10 { |
| 612 | order: 10; } |
| 613 | |
| 614 | .order-11 { |
| 615 | order: 11; } |
| 616 | |
| 617 | .order-12 { |
| 618 | order: 12; } |
| 619 | |
| 620 | .offset-1 { |
| 621 | margin-left: 8.33333%; } |
| 622 | |
| 623 | .offset-2 { |
| 624 | margin-left: 16.66667%; } |
| 625 | |
| 626 | .offset-3 { |
| 627 | margin-left: 25%; } |
| 628 | |
| 629 | .offset-4 { |
| 630 | margin-left: 33.33333%; } |
| 631 | |
| 632 | .offset-5 { |
| 633 | margin-left: 41.66667%; } |
| 634 | |
| 635 | .offset-6 { |
| 636 | margin-left: 50%; } |
| 637 | |
| 638 | .offset-7 { |
| 639 | margin-left: 58.33333%; } |
| 640 | |
| 641 | .offset-8 { |
| 642 | margin-left: 66.66667%; } |
| 643 | |
| 644 | .offset-9 { |
| 645 | margin-left: 75%; } |
| 646 | |
| 647 | .offset-10 { |
| 648 | margin-left: 83.33333%; } |
| 649 | |
| 650 | .offset-11 { |
| 651 | margin-left: 91.66667%; } |
| 652 | |
| 653 | @media (min-width: 576px) { |
| 654 | .col-sm { |
| 655 | flex-basis: 0; |
| 656 | flex-grow: 1; |
| 657 | max-width: 100%; } |
| 658 | .col-sm-auto { |
| 659 | flex: 0 0 auto; |
| 660 | width: auto; |
| 661 | max-width: none; } |
| 662 | .col-sm-1 { |
| 663 | flex: 0 0 8.33333%; |
| 664 | max-width: 8.33333%; } |
| 665 | .col-sm-2 { |
| 666 | flex: 0 0 16.66667%; |
| 667 | max-width: 16.66667%; } |
| 668 | .col-sm-3 { |
| 669 | flex: 0 0 25%; |
| 670 | max-width: 25%; } |
| 671 | .col-sm-4 { |
| 672 | flex: 0 0 33.33333%; |
| 673 | max-width: 33.33333%; } |
| 674 | .col-sm-5 { |
| 675 | flex: 0 0 41.66667%; |
| 676 | max-width: 41.66667%; } |
| 677 | .col-sm-6 { |
| 678 | flex: 0 0 50%; |
| 679 | max-width: 50%; } |
| 680 | .col-sm-7 { |
| 681 | flex: 0 0 58.33333%; |
| 682 | max-width: 58.33333%; } |
| 683 | .col-sm-8 { |
| 684 | flex: 0 0 66.66667%; |
| 685 | max-width: 66.66667%; } |
| 686 | .col-sm-9 { |
| 687 | flex: 0 0 75%; |
| 688 | max-width: 75%; } |
| 689 | .col-sm-10 { |
| 690 | flex: 0 0 83.33333%; |
| 691 | max-width: 83.33333%; } |
| 692 | .col-sm-11 { |
| 693 | flex: 0 0 91.66667%; |
| 694 | max-width: 91.66667%; } |
| 695 | .col-sm-12 { |
| 696 | flex: 0 0 100%; |
| 697 | max-width: 100%; } |
| 698 | .order-sm-first { |
| 699 | order: -1; } |
| 700 | .order-sm-last { |
| 701 | order: 13; } |
| 702 | .order-sm-0 { |
| 703 | order: 0; } |
| 704 | .order-sm-1 { |
| 705 | order: 1; } |
| 706 | .order-sm-2 { |
| 707 | order: 2; } |
| 708 | .order-sm-3 { |
| 709 | order: 3; } |
| 710 | .order-sm-4 { |
| 711 | order: 4; } |
| 712 | .order-sm-5 { |
| 713 | order: 5; } |
| 714 | .order-sm-6 { |
| 715 | order: 6; } |
| 716 | .order-sm-7 { |
| 717 | order: 7; } |
| 718 | .order-sm-8 { |
| 719 | order: 8; } |
| 720 | .order-sm-9 { |
| 721 | order: 9; } |
| 722 | .order-sm-10 { |
| 723 | order: 10; } |
| 724 | .order-sm-11 { |
| 725 | order: 11; } |
| 726 | .order-sm-12 { |
| 727 | order: 12; } |
| 728 | .offset-sm-0 { |
| 729 | margin-left: 0; } |
| 730 | .offset-sm-1 { |
| 731 | margin-left: 8.33333%; } |
| 732 | .offset-sm-2 { |
| 733 | margin-left: 16.66667%; } |
| 734 | .offset-sm-3 { |
| 735 | margin-left: 25%; } |
| 736 | .offset-sm-4 { |
| 737 | margin-left: 33.33333%; } |
| 738 | .offset-sm-5 { |
| 739 | margin-left: 41.66667%; } |
| 740 | .offset-sm-6 { |
| 741 | margin-left: 50%; } |
| 742 | .offset-sm-7 { |
| 743 | margin-left: 58.33333%; } |
| 744 | .offset-sm-8 { |
| 745 | margin-left: 66.66667%; } |
| 746 | .offset-sm-9 { |
| 747 | margin-left: 75%; } |
| 748 | .offset-sm-10 { |
| 749 | margin-left: 83.33333%; } |
| 750 | .offset-sm-11 { |
| 751 | margin-left: 91.66667%; } } |
| 752 | |
00day0 | 769a17f | 2019-04-08 12:31:11 +0200 | [diff] [blame] | 753 | @media (min-width: 868px) { |
Unknown | d2db0f1 | 2019-01-10 14:22:00 -0500 | [diff] [blame] | 754 | .col-md { |
| 755 | flex-basis: 0; |
| 756 | flex-grow: 1; |
| 757 | max-width: 100%; } |
| 758 | .col-md-auto { |
| 759 | flex: 0 0 auto; |
| 760 | width: auto; |
| 761 | max-width: none; } |
| 762 | .col-md-1 { |
| 763 | flex: 0 0 8.33333%; |
| 764 | max-width: 8.33333%; } |
| 765 | .col-md-2 { |
| 766 | flex: 0 0 16.66667%; |
| 767 | max-width: 16.66667%; } |
| 768 | .col-md-3 { |
| 769 | flex: 0 0 25%; |
| 770 | max-width: 25%; } |
| 771 | .col-md-4 { |
| 772 | flex: 0 0 33.33333%; |
| 773 | max-width: 33.33333%; } |
| 774 | .col-md-5 { |
| 775 | flex: 0 0 41.66667%; |
| 776 | max-width: 41.66667%; } |
| 777 | .col-md-6 { |
| 778 | flex: 0 0 50%; |
| 779 | max-width: 50%; } |
| 780 | .col-md-7 { |
| 781 | flex: 0 0 58.33333%; |
| 782 | max-width: 58.33333%; } |
| 783 | .col-md-8 { |
| 784 | flex: 0 0 66.66667%; |
| 785 | max-width: 66.66667%; } |
| 786 | .col-md-9 { |
| 787 | flex: 0 0 75%; |
| 788 | max-width: 75%; } |
| 789 | .col-md-10 { |
| 790 | flex: 0 0 83.33333%; |
| 791 | max-width: 83.33333%; } |
| 792 | .col-md-11 { |
| 793 | flex: 0 0 91.66667%; |
| 794 | max-width: 91.66667%; } |
| 795 | .col-md-12 { |
| 796 | flex: 0 0 100%; |
| 797 | max-width: 100%; } |
| 798 | .order-md-first { |
| 799 | order: -1; } |
| 800 | .order-md-last { |
| 801 | order: 13; } |
| 802 | .order-md-0 { |
| 803 | order: 0; } |
| 804 | .order-md-1 { |
| 805 | order: 1; } |
| 806 | .order-md-2 { |
| 807 | order: 2; } |
| 808 | .order-md-3 { |
| 809 | order: 3; } |
| 810 | .order-md-4 { |
| 811 | order: 4; } |
| 812 | .order-md-5 { |
| 813 | order: 5; } |
| 814 | .order-md-6 { |
| 815 | order: 6; } |
| 816 | .order-md-7 { |
| 817 | order: 7; } |
| 818 | .order-md-8 { |
| 819 | order: 8; } |
| 820 | .order-md-9 { |
| 821 | order: 9; } |
| 822 | .order-md-10 { |
| 823 | order: 10; } |
| 824 | .order-md-11 { |
| 825 | order: 11; } |
| 826 | .order-md-12 { |
| 827 | order: 12; } |
| 828 | .offset-md-0 { |
| 829 | margin-left: 0; } |
| 830 | .offset-md-1 { |
| 831 | margin-left: 8.33333%; } |
| 832 | .offset-md-2 { |
| 833 | margin-left: 16.66667%; } |
| 834 | .offset-md-3 { |
| 835 | margin-left: 25%; } |
| 836 | .offset-md-4 { |
| 837 | margin-left: 33.33333%; } |
| 838 | .offset-md-5 { |
| 839 | margin-left: 41.66667%; } |
| 840 | .offset-md-6 { |
| 841 | margin-left: 50%; } |
| 842 | .offset-md-7 { |
| 843 | margin-left: 58.33333%; } |
| 844 | .offset-md-8 { |
| 845 | margin-left: 66.66667%; } |
| 846 | .offset-md-9 { |
| 847 | margin-left: 75%; } |
| 848 | .offset-md-10 { |
| 849 | margin-left: 83.33333%; } |
| 850 | .offset-md-11 { |
| 851 | margin-left: 91.66667%; } } |
| 852 | |
| 853 | @media (min-width: 992px) { |
| 854 | .col-lg { |
| 855 | flex-basis: 0; |
| 856 | flex-grow: 1; |
| 857 | max-width: 100%; } |
| 858 | .col-lg-auto { |
| 859 | flex: 0 0 auto; |
| 860 | width: auto; |
| 861 | max-width: none; } |
| 862 | .col-lg-1 { |
| 863 | flex: 0 0 8.33333%; |
| 864 | max-width: 8.33333%; } |
| 865 | .col-lg-2 { |
| 866 | flex: 0 0 16.66667%; |
| 867 | max-width: 16.66667%; } |
| 868 | .col-lg-3 { |
| 869 | flex: 0 0 25%; |
| 870 | max-width: 25%; } |
| 871 | .col-lg-4 { |
| 872 | flex: 0 0 33.33333%; |
| 873 | max-width: 33.33333%; } |
| 874 | .col-lg-5 { |
| 875 | flex: 0 0 41.66667%; |
| 876 | max-width: 41.66667%; } |
| 877 | .col-lg-6 { |
| 878 | flex: 0 0 50%; |
| 879 | max-width: 50%; } |
| 880 | .col-lg-7 { |
| 881 | flex: 0 0 58.33333%; |
| 882 | max-width: 58.33333%; } |
| 883 | .col-lg-8 { |
| 884 | flex: 0 0 66.66667%; |
| 885 | max-width: 66.66667%; } |
| 886 | .col-lg-9 { |
| 887 | flex: 0 0 75%; |
| 888 | max-width: 75%; } |
| 889 | .col-lg-10 { |
| 890 | flex: 0 0 83.33333%; |
| 891 | max-width: 83.33333%; } |
| 892 | .col-lg-11 { |
| 893 | flex: 0 0 91.66667%; |
| 894 | max-width: 91.66667%; } |
| 895 | .col-lg-12 { |
| 896 | flex: 0 0 100%; |
| 897 | max-width: 100%; } |
| 898 | .order-lg-first { |
| 899 | order: -1; } |
| 900 | .order-lg-last { |
| 901 | order: 13; } |
| 902 | .order-lg-0 { |
| 903 | order: 0; } |
| 904 | .order-lg-1 { |
| 905 | order: 1; } |
| 906 | .order-lg-2 { |
| 907 | order: 2; } |
| 908 | .order-lg-3 { |
| 909 | order: 3; } |
| 910 | .order-lg-4 { |
| 911 | order: 4; } |
| 912 | .order-lg-5 { |
| 913 | order: 5; } |
| 914 | .order-lg-6 { |
| 915 | order: 6; } |
| 916 | .order-lg-7 { |
| 917 | order: 7; } |
| 918 | .order-lg-8 { |
| 919 | order: 8; } |
| 920 | .order-lg-9 { |
| 921 | order: 9; } |
| 922 | .order-lg-10 { |
| 923 | order: 10; } |
| 924 | .order-lg-11 { |
| 925 | order: 11; } |
| 926 | .order-lg-12 { |
| 927 | order: 12; } |
| 928 | .offset-lg-0 { |
| 929 | margin-left: 0; } |
| 930 | .offset-lg-1 { |
| 931 | margin-left: 8.33333%; } |
| 932 | .offset-lg-2 { |
| 933 | margin-left: 16.66667%; } |
| 934 | .offset-lg-3 { |
| 935 | margin-left: 25%; } |
| 936 | .offset-lg-4 { |
| 937 | margin-left: 33.33333%; } |
| 938 | .offset-lg-5 { |
| 939 | margin-left: 41.66667%; } |
| 940 | .offset-lg-6 { |
| 941 | margin-left: 50%; } |
| 942 | .offset-lg-7 { |
| 943 | margin-left: 58.33333%; } |
| 944 | .offset-lg-8 { |
| 945 | margin-left: 66.66667%; } |
| 946 | .offset-lg-9 { |
| 947 | margin-left: 75%; } |
| 948 | .offset-lg-10 { |
| 949 | margin-left: 83.33333%; } |
| 950 | .offset-lg-11 { |
| 951 | margin-left: 91.66667%; } } |
| 952 | |
| 953 | @media (min-width: 1200px) { |
| 954 | .col-xl { |
| 955 | flex-basis: 0; |
| 956 | flex-grow: 1; |
| 957 | max-width: 100%; } |
| 958 | .col-xl-auto { |
| 959 | flex: 0 0 auto; |
| 960 | width: auto; |
| 961 | max-width: none; } |
| 962 | .col-xl-1 { |
| 963 | flex: 0 0 8.33333%; |
| 964 | max-width: 8.33333%; } |
| 965 | .col-xl-2 { |
| 966 | flex: 0 0 16.66667%; |
| 967 | max-width: 16.66667%; } |
| 968 | .col-xl-3 { |
| 969 | flex: 0 0 25%; |
| 970 | max-width: 25%; } |
| 971 | .col-xl-4 { |
| 972 | flex: 0 0 33.33333%; |
| 973 | max-width: 33.33333%; } |
| 974 | .col-xl-5 { |
| 975 | flex: 0 0 41.66667%; |
| 976 | max-width: 41.66667%; } |
| 977 | .col-xl-6 { |
| 978 | flex: 0 0 50%; |
| 979 | max-width: 50%; } |
| 980 | .col-xl-7 { |
| 981 | flex: 0 0 58.33333%; |
| 982 | max-width: 58.33333%; } |
| 983 | .col-xl-8 { |
| 984 | flex: 0 0 66.66667%; |
| 985 | max-width: 66.66667%; } |
| 986 | .col-xl-9 { |
| 987 | flex: 0 0 75%; |
| 988 | max-width: 75%; } |
| 989 | .col-xl-10 { |
| 990 | flex: 0 0 83.33333%; |
| 991 | max-width: 83.33333%; } |
| 992 | .col-xl-11 { |
| 993 | flex: 0 0 91.66667%; |
| 994 | max-width: 91.66667%; } |
| 995 | .col-xl-12 { |
| 996 | flex: 0 0 100%; |
| 997 | max-width: 100%; } |
| 998 | .order-xl-first { |
| 999 | order: -1; } |
| 1000 | .order-xl-last { |
| 1001 | order: 13; } |
| 1002 | .order-xl-0 { |
| 1003 | order: 0; } |
| 1004 | .order-xl-1 { |
| 1005 | order: 1; } |
| 1006 | .order-xl-2 { |
| 1007 | order: 2; } |
| 1008 | .order-xl-3 { |
| 1009 | order: 3; } |
| 1010 | .order-xl-4 { |
| 1011 | order: 4; } |
| 1012 | .order-xl-5 { |
| 1013 | order: 5; } |
| 1014 | .order-xl-6 { |
| 1015 | order: 6; } |
| 1016 | .order-xl-7 { |
| 1017 | order: 7; } |
| 1018 | .order-xl-8 { |
| 1019 | order: 8; } |
| 1020 | .order-xl-9 { |
| 1021 | order: 9; } |
| 1022 | .order-xl-10 { |
| 1023 | order: 10; } |
| 1024 | .order-xl-11 { |
| 1025 | order: 11; } |
| 1026 | .order-xl-12 { |
| 1027 | order: 12; } |
| 1028 | .offset-xl-0 { |
| 1029 | margin-left: 0; } |
| 1030 | .offset-xl-1 { |
| 1031 | margin-left: 8.33333%; } |
| 1032 | .offset-xl-2 { |
| 1033 | margin-left: 16.66667%; } |
| 1034 | .offset-xl-3 { |
| 1035 | margin-left: 25%; } |
| 1036 | .offset-xl-4 { |
| 1037 | margin-left: 33.33333%; } |
| 1038 | .offset-xl-5 { |
| 1039 | margin-left: 41.66667%; } |
| 1040 | .offset-xl-6 { |
| 1041 | margin-left: 50%; } |
| 1042 | .offset-xl-7 { |
| 1043 | margin-left: 58.33333%; } |
| 1044 | .offset-xl-8 { |
| 1045 | margin-left: 66.66667%; } |
| 1046 | .offset-xl-9 { |
| 1047 | margin-left: 75%; } |
| 1048 | .offset-xl-10 { |
| 1049 | margin-left: 83.33333%; } |
| 1050 | .offset-xl-11 { |
| 1051 | margin-left: 91.66667%; } } |
| 1052 | |
| 1053 | .table { |
| 1054 | width: 100%; |
| 1055 | margin-bottom: 1.5rem; |
| 1056 | background-color: transparent; } |
| 1057 | .table th, |
| 1058 | .table td { |
| 1059 | padding: 0.75rem; |
| 1060 | vertical-align: top; |
| 1061 | border-top: 1px solid #303030; } |
| 1062 | .table thead th { |
| 1063 | vertical-align: bottom; |
| 1064 | border-bottom: 2px solid #303030; } |
| 1065 | .table tbody + tbody { |
| 1066 | border-top: 2px solid #303030; } |
| 1067 | .table .table { |
| 1068 | background-color: #111; } |
| 1069 | |
| 1070 | .table-sm th, |
| 1071 | .table-sm td { |
| 1072 | padding: 0.3rem; } |
| 1073 | |
| 1074 | .table-bordered { |
| 1075 | border: 1px solid #303030; } |
| 1076 | .table-bordered th, |
| 1077 | .table-bordered td { |
| 1078 | border: 1px solid #303030; } |
| 1079 | .table-bordered thead th, |
| 1080 | .table-bordered thead td { |
| 1081 | border-bottom-width: 2px; } |
| 1082 | |
| 1083 | .table-borderless th, |
| 1084 | .table-borderless td, |
| 1085 | .table-borderless thead th, |
| 1086 | .table-borderless tbody + tbody { |
| 1087 | border: 0; } |
| 1088 | |
| 1089 | .table-striped tbody tr:nth-of-type(odd) { |
| 1090 | background-color: rgba(243, 243, 243, 0.05); } |
| 1091 | |
| 1092 | .table-hover tbody tr:hover { |
| 1093 | background-color: rgba(243, 243, 243, 0.1); } |
| 1094 | |
| 1095 | .table-primary, |
| 1096 | .table-primary > th, |
| 1097 | .table-primary > td { |
| 1098 | background-color: #b8dbff; } |
| 1099 | |
| 1100 | .table-hover .table-primary:hover { |
| 1101 | background-color: #9fceff; } |
| 1102 | .table-hover .table-primary:hover > td, |
| 1103 | .table-hover .table-primary:hover > th { |
| 1104 | background-color: #9fceff; } |
| 1105 | |
| 1106 | .table-secondary, |
| 1107 | .table-secondary > th, |
| 1108 | .table-secondary > td { |
| 1109 | background-color: #b8d2e7; } |
| 1110 | |
| 1111 | .table-hover .table-secondary:hover { |
| 1112 | background-color: #a5c6e1; } |
| 1113 | .table-hover .table-secondary:hover > td, |
| 1114 | .table-hover .table-secondary:hover > th { |
| 1115 | background-color: #a5c6e1; } |
| 1116 | |
| 1117 | .table-success, |
| 1118 | .table-success > th, |
| 1119 | .table-success > td { |
| 1120 | background-color: #c3e6cb; } |
| 1121 | |
| 1122 | .table-hover .table-success:hover { |
| 1123 | background-color: #b1dfbb; } |
| 1124 | .table-hover .table-success:hover > td, |
| 1125 | .table-hover .table-success:hover > th { |
| 1126 | background-color: #b1dfbb; } |
| 1127 | |
| 1128 | .table-info, |
| 1129 | .table-info > th, |
| 1130 | .table-info > td { |
| 1131 | background-color: #b8e7ff; } |
| 1132 | |
| 1133 | .table-hover .table-info:hover { |
| 1134 | background-color: #9fdeff; } |
| 1135 | .table-hover .table-info:hover > td, |
| 1136 | .table-hover .table-info:hover > th { |
| 1137 | background-color: #9fdeff; } |
| 1138 | |
| 1139 | .table-warning, |
| 1140 | .table-warning > th, |
| 1141 | .table-warning > td { |
| 1142 | background-color: #ffeeba; } |
| 1143 | |
| 1144 | .table-hover .table-warning:hover { |
| 1145 | background-color: #ffe8a1; } |
| 1146 | .table-hover .table-warning:hover > td, |
| 1147 | .table-hover .table-warning:hover > th { |
| 1148 | background-color: #ffe8a1; } |
| 1149 | |
| 1150 | .table-danger, |
| 1151 | .table-danger > th, |
| 1152 | .table-danger > td { |
| 1153 | background-color: #f5c6cb; } |
| 1154 | |
| 1155 | .table-hover .table-danger:hover { |
| 1156 | background-color: #f1b0b7; } |
| 1157 | .table-hover .table-danger:hover > td, |
| 1158 | .table-hover .table-danger:hover > th { |
| 1159 | background-color: #f1b0b7; } |
| 1160 | |
| 1161 | .table-light, |
| 1162 | .table-light > th, |
| 1163 | .table-light > td { |
| 1164 | background-color: #fcfcfc; } |
| 1165 | |
| 1166 | .table-hover .table-light:hover { |
| 1167 | background-color: #efefef; } |
| 1168 | .table-hover .table-light:hover > td, |
| 1169 | .table-hover .table-light:hover > th { |
| 1170 | background-color: #efefef; } |
| 1171 | |
| 1172 | .table-dark, |
| 1173 | .table-dark > th, |
| 1174 | .table-dark > td { |
| 1175 | background-color: #c5c5c5; } |
| 1176 | |
| 1177 | .table-hover .table-dark:hover { |
| 1178 | background-color: #b8b8b8; } |
| 1179 | .table-hover .table-dark:hover > td, |
| 1180 | .table-hover .table-dark:hover > th { |
| 1181 | background-color: #b8b8b8; } |
| 1182 | |
| 1183 | .table-active, |
| 1184 | .table-active > th, |
| 1185 | .table-active > td { |
| 1186 | background-color: rgba(243, 243, 243, 0.1); } |
| 1187 | |
| 1188 | .table-hover .table-active:hover { |
| 1189 | background-color: rgba(230, 230, 230, 0.1); } |
| 1190 | .table-hover .table-active:hover > td, |
| 1191 | .table-hover .table-active:hover > th { |
| 1192 | background-color: rgba(230, 230, 230, 0.1); } |
| 1193 | |
| 1194 | .table .thead-dark th { |
| 1195 | color: #111; |
| 1196 | background-color: #212529; |
| 1197 | border-color: #32383e; } |
| 1198 | |
| 1199 | .table .thead-light th { |
| 1200 | color: #495057; |
| 1201 | background-color: #e9ecef; |
| 1202 | border-color: #303030; } |
| 1203 | |
| 1204 | .table-dark { |
| 1205 | color: #111; |
| 1206 | background-color: #212529; } |
| 1207 | .table-dark th, |
| 1208 | .table-dark td, |
| 1209 | .table-dark thead th { |
| 1210 | border-color: #32383e; } |
| 1211 | .table-dark.table-bordered { |
| 1212 | border: 0; } |
| 1213 | .table-dark.table-striped tbody tr:nth-of-type(odd) { |
| 1214 | background-color: rgba(255, 255, 255, 0.05); } |
| 1215 | .table-dark.table-hover tbody tr:hover { |
| 1216 | background-color: rgba(255, 255, 255, 0.075); } |
| 1217 | |
| 1218 | @media (max-width: 575.98px) { |
| 1219 | .table-responsive-sm { |
| 1220 | display: block; |
| 1221 | width: 100%; |
| 1222 | overflow-x: auto; |
| 1223 | -webkit-overflow-scrolling: touch; |
| 1224 | -ms-overflow-style: -ms-autohiding-scrollbar; } |
| 1225 | .table-responsive-sm > .table-bordered { |
| 1226 | border: 0; } } |
| 1227 | |
00day0 | 769a17f | 2019-04-08 12:31:11 +0200 | [diff] [blame] | 1228 | @media (max-width: 867.98px) { |
Unknown | d2db0f1 | 2019-01-10 14:22:00 -0500 | [diff] [blame] | 1229 | .table-responsive-md { |
| 1230 | display: block; |
| 1231 | width: 100%; |
| 1232 | overflow-x: auto; |
| 1233 | -webkit-overflow-scrolling: touch; |
| 1234 | -ms-overflow-style: -ms-autohiding-scrollbar; } |
| 1235 | .table-responsive-md > .table-bordered { |
| 1236 | border: 0; } } |
| 1237 | |
| 1238 | @media (max-width: 991.98px) { |
| 1239 | .table-responsive-lg { |
| 1240 | display: block; |
| 1241 | width: 100%; |
| 1242 | overflow-x: auto; |
| 1243 | -webkit-overflow-scrolling: touch; |
| 1244 | -ms-overflow-style: -ms-autohiding-scrollbar; } |
| 1245 | .table-responsive-lg > .table-bordered { |
| 1246 | border: 0; } } |
| 1247 | |
| 1248 | @media (max-width: 1199.98px) { |
| 1249 | .table-responsive-xl { |
| 1250 | display: block; |
| 1251 | width: 100%; |
| 1252 | overflow-x: auto; |
| 1253 | -webkit-overflow-scrolling: touch; |
| 1254 | -ms-overflow-style: -ms-autohiding-scrollbar; } |
| 1255 | .table-responsive-xl > .table-bordered { |
| 1256 | border: 0; } } |
| 1257 | |
| 1258 | .table-responsive { |
| 1259 | display: block; |
| 1260 | width: 100%; |
| 1261 | overflow-x: auto; |
| 1262 | -webkit-overflow-scrolling: touch; |
| 1263 | -ms-overflow-style: -ms-autohiding-scrollbar; } |
| 1264 | .table-responsive > .table-bordered { |
| 1265 | border: 0; } |
| 1266 | |
| 1267 | .form-control { |
| 1268 | display: block; |
| 1269 | width: 100%; |
| 1270 | height: calc(2.28rem + 2px); |
| 1271 | padding: 0.375rem 1rem; |
| 1272 | font-size: 0.85rem; |
| 1273 | line-height: 1.8; |
| 1274 | color: #495057; |
| 1275 | background-color: #fff; |
| 1276 | background-clip: padding-box; |
| 1277 | border: 1px solid #ced4da; |
| 1278 | border-radius: 0.75rem; |
| 1279 | transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } |
| 1280 | @media screen and (prefers-reduced-motion: reduce) { |
| 1281 | .form-control { |
| 1282 | transition: none; } } |
| 1283 | .form-control::-ms-expand { |
| 1284 | background-color: transparent; |
| 1285 | border: 0; } |
| 1286 | .form-control:focus { |
| 1287 | color: #495057; |
| 1288 | background-color: #fff; |
| 1289 | border-color: #80c0ff; |
| 1290 | outline: 0; |
| 1291 | box-shadow: 0 0 0 0.2rem rgba(0, 128, 255, 0.25); } |
| 1292 | .form-control::-webkit-input-placeholder { |
| 1293 | color: #6c757d; |
| 1294 | opacity: 1; } |
| 1295 | .form-control:-ms-input-placeholder { |
| 1296 | color: #6c757d; |
| 1297 | opacity: 1; } |
| 1298 | .form-control::-ms-input-placeholder { |
| 1299 | color: #6c757d; |
| 1300 | opacity: 1; } |
| 1301 | .form-control::placeholder { |
| 1302 | color: #6c757d; |
| 1303 | opacity: 1; } |
| 1304 | .form-control:disabled, .form-control[readonly] { |
| 1305 | background-color: #e9ecef; |
| 1306 | opacity: 1; } |
| 1307 | |
| 1308 | select.form-control:focus::-ms-value { |
| 1309 | color: #495057; |
| 1310 | background-color: #fff; } |
| 1311 | |
| 1312 | .form-control-file, |
| 1313 | .form-control-range { |
| 1314 | display: block; |
| 1315 | width: 100%; } |
| 1316 | |
| 1317 | .col-form-label { |
| 1318 | padding-top: calc(0.375rem + 1px); |
| 1319 | padding-bottom: calc(0.375rem + 1px); |
| 1320 | margin-bottom: 0; |
| 1321 | font-size: inherit; |
| 1322 | line-height: 1.8; } |
| 1323 | |
| 1324 | .col-form-label-lg { |
| 1325 | padding-top: calc(0.5rem + 1px); |
| 1326 | padding-bottom: calc(0.5rem + 1px); |
| 1327 | font-size: 1.0625rem; |
| 1328 | line-height: 1.5; } |
| 1329 | |
| 1330 | .col-form-label-sm { |
| 1331 | padding-top: calc(0.25rem + 1px); |
| 1332 | padding-bottom: calc(0.25rem + 1px); |
| 1333 | font-size: 0.74375rem; |
| 1334 | line-height: 1.5; } |
| 1335 | |
| 1336 | .form-control-plaintext { |
| 1337 | display: block; |
| 1338 | width: 100%; |
| 1339 | padding-top: 0.375rem; |
| 1340 | padding-bottom: 0.375rem; |
| 1341 | margin-bottom: 0; |
| 1342 | line-height: 1.8; |
| 1343 | color: #efefef; |
| 1344 | background-color: transparent; |
| 1345 | border: solid transparent; |
| 1346 | border-width: 1px 0; } |
| 1347 | .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { |
| 1348 | padding-right: 0; |
| 1349 | padding-left: 0; } |
| 1350 | |
| 1351 | .form-control-sm { |
| 1352 | height: calc(1.61563rem + 2px); |
| 1353 | padding: 0.25rem 0.5rem; |
| 1354 | font-size: 0.74375rem; |
| 1355 | line-height: 1.5; |
| 1356 | border-radius: 0.3rem; } |
| 1357 | |
| 1358 | .form-control-lg { |
| 1359 | height: calc(2.59375rem + 2px); |
| 1360 | padding: 0.5rem 1.1rem; |
| 1361 | font-size: 1.0625rem; |
| 1362 | line-height: 1.5; |
| 1363 | border-radius: 0.9rem; } |
| 1364 | |
| 1365 | select.form-control[size], select.form-control[multiple] { |
| 1366 | height: auto; } |
| 1367 | |
| 1368 | textarea.form-control { |
| 1369 | height: auto; } |
| 1370 | |
| 1371 | .form-group { |
| 1372 | margin-bottom: 1rem; } |
| 1373 | |
| 1374 | .form-text { |
| 1375 | display: block; |
| 1376 | margin-top: 0.25rem; } |
| 1377 | |
| 1378 | .form-row { |
| 1379 | display: flex; |
| 1380 | flex-wrap: wrap; |
| 1381 | margin-right: -5px; |
| 1382 | margin-left: -5px; } |
| 1383 | .form-row > .col, |
| 1384 | .form-row > [class*="col-"] { |
| 1385 | padding-right: 5px; |
| 1386 | padding-left: 5px; } |
| 1387 | |
| 1388 | .form-check { |
| 1389 | position: relative; |
| 1390 | display: block; |
| 1391 | padding-left: 1.25rem; } |
| 1392 | |
| 1393 | .form-check-input { |
| 1394 | position: absolute; |
| 1395 | margin-top: 0.3rem; |
| 1396 | margin-left: -1.25rem; } |
| 1397 | .form-check-input:disabled ~ .form-check-label { |
| 1398 | color: #6c757d; } |
| 1399 | |
| 1400 | .form-check-label { |
| 1401 | margin-bottom: 0; } |
| 1402 | |
| 1403 | .form-check-inline { |
| 1404 | display: inline-flex; |
| 1405 | align-items: center; |
| 1406 | padding-left: 0; |
| 1407 | margin-right: 0.75rem; } |
| 1408 | .form-check-inline .form-check-input { |
| 1409 | position: static; |
| 1410 | margin-top: 0; |
| 1411 | margin-right: 0.3125rem; |
| 1412 | margin-left: 0; } |
| 1413 | |
| 1414 | .valid-feedback { |
| 1415 | display: none; |
| 1416 | width: 100%; |
| 1417 | margin-top: 0.25rem; |
| 1418 | font-size: 80%; |
| 1419 | color: #28a745; } |
| 1420 | |
| 1421 | .valid-tooltip { |
| 1422 | position: absolute; |
| 1423 | top: 100%; |
| 1424 | z-index: 5; |
| 1425 | display: none; |
| 1426 | max-width: 100%; |
| 1427 | padding: 0.25rem 0.5rem; |
| 1428 | margin-top: .1rem; |
| 1429 | font-size: 0.74375rem; |
| 1430 | line-height: 1.8; |
| 1431 | color: #fff; |
| 1432 | background-color: rgba(40, 167, 69, 0.9); |
| 1433 | border-radius: 0.75rem; } |
| 1434 | |
| 1435 | .was-validated .form-control:valid, .form-control.is-valid, .was-validated |
| 1436 | .custom-select:valid, |
| 1437 | .custom-select.is-valid { |
| 1438 | border-color: #28a745; } |
| 1439 | .was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated |
| 1440 | .custom-select:valid:focus, |
| 1441 | .custom-select.is-valid:focus { |
| 1442 | border-color: #28a745; |
| 1443 | box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } |
| 1444 | .was-validated .form-control:valid ~ .valid-feedback, |
| 1445 | .was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, |
| 1446 | .form-control.is-valid ~ .valid-tooltip, .was-validated |
| 1447 | .custom-select:valid ~ .valid-feedback, |
| 1448 | .was-validated |
| 1449 | .custom-select:valid ~ .valid-tooltip, |
| 1450 | .custom-select.is-valid ~ .valid-feedback, |
| 1451 | .custom-select.is-valid ~ .valid-tooltip { |
| 1452 | display: block; } |
| 1453 | |
| 1454 | .was-validated .form-control-file:valid ~ .valid-feedback, |
| 1455 | .was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback, |
| 1456 | .form-control-file.is-valid ~ .valid-tooltip { |
| 1457 | display: block; } |
| 1458 | |
| 1459 | .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { |
| 1460 | color: #28a745; } |
| 1461 | |
| 1462 | .was-validated .form-check-input:valid ~ .valid-feedback, |
| 1463 | .was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, |
| 1464 | .form-check-input.is-valid ~ .valid-tooltip { |
| 1465 | display: block; } |
| 1466 | |
| 1467 | .was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { |
| 1468 | color: #28a745; } |
| 1469 | .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { |
| 1470 | background-color: #71dd8a; } |
| 1471 | |
| 1472 | .was-validated .custom-control-input:valid ~ .valid-feedback, |
| 1473 | .was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback, |
| 1474 | .custom-control-input.is-valid ~ .valid-tooltip { |
| 1475 | display: block; } |
| 1476 | |
| 1477 | .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { |
| 1478 | background-color: #34ce57; } |
| 1479 | |
| 1480 | .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { |
| 1481 | box-shadow: 0 0 0 1px #111, 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } |
| 1482 | |
| 1483 | .was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { |
| 1484 | border-color: #28a745; } |
| 1485 | .was-validated .custom-file-input:valid ~ .custom-file-label::after, .custom-file-input.is-valid ~ .custom-file-label::after { |
| 1486 | border-color: inherit; } |
| 1487 | |
| 1488 | .was-validated .custom-file-input:valid ~ .valid-feedback, |
| 1489 | .was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback, |
| 1490 | .custom-file-input.is-valid ~ .valid-tooltip { |
| 1491 | display: block; } |
| 1492 | |
| 1493 | .was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { |
| 1494 | box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } |
| 1495 | |
| 1496 | .invalid-feedback { |
| 1497 | display: none; |
| 1498 | width: 100%; |
| 1499 | margin-top: 0.25rem; |
| 1500 | font-size: 80%; |
| 1501 | color: #dc3545; } |
| 1502 | |
| 1503 | .invalid-tooltip { |
| 1504 | position: absolute; |
| 1505 | top: 100%; |
| 1506 | z-index: 5; |
| 1507 | display: none; |
| 1508 | max-width: 100%; |
| 1509 | padding: 0.25rem 0.5rem; |
| 1510 | margin-top: .1rem; |
| 1511 | font-size: 0.74375rem; |
| 1512 | line-height: 1.8; |
| 1513 | color: #fff; |
| 1514 | background-color: rgba(220, 53, 69, 0.9); |
| 1515 | border-radius: 0.75rem; } |
| 1516 | |
| 1517 | .was-validated .form-control:invalid, .form-control.is-invalid, .was-validated |
| 1518 | .custom-select:invalid, |
| 1519 | .custom-select.is-invalid { |
| 1520 | border-color: #dc3545; } |
| 1521 | .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated |
| 1522 | .custom-select:invalid:focus, |
| 1523 | .custom-select.is-invalid:focus { |
| 1524 | border-color: #dc3545; |
| 1525 | box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } |
| 1526 | .was-validated .form-control:invalid ~ .invalid-feedback, |
| 1527 | .was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, |
| 1528 | .form-control.is-invalid ~ .invalid-tooltip, .was-validated |
| 1529 | .custom-select:invalid ~ .invalid-feedback, |
| 1530 | .was-validated |
| 1531 | .custom-select:invalid ~ .invalid-tooltip, |
| 1532 | .custom-select.is-invalid ~ .invalid-feedback, |
| 1533 | .custom-select.is-invalid ~ .invalid-tooltip { |
| 1534 | display: block; } |
| 1535 | |
| 1536 | .was-validated .form-control-file:invalid ~ .invalid-feedback, |
| 1537 | .was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback, |
| 1538 | .form-control-file.is-invalid ~ .invalid-tooltip { |
| 1539 | display: block; } |
| 1540 | |
| 1541 | .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { |
| 1542 | color: #dc3545; } |
| 1543 | |
| 1544 | .was-validated .form-check-input:invalid ~ .invalid-feedback, |
| 1545 | .was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, |
| 1546 | .form-check-input.is-invalid ~ .invalid-tooltip { |
| 1547 | display: block; } |
| 1548 | |
| 1549 | .was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { |
| 1550 | color: #dc3545; } |
| 1551 | .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { |
| 1552 | background-color: #efa2a9; } |
| 1553 | |
| 1554 | .was-validated .custom-control-input:invalid ~ .invalid-feedback, |
| 1555 | .was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback, |
| 1556 | .custom-control-input.is-invalid ~ .invalid-tooltip { |
| 1557 | display: block; } |
| 1558 | |
| 1559 | .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { |
| 1560 | background-color: #e4606d; } |
| 1561 | |
| 1562 | .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { |
| 1563 | box-shadow: 0 0 0 1px #111, 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } |
| 1564 | |
| 1565 | .was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { |
| 1566 | border-color: #dc3545; } |
| 1567 | .was-validated .custom-file-input:invalid ~ .custom-file-label::after, .custom-file-input.is-invalid ~ .custom-file-label::after { |
| 1568 | border-color: inherit; } |
| 1569 | |
| 1570 | .was-validated .custom-file-input:invalid ~ .invalid-feedback, |
| 1571 | .was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback, |
| 1572 | .custom-file-input.is-invalid ~ .invalid-tooltip { |
| 1573 | display: block; } |
| 1574 | |
| 1575 | .was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { |
| 1576 | box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } |
| 1577 | |
| 1578 | .form-inline { |
| 1579 | display: flex; |
| 1580 | flex-flow: row wrap; |
| 1581 | align-items: center; } |
| 1582 | .form-inline .form-check { |
| 1583 | width: 100%; } |
| 1584 | @media (min-width: 576px) { |
| 1585 | .form-inline label { |
| 1586 | display: flex; |
| 1587 | align-items: center; |
| 1588 | justify-content: center; |
| 1589 | margin-bottom: 0; } |
| 1590 | .form-inline .form-group { |
| 1591 | display: flex; |
| 1592 | flex: 0 0 auto; |
| 1593 | flex-flow: row wrap; |
| 1594 | align-items: center; |
| 1595 | margin-bottom: 0; } |
| 1596 | .form-inline .form-control { |
| 1597 | display: inline-block; |
| 1598 | width: auto; |
| 1599 | vertical-align: middle; } |
| 1600 | .form-inline .form-control-plaintext { |
| 1601 | display: inline-block; } |
| 1602 | .form-inline .input-group, |
| 1603 | .form-inline .custom-select { |
| 1604 | width: auto; } |
| 1605 | .form-inline .form-check { |
| 1606 | display: flex; |
| 1607 | align-items: center; |
| 1608 | justify-content: center; |
| 1609 | width: auto; |
| 1610 | padding-left: 0; } |
| 1611 | .form-inline .form-check-input { |
| 1612 | position: relative; |
| 1613 | margin-top: 0; |
| 1614 | margin-right: 0.25rem; |
| 1615 | margin-left: 0; } |
| 1616 | .form-inline .custom-control { |
| 1617 | align-items: center; |
| 1618 | justify-content: center; } |
| 1619 | .form-inline .custom-control-label { |
| 1620 | margin-bottom: 0; } } |
| 1621 | |
| 1622 | .btn { |
| 1623 | display: inline-block; |
| 1624 | font-weight: 200; |
| 1625 | text-align: center; |
| 1626 | white-space: nowrap; |
| 1627 | vertical-align: middle; |
| 1628 | -webkit-user-select: none; |
| 1629 | -moz-user-select: none; |
| 1630 | -ms-user-select: none; |
| 1631 | user-select: none; |
| 1632 | border: 1px solid transparent; |
| 1633 | padding: 0.375rem 1rem; |
| 1634 | font-size: 0.85rem; |
| 1635 | line-height: 1.8; |
| 1636 | border-radius: 0.75rem; |
| 1637 | transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } |
| 1638 | @media screen and (prefers-reduced-motion: reduce) { |
| 1639 | .btn { |
| 1640 | transition: none; } } |
| 1641 | .btn:hover, .btn:focus { |
| 1642 | text-decoration: none; } |
| 1643 | .btn:focus, .btn.focus { |
| 1644 | outline: 0; |
| 1645 | box-shadow: 0 0 0 0.2rem rgba(0, 128, 255, 0.25); } |
| 1646 | .btn.disabled, .btn:disabled { |
| 1647 | opacity: 0.65; } |
| 1648 | .btn:not(:disabled):not(.disabled) { |
| 1649 | cursor: pointer; } |
| 1650 | |
| 1651 | a.btn.disabled, |
| 1652 | fieldset:disabled a.btn { |
| 1653 | pointer-events: none; } |
| 1654 | |
| 1655 | .btn-primary { |
| 1656 | color: #fff; |
| 1657 | background-color: #0080ff; |
| 1658 | border-color: #0080ff; } |
| 1659 | .btn-primary:hover { |
| 1660 | color: #fff; |
| 1661 | background-color: #006dd9; |
| 1662 | border-color: #0066cc; } |
| 1663 | .btn-primary:focus, .btn-primary.focus { |
| 1664 | box-shadow: 0 0 0 0.2rem rgba(0, 128, 255, 0.5); } |
| 1665 | .btn-primary.disabled, .btn-primary:disabled { |
| 1666 | color: #fff; |
| 1667 | background-color: #0080ff; |
| 1668 | border-color: #0080ff; } |
| 1669 | .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, |
| 1670 | .show > .btn-primary.dropdown-toggle { |
| 1671 | color: #fff; |
| 1672 | background-color: #0066cc; |
| 1673 | border-color: #0060bf; } |
| 1674 | .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, |
| 1675 | .show > .btn-primary.dropdown-toggle:focus { |
| 1676 | box-shadow: 0 0 0 0.2rem rgba(0, 128, 255, 0.5); } |
| 1677 | |
| 1678 | .btn-secondary { |
| 1679 | color: #fff; |
| 1680 | background-color: #0060aa; |
| 1681 | border-color: #0060aa; } |
| 1682 | .btn-secondary:hover { |
| 1683 | color: #fff; |
| 1684 | background-color: #004a84; |
| 1685 | border-color: #004377; } |
| 1686 | .btn-secondary:focus, .btn-secondary.focus { |
| 1687 | box-shadow: 0 0 0 0.2rem rgba(0, 96, 170, 0.5); } |
| 1688 | .btn-secondary.disabled, .btn-secondary:disabled { |
| 1689 | color: #fff; |
| 1690 | background-color: #0060aa; |
| 1691 | border-color: #0060aa; } |
| 1692 | .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, |
| 1693 | .show > .btn-secondary.dropdown-toggle { |
| 1694 | color: #fff; |
| 1695 | background-color: #004377; |
| 1696 | border-color: #003c6a; } |
| 1697 | .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, |
| 1698 | .show > .btn-secondary.dropdown-toggle:focus { |
| 1699 | box-shadow: 0 0 0 0.2rem rgba(0, 96, 170, 0.5); } |
| 1700 | |
| 1701 | .btn-success { |
| 1702 | color: #fff; |
| 1703 | background-color: #28a745; |
| 1704 | border-color: #28a745; } |
| 1705 | .btn-success:hover { |
| 1706 | color: #fff; |
| 1707 | background-color: #218838; |
| 1708 | border-color: #1e7e34; } |
| 1709 | .btn-success:focus, .btn-success.focus { |
| 1710 | box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); } |
| 1711 | .btn-success.disabled, .btn-success:disabled { |
| 1712 | color: #fff; |
| 1713 | background-color: #28a745; |
| 1714 | border-color: #28a745; } |
| 1715 | .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, |
| 1716 | .show > .btn-success.dropdown-toggle { |
| 1717 | color: #fff; |
| 1718 | background-color: #1e7e34; |
| 1719 | border-color: #1c7430; } |
| 1720 | .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, |
| 1721 | .show > .btn-success.dropdown-toggle:focus { |
| 1722 | box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); } |
| 1723 | |
| 1724 | .btn-info { |
| 1725 | color: #fff; |
| 1726 | background-color: #00aaff; |
| 1727 | border-color: #00aaff; } |
| 1728 | .btn-info:hover { |
| 1729 | color: #fff; |
| 1730 | background-color: #0091d9; |
| 1731 | border-color: #0088cc; } |
| 1732 | .btn-info:focus, .btn-info.focus { |
| 1733 | box-shadow: 0 0 0 0.2rem rgba(0, 170, 255, 0.5); } |
| 1734 | .btn-info.disabled, .btn-info:disabled { |
| 1735 | color: #fff; |
| 1736 | background-color: #00aaff; |
| 1737 | border-color: #00aaff; } |
| 1738 | .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, |
| 1739 | .show > .btn-info.dropdown-toggle { |
| 1740 | color: #fff; |
| 1741 | background-color: #0088cc; |
| 1742 | border-color: #0080bf; } |
| 1743 | .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, |
| 1744 | .show > .btn-info.dropdown-toggle:focus { |
| 1745 | box-shadow: 0 0 0 0.2rem rgba(0, 170, 255, 0.5); } |
| 1746 | |
| 1747 | .btn-warning { |
| 1748 | color: #212529; |
| 1749 | background-color: #ffc107; |
| 1750 | border-color: #ffc107; } |
| 1751 | .btn-warning:hover { |
| 1752 | color: #212529; |
| 1753 | background-color: #e0a800; |
| 1754 | border-color: #d39e00; } |
| 1755 | .btn-warning:focus, .btn-warning.focus { |
| 1756 | box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } |
| 1757 | .btn-warning.disabled, .btn-warning:disabled { |
| 1758 | color: #212529; |
| 1759 | background-color: #ffc107; |
| 1760 | border-color: #ffc107; } |
| 1761 | .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, |
| 1762 | .show > .btn-warning.dropdown-toggle { |
| 1763 | color: #212529; |
| 1764 | background-color: #d39e00; |
| 1765 | border-color: #c69500; } |
| 1766 | .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, |
| 1767 | .show > .btn-warning.dropdown-toggle:focus { |
| 1768 | box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } |
| 1769 | |
| 1770 | .btn-danger { |
| 1771 | color: #fff; |
| 1772 | background-color: #dc3545; |
| 1773 | border-color: #dc3545; } |
| 1774 | .btn-danger:hover { |
| 1775 | color: #fff; |
| 1776 | background-color: #c82333; |
| 1777 | border-color: #bd2130; } |
| 1778 | .btn-danger:focus, .btn-danger.focus { |
| 1779 | box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); } |
| 1780 | .btn-danger.disabled, .btn-danger:disabled { |
| 1781 | color: #fff; |
| 1782 | background-color: #dc3545; |
| 1783 | border-color: #dc3545; } |
| 1784 | .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, |
| 1785 | .show > .btn-danger.dropdown-toggle { |
| 1786 | color: #fff; |
| 1787 | background-color: #bd2130; |
| 1788 | border-color: #b21f2d; } |
| 1789 | .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, |
| 1790 | .show > .btn-danger.dropdown-toggle:focus { |
| 1791 | box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); } |
| 1792 | |
| 1793 | .btn-light { |
| 1794 | color: #212529; |
| 1795 | background-color: #f3f3f3; |
| 1796 | border-color: #f3f3f3; } |
| 1797 | .btn-light:hover { |
| 1798 | color: #212529; |
| 1799 | background-color: #e0e0e0; |
| 1800 | border-color: #dadada; } |
| 1801 | .btn-light:focus, .btn-light.focus { |
| 1802 | box-shadow: 0 0 0 0.2rem rgba(243, 243, 243, 0.5); } |
| 1803 | .btn-light.disabled, .btn-light:disabled { |
| 1804 | color: #212529; |
| 1805 | background-color: #f3f3f3; |
| 1806 | border-color: #f3f3f3; } |
| 1807 | .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, |
| 1808 | .show > .btn-light.dropdown-toggle { |
| 1809 | color: #212529; |
| 1810 | background-color: #dadada; |
| 1811 | border-color: lightgray; } |
| 1812 | .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, |
| 1813 | .show > .btn-light.dropdown-toggle:focus { |
| 1814 | box-shadow: 0 0 0 0.2rem rgba(243, 243, 243, 0.5); } |
| 1815 | |
| 1816 | .btn-dark { |
| 1817 | color: #fff; |
| 1818 | background-color: #303030; |
| 1819 | border-color: #303030; } |
| 1820 | .btn-dark:hover { |
| 1821 | color: #fff; |
| 1822 | background-color: #1d1d1d; |
| 1823 | border-color: #171717; } |
| 1824 | .btn-dark:focus, .btn-dark.focus { |
| 1825 | box-shadow: 0 0 0 0.2rem rgba(48, 48, 48, 0.5); } |
| 1826 | .btn-dark.disabled, .btn-dark:disabled { |
| 1827 | color: #fff; |
| 1828 | background-color: #303030; |
| 1829 | border-color: #303030; } |
| 1830 | .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, |
| 1831 | .show > .btn-dark.dropdown-toggle { |
| 1832 | color: #fff; |
| 1833 | background-color: #171717; |
| 1834 | border-color: #101010; } |
| 1835 | .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, |
| 1836 | .show > .btn-dark.dropdown-toggle:focus { |
| 1837 | box-shadow: 0 0 0 0.2rem rgba(48, 48, 48, 0.5); } |
| 1838 | |
| 1839 | .btn-outline-primary { |
Stefan Ivic | ff54ece | 2019-08-31 14:49:48 +0200 | [diff] [blame] | 1840 | color: #fff; |
| 1841 | letter-spacing: 1px; |
Unknown | d2db0f1 | 2019-01-10 14:22:00 -0500 | [diff] [blame] | 1842 | background-color: transparent; |
| 1843 | background-image: none; |
Stefan Ivic | ff54ece | 2019-08-31 14:49:48 +0200 | [diff] [blame] | 1844 | border-color: #fff; } |
Unknown | d2db0f1 | 2019-01-10 14:22:00 -0500 | [diff] [blame] | 1845 | .btn-outline-primary:hover { |
| 1846 | color: #fff; |
| 1847 | background-color: #0080ff; |
| 1848 | border-color: #0080ff; } |
| 1849 | .btn-outline-primary:focus, .btn-outline-primary.focus { |
| 1850 | box-shadow: 0 0 0 0.2rem rgba(0, 128, 255, 0.5); } |
| 1851 | .btn-outline-primary.disabled, .btn-outline-primary:disabled { |
| 1852 | color: #0080ff; |
| 1853 | background-color: transparent; } |
| 1854 | .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, |
| 1855 | .show > .btn-outline-primary.dropdown-toggle { |
| 1856 | color: #fff; |
| 1857 | background-color: #0080ff; |
| 1858 | border-color: #0080ff; } |
| 1859 | .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, |
| 1860 | .show > .btn-outline-primary.dropdown-toggle:focus { |
| 1861 | box-shadow: 0 0 0 0.2rem rgba(0, 128, 255, 0.5); } |
| 1862 | |
| 1863 | .btn-outline-secondary { |
| 1864 | color: #0060aa; |
| 1865 | background-color: transparent; |
| 1866 | background-image: none; |
| 1867 | border-color: #0060aa; } |
| 1868 | .btn-outline-secondary:hover { |
| 1869 | color: #fff; |
| 1870 | background-color: #0060aa; |
| 1871 | border-color: #0060aa; } |
| 1872 | .btn-outline-secondary:focus, .btn-outline-secondary.focus { |
| 1873 | box-shadow: 0 0 0 0.2rem rgba(0, 96, 170, 0.5); } |
| 1874 | .btn-outline-secondary.disabled, .btn-outline-secondary:disabled { |
| 1875 | color: #0060aa; |
| 1876 | background-color: transparent; } |
| 1877 | .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, |
| 1878 | .show > .btn-outline-secondary.dropdown-toggle { |
| 1879 | color: #fff; |
| 1880 | background-color: #0060aa; |
| 1881 | border-color: #0060aa; } |
| 1882 | .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, |
| 1883 | .show > .btn-outline-secondary.dropdown-toggle:focus { |
| 1884 | box-shadow: 0 0 0 0.2rem rgba(0, 96, 170, 0.5); } |
| 1885 | |
| 1886 | .btn-outline-success { |
| 1887 | color: #28a745; |
| 1888 | background-color: transparent; |
| 1889 | background-image: none; |
| 1890 | border-color: #28a745; } |
| 1891 | .btn-outline-success:hover { |
| 1892 | color: #fff; |
| 1893 | background-color: #28a745; |
| 1894 | border-color: #28a745; } |
| 1895 | .btn-outline-success:focus, .btn-outline-success.focus { |
| 1896 | box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); } |
| 1897 | .btn-outline-success.disabled, .btn-outline-success:disabled { |
| 1898 | color: #28a745; |
| 1899 | background-color: transparent; } |
| 1900 | .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, |
| 1901 | .show > .btn-outline-success.dropdown-toggle { |
| 1902 | color: #fff; |
| 1903 | background-color: #28a745; |
| 1904 | border-color: #28a745; } |
| 1905 | .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, |
| 1906 | .show > .btn-outline-success.dropdown-toggle:focus { |
| 1907 | box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); } |
| 1908 | |
| 1909 | .btn-outline-info { |
| 1910 | color: #00aaff; |
| 1911 | background-color: transparent; |
| 1912 | background-image: none; |
| 1913 | border-color: #00aaff; } |
| 1914 | .btn-outline-info:hover { |
| 1915 | color: #fff; |
| 1916 | background-color: #00aaff; |
| 1917 | border-color: #00aaff; } |
| 1918 | .btn-outline-info:focus, .btn-outline-info.focus { |
| 1919 | box-shadow: 0 0 0 0.2rem rgba(0, 170, 255, 0.5); } |
| 1920 | .btn-outline-info.disabled, .btn-outline-info:disabled { |
| 1921 | color: #00aaff; |
| 1922 | background-color: transparent; } |
| 1923 | .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, |
| 1924 | .show > .btn-outline-info.dropdown-toggle { |
| 1925 | color: #fff; |
| 1926 | background-color: #00aaff; |
| 1927 | border-color: #00aaff; } |
| 1928 | .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, |
| 1929 | .show > .btn-outline-info.dropdown-toggle:focus { |
| 1930 | box-shadow: 0 0 0 0.2rem rgba(0, 170, 255, 0.5); } |
| 1931 | |
| 1932 | .btn-outline-warning { |
| 1933 | color: #ffc107; |
| 1934 | background-color: transparent; |
| 1935 | background-image: none; |
| 1936 | border-color: #ffc107; } |
| 1937 | .btn-outline-warning:hover { |
| 1938 | color: #212529; |
| 1939 | background-color: #ffc107; |
| 1940 | border-color: #ffc107; } |
| 1941 | .btn-outline-warning:focus, .btn-outline-warning.focus { |
| 1942 | box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } |
| 1943 | .btn-outline-warning.disabled, .btn-outline-warning:disabled { |
| 1944 | color: #ffc107; |
| 1945 | background-color: transparent; } |
| 1946 | .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, |
| 1947 | .show > .btn-outline-warning.dropdown-toggle { |
| 1948 | color: #212529; |
| 1949 | background-color: #ffc107; |
| 1950 | border-color: #ffc107; } |
| 1951 | .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, |
| 1952 | .show > .btn-outline-warning.dropdown-toggle:focus { |
| 1953 | box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } |
| 1954 | |
| 1955 | .btn-outline-danger { |
| 1956 | color: #dc3545; |
| 1957 | background-color: transparent; |
| 1958 | background-image: none; |
| 1959 | border-color: #dc3545; } |
| 1960 | .btn-outline-danger:hover { |
| 1961 | color: #fff; |
| 1962 | background-color: #dc3545; |
| 1963 | border-color: #dc3545; } |
| 1964 | .btn-outline-danger:focus, .btn-outline-danger.focus { |
| 1965 | box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); } |
| 1966 | .btn-outline-danger.disabled, .btn-outline-danger:disabled { |
| 1967 | color: #dc3545; |
| 1968 | background-color: transparent; } |
| 1969 | .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, |
| 1970 | .show > .btn-outline-danger.dropdown-toggle { |
| 1971 | color: #fff; |
| 1972 | background-color: #dc3545; |
| 1973 | border-color: #dc3545; } |
| 1974 | .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, |
| 1975 | .show > .btn-outline-danger.dropdown-toggle:focus { |
| 1976 | box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); } |
| 1977 | |
| 1978 | .btn-outline-light { |
| 1979 | color: #f3f3f3; |
| 1980 | background-color: transparent; |
| 1981 | background-image: none; |
| 1982 | border-color: #f3f3f3; } |
| 1983 | .btn-outline-light:hover { |
| 1984 | color: #212529; |
| 1985 | background-color: #f3f3f3; |
| 1986 | border-color: #f3f3f3; } |
| 1987 | .btn-outline-light:focus, .btn-outline-light.focus { |
| 1988 | box-shadow: 0 0 0 0.2rem rgba(243, 243, 243, 0.5); } |
| 1989 | .btn-outline-light.disabled, .btn-outline-light:disabled { |
| 1990 | color: #f3f3f3; |
| 1991 | background-color: transparent; } |
| 1992 | .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, |
| 1993 | .show > .btn-outline-light.dropdown-toggle { |
| 1994 | color: #212529; |
| 1995 | background-color: #f3f3f3; |
| 1996 | border-color: #f3f3f3; } |
| 1997 | .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, |
| 1998 | .show > .btn-outline-light.dropdown-toggle:focus { |
| 1999 | box-shadow: 0 0 0 0.2rem rgba(243, 243, 243, 0.5); } |
| 2000 | |
| 2001 | .btn-outline-dark { |
| 2002 | color: #303030; |
| 2003 | background-color: transparent; |
| 2004 | background-image: none; |
| 2005 | border-color: #303030; } |
| 2006 | .btn-outline-dark:hover { |
| 2007 | color: #fff; |
| 2008 | background-color: #303030; |
| 2009 | border-color: #303030; } |
| 2010 | .btn-outline-dark:focus, .btn-outline-dark.focus { |
| 2011 | box-shadow: 0 0 0 0.2rem rgba(48, 48, 48, 0.5); } |
| 2012 | .btn-outline-dark.disabled, .btn-outline-dark:disabled { |
| 2013 | color: #303030; |
| 2014 | background-color: transparent; } |
| 2015 | .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, |
| 2016 | .show > .btn-outline-dark.dropdown-toggle { |
| 2017 | color: #fff; |
| 2018 | background-color: #303030; |
| 2019 | border-color: #303030; } |
| 2020 | .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, |
| 2021 | .show > .btn-outline-dark.dropdown-toggle:focus { |
| 2022 | box-shadow: 0 0 0 0.2rem rgba(48, 48, 48, 0.5); } |
| 2023 | |
| 2024 | .btn-link { |
| 2025 | font-weight: 200; |
| 2026 | color: #0080ff; |
| 2027 | background-color: transparent; } |
| 2028 | .btn-link:hover { |
| 2029 | color: white; |
| 2030 | text-decoration: none; |
| 2031 | background-color: transparent; |
| 2032 | border-color: transparent; } |
| 2033 | .btn-link:focus, .btn-link.focus { |
| 2034 | text-decoration: none; |
| 2035 | border-color: transparent; |
| 2036 | box-shadow: none; } |
| 2037 | .btn-link:disabled, .btn-link.disabled { |
| 2038 | color: #6c757d; |
| 2039 | pointer-events: none; } |
| 2040 | |
| 2041 | .btn-lg, .btn-group-lg > .btn { |
| 2042 | padding: 0.5rem 1.1rem; |
| 2043 | font-size: 1.0625rem; |
| 2044 | line-height: 1.5; |
| 2045 | border-radius: 0.9rem; } |
| 2046 | |
| 2047 | .btn-sm, .btn-group-sm > .btn { |
| 2048 | padding: 0.25rem 0.5rem; |
| 2049 | font-size: 0.74375rem; |
| 2050 | line-height: 1.5; |
| 2051 | border-radius: 0.3rem; } |
| 2052 | |
| 2053 | .btn-block { |
| 2054 | display: block; |
| 2055 | width: 100%; } |
| 2056 | .btn-block + .btn-block { |
| 2057 | margin-top: 0.5rem; } |
| 2058 | |
| 2059 | input[type="submit"].btn-block, |
| 2060 | input[type="reset"].btn-block, |
| 2061 | input[type="button"].btn-block { |
| 2062 | width: 100%; } |
| 2063 | |
| 2064 | .fade { |
| 2065 | transition: opacity 0.15s linear; } |
| 2066 | @media screen and (prefers-reduced-motion: reduce) { |
| 2067 | .fade { |
| 2068 | transition: none; } } |
| 2069 | .fade:not(.show) { |
| 2070 | opacity: 0; } |
| 2071 | |
| 2072 | .collapse:not(.show) { |
| 2073 | display: none; } |
| 2074 | |
| 2075 | .collapsing { |
| 2076 | position: relative; |
| 2077 | height: 0; |
| 2078 | overflow: hidden; |
| 2079 | transition: height 0.35s ease; } |
| 2080 | @media screen and (prefers-reduced-motion: reduce) { |
| 2081 | .collapsing { |
| 2082 | transition: none; } } |
| 2083 | |
| 2084 | .dropup, |
| 2085 | .dropright, |
| 2086 | .dropdown, |
| 2087 | .dropleft { |
| 2088 | position: relative; } |
| 2089 | |
| 2090 | .dropdown-toggle::after { |
| 2091 | display: inline-block; |
| 2092 | width: 0; |
| 2093 | height: 0; |
| 2094 | margin-left: 0.255em; |
| 2095 | vertical-align: 0.255em; |
| 2096 | content: ""; |
| 2097 | border-top: 0.3em solid; |
| 2098 | border-right: 0.3em solid transparent; |
| 2099 | border-bottom: 0; |
| 2100 | border-left: 0.3em solid transparent; } |
| 2101 | |
| 2102 | .dropdown-toggle:empty::after { |
| 2103 | margin-left: 0; } |
| 2104 | |
| 2105 | .dropdown-menu { |
| 2106 | position: absolute; |
| 2107 | top: 100%; |
| 2108 | left: 0; |
| 2109 | z-index: 1000; |
| 2110 | display: none; |
| 2111 | float: left; |
| 2112 | min-width: 10rem; |
| 2113 | padding: 0.5rem 0; |
| 2114 | margin: 0.125rem 0 0; |
| 2115 | font-size: 0.85rem; |
| 2116 | color: #efefef; |
| 2117 | text-align: left; |
| 2118 | list-style: none; |
| 2119 | background-color: #fff; |
| 2120 | background-clip: padding-box; |
| 2121 | border: 1px solid rgba(0, 0, 0, 0.15); |
| 2122 | border-radius: 0.75rem; } |
| 2123 | |
| 2124 | .dropdown-menu-right { |
| 2125 | right: 0; |
| 2126 | left: auto; } |
| 2127 | |
| 2128 | .dropup .dropdown-menu { |
| 2129 | top: auto; |
| 2130 | bottom: 100%; |
| 2131 | margin-top: 0; |
| 2132 | margin-bottom: 0.125rem; } |
| 2133 | |
| 2134 | .dropup .dropdown-toggle::after { |
| 2135 | display: inline-block; |
| 2136 | width: 0; |
| 2137 | height: 0; |
| 2138 | margin-left: 0.255em; |
| 2139 | vertical-align: 0.255em; |
| 2140 | content: ""; |
| 2141 | border-top: 0; |
| 2142 | border-right: 0.3em solid transparent; |
| 2143 | border-bottom: 0.3em solid; |
| 2144 | border-left: 0.3em solid transparent; } |
| 2145 | |
| 2146 | .dropup .dropdown-toggle:empty::after { |
| 2147 | margin-left: 0; } |
| 2148 | |
| 2149 | .dropright .dropdown-menu { |
| 2150 | top: 0; |
| 2151 | right: auto; |
| 2152 | left: 100%; |
| 2153 | margin-top: 0; |
| 2154 | margin-left: 0.125rem; } |
| 2155 | |
| 2156 | .dropright .dropdown-toggle::after { |
| 2157 | display: inline-block; |
| 2158 | width: 0; |
| 2159 | height: 0; |
| 2160 | margin-left: 0.255em; |
| 2161 | vertical-align: 0.255em; |
| 2162 | content: ""; |
| 2163 | border-top: 0.3em solid transparent; |
| 2164 | border-right: 0; |
| 2165 | border-bottom: 0.3em solid transparent; |
| 2166 | border-left: 0.3em solid; } |
| 2167 | |
| 2168 | .dropright .dropdown-toggle:empty::after { |
| 2169 | margin-left: 0; } |
| 2170 | |
| 2171 | .dropright .dropdown-toggle::after { |
| 2172 | vertical-align: 0; } |
| 2173 | |
| 2174 | .dropleft .dropdown-menu { |
| 2175 | top: 0; |
| 2176 | right: 100%; |
| 2177 | left: auto; |
| 2178 | margin-top: 0; |
| 2179 | margin-right: 0.125rem; } |
| 2180 | |
| 2181 | .dropleft .dropdown-toggle::after { |
| 2182 | display: inline-block; |
| 2183 | width: 0; |
| 2184 | height: 0; |
| 2185 | margin-left: 0.255em; |
| 2186 | vertical-align: 0.255em; |
| 2187 | content: ""; } |
| 2188 | |
| 2189 | .dropleft .dropdown-toggle::after { |
| 2190 | display: none; } |
| 2191 | |
| 2192 | .dropleft .dropdown-toggle::before { |
| 2193 | display: inline-block; |
| 2194 | width: 0; |
| 2195 | height: 0; |
| 2196 | margin-right: 0.255em; |
| 2197 | vertical-align: 0.255em; |
| 2198 | content: ""; |
| 2199 | border-top: 0.3em solid transparent; |
| 2200 | border-right: 0.3em solid; |
| 2201 | border-bottom: 0.3em solid transparent; } |
| 2202 | |
| 2203 | .dropleft .dropdown-toggle:empty::after { |
| 2204 | margin-left: 0; } |
| 2205 | |
| 2206 | .dropleft .dropdown-toggle::before { |
| 2207 | vertical-align: 0; } |
| 2208 | |
| 2209 | .dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] { |
| 2210 | right: auto; |
| 2211 | bottom: auto; } |
| 2212 | |
| 2213 | .dropdown-divider { |
| 2214 | height: 0; |
| 2215 | margin: 0.75rem 0; |
| 2216 | overflow: hidden; |
| 2217 | border-top: 1px solid #e9ecef; } |
| 2218 | |
| 2219 | .dropdown-item { |
| 2220 | display: block; |
| 2221 | width: 100%; |
| 2222 | padding: 0.25rem 1.5rem; |
| 2223 | clear: both; |
| 2224 | font-weight: 200; |
| 2225 | color: #212529; |
| 2226 | text-align: inherit; |
| 2227 | white-space: nowrap; |
| 2228 | background-color: transparent; |
| 2229 | border: 0; } |
| 2230 | .dropdown-item:hover, .dropdown-item:focus { |
| 2231 | color: #16181b; |
| 2232 | text-decoration: none; |
| 2233 | background-color: #f8f9fa; } |
| 2234 | .dropdown-item.active, .dropdown-item:active { |
| 2235 | color: #303030; |
| 2236 | text-decoration: none; |
| 2237 | background-color: #0080ff; } |
| 2238 | .dropdown-item.disabled, .dropdown-item:disabled { |
| 2239 | color: #6c757d; |
| 2240 | background-color: transparent; } |
| 2241 | |
| 2242 | .dropdown-menu.show { |
| 2243 | display: block; } |
| 2244 | |
| 2245 | .dropdown-header { |
| 2246 | display: block; |
| 2247 | padding: 0.5rem 1.5rem; |
| 2248 | margin-bottom: 0; |
| 2249 | font-size: 0.74375rem; |
| 2250 | color: #6c757d; |
| 2251 | white-space: nowrap; } |
| 2252 | |
| 2253 | .dropdown-item-text { |
| 2254 | display: block; |
| 2255 | padding: 0.25rem 1.5rem; |
| 2256 | color: #212529; } |
| 2257 | |
| 2258 | .btn-group, |
| 2259 | .btn-group-vertical { |
| 2260 | position: relative; |
| 2261 | display: inline-flex; |
| 2262 | vertical-align: middle; } |
| 2263 | .btn-group > .btn, |
| 2264 | .btn-group-vertical > .btn { |
| 2265 | position: relative; |
| 2266 | flex: 0 1 auto; } |
| 2267 | .btn-group > .btn:hover, |
| 2268 | .btn-group-vertical > .btn:hover { |
| 2269 | z-index: 1; } |
| 2270 | .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, |
| 2271 | .btn-group-vertical > .btn:focus, |
| 2272 | .btn-group-vertical > .btn:active, |
| 2273 | .btn-group-vertical > .btn.active { |
| 2274 | z-index: 1; } |
| 2275 | .btn-group .btn + .btn, |
| 2276 | .btn-group .btn + .btn-group, |
| 2277 | .btn-group .btn-group + .btn, |
| 2278 | .btn-group .btn-group + .btn-group, |
| 2279 | .btn-group-vertical .btn + .btn, |
| 2280 | .btn-group-vertical .btn + .btn-group, |
| 2281 | .btn-group-vertical .btn-group + .btn, |
| 2282 | .btn-group-vertical .btn-group + .btn-group { |
| 2283 | margin-left: -1px; } |
| 2284 | |
| 2285 | .btn-toolbar { |
| 2286 | display: flex; |
| 2287 | flex-wrap: wrap; |
| 2288 | justify-content: flex-start; } |
| 2289 | .btn-toolbar .input-group { |
| 2290 | width: auto; } |
| 2291 | |
| 2292 | .btn-group > .btn:first-child { |
| 2293 | margin-left: 0; } |
| 2294 | |
| 2295 | .btn-group > .btn:not(:last-child):not(.dropdown-toggle), |
| 2296 | .btn-group > .btn-group:not(:last-child) > .btn { |
| 2297 | border-top-right-radius: 0; |
| 2298 | border-bottom-right-radius: 0; } |
| 2299 | |
| 2300 | .btn-group > .btn:not(:first-child), |
| 2301 | .btn-group > .btn-group:not(:first-child) > .btn { |
| 2302 | border-top-left-radius: 0; |
| 2303 | border-bottom-left-radius: 0; } |
| 2304 | |
| 2305 | .dropdown-toggle-split { |
| 2306 | padding-right: 0.75rem; |
| 2307 | padding-left: 0.75rem; } |
| 2308 | .dropdown-toggle-split::after, |
| 2309 | .dropup .dropdown-toggle-split::after, |
| 2310 | .dropright .dropdown-toggle-split::after { |
| 2311 | margin-left: 0; } |
| 2312 | .dropleft .dropdown-toggle-split::before { |
| 2313 | margin-right: 0; } |
| 2314 | |
| 2315 | .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { |
| 2316 | padding-right: 0.375rem; |
| 2317 | padding-left: 0.375rem; } |
| 2318 | |
| 2319 | .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { |
| 2320 | padding-right: 0.825rem; |
| 2321 | padding-left: 0.825rem; } |
| 2322 | |
| 2323 | .btn-group-vertical { |
| 2324 | flex-direction: column; |
| 2325 | align-items: flex-start; |
| 2326 | justify-content: center; } |
| 2327 | .btn-group-vertical .btn, |
| 2328 | .btn-group-vertical .btn-group { |
| 2329 | width: 100%; } |
| 2330 | .btn-group-vertical > .btn + .btn, |
| 2331 | .btn-group-vertical > .btn + .btn-group, |
| 2332 | .btn-group-vertical > .btn-group + .btn, |
| 2333 | .btn-group-vertical > .btn-group + .btn-group { |
| 2334 | margin-top: -1px; |
| 2335 | margin-left: 0; } |
| 2336 | .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), |
| 2337 | .btn-group-vertical > .btn-group:not(:last-child) > .btn { |
| 2338 | border-bottom-right-radius: 0; |
| 2339 | border-bottom-left-radius: 0; } |
| 2340 | .btn-group-vertical > .btn:not(:first-child), |
| 2341 | .btn-group-vertical > .btn-group:not(:first-child) > .btn { |
| 2342 | border-top-left-radius: 0; |
| 2343 | border-top-right-radius: 0; } |
| 2344 | |
| 2345 | .btn-group-toggle > .btn, |
| 2346 | .btn-group-toggle > .btn-group > .btn { |
| 2347 | margin-bottom: 0; } |
| 2348 | .btn-group-toggle > .btn input[type="radio"], |
| 2349 | .btn-group-toggle > .btn input[type="checkbox"], |
| 2350 | .btn-group-toggle > .btn-group > .btn input[type="radio"], |
| 2351 | .btn-group-toggle > .btn-group > .btn input[type="checkbox"] { |
| 2352 | position: absolute; |
| 2353 | clip: rect(0, 0, 0, 0); |
| 2354 | pointer-events: none; } |
| 2355 | |
| 2356 | .input-group { |
| 2357 | position: relative; |
| 2358 | display: flex; |
| 2359 | flex-wrap: wrap; |
| 2360 | align-items: stretch; |
| 2361 | width: 100%; } |
| 2362 | .input-group > .form-control, |
| 2363 | .input-group > .custom-select, |
| 2364 | .input-group > .custom-file { |
| 2365 | position: relative; |
| 2366 | flex: 1 1 auto; |
| 2367 | width: 1%; |
| 2368 | margin-bottom: 0; } |
| 2369 | .input-group > .form-control + .form-control, |
| 2370 | .input-group > .form-control + .custom-select, |
| 2371 | .input-group > .form-control + .custom-file, |
| 2372 | .input-group > .custom-select + .form-control, |
| 2373 | .input-group > .custom-select + .custom-select, |
| 2374 | .input-group > .custom-select + .custom-file, |
| 2375 | .input-group > .custom-file + .form-control, |
| 2376 | .input-group > .custom-file + .custom-select, |
| 2377 | .input-group > .custom-file + .custom-file { |
| 2378 | margin-left: -1px; } |
| 2379 | .input-group > .form-control:focus, |
| 2380 | .input-group > .custom-select:focus, |
| 2381 | .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label { |
| 2382 | z-index: 3; } |
| 2383 | .input-group > .custom-file .custom-file-input:focus { |
| 2384 | z-index: 4; } |
| 2385 | .input-group > .form-control:not(:last-child), |
| 2386 | .input-group > .custom-select:not(:last-child) { |
| 2387 | border-top-right-radius: 0; |
| 2388 | border-bottom-right-radius: 0; } |
| 2389 | .input-group > .form-control:not(:first-child), |
| 2390 | .input-group > .custom-select:not(:first-child) { |
| 2391 | border-top-left-radius: 0; |
| 2392 | border-bottom-left-radius: 0; } |
| 2393 | .input-group > .custom-file { |
| 2394 | display: flex; |
| 2395 | align-items: center; } |
| 2396 | .input-group > .custom-file:not(:last-child) .custom-file-label, |
| 2397 | .input-group > .custom-file:not(:last-child) .custom-file-label::after { |
| 2398 | border-top-right-radius: 0; |
| 2399 | border-bottom-right-radius: 0; } |
| 2400 | .input-group > .custom-file:not(:first-child) .custom-file-label { |
| 2401 | border-top-left-radius: 0; |
| 2402 | border-bottom-left-radius: 0; } |
| 2403 | |
| 2404 | .input-group-prepend, |
| 2405 | .input-group-append { |
| 2406 | display: flex; } |
| 2407 | .input-group-prepend .btn, |
| 2408 | .input-group-append .btn { |
| 2409 | position: relative; |
| 2410 | z-index: 2; } |
| 2411 | .input-group-prepend .btn + .btn, |
| 2412 | .input-group-prepend .btn + .input-group-text, |
| 2413 | .input-group-prepend .input-group-text + .input-group-text, |
| 2414 | .input-group-prepend .input-group-text + .btn, |
| 2415 | .input-group-append .btn + .btn, |
| 2416 | .input-group-append .btn + .input-group-text, |
| 2417 | .input-group-append .input-group-text + .input-group-text, |
| 2418 | .input-group-append .input-group-text + .btn { |
| 2419 | margin-left: -1px; } |
| 2420 | |
| 2421 | .input-group-prepend { |
| 2422 | margin-right: -1px; } |
| 2423 | |
| 2424 | .input-group-append { |
| 2425 | margin-left: -1px; } |
| 2426 | |
| 2427 | .input-group-text { |
| 2428 | display: flex; |
| 2429 | align-items: center; |
| 2430 | padding: 0.375rem 1rem; |
| 2431 | margin-bottom: 0; |
| 2432 | font-size: 0.85rem; |
| 2433 | font-weight: 200; |
| 2434 | line-height: 1.8; |
| 2435 | color: #495057; |
| 2436 | text-align: center; |
| 2437 | white-space: nowrap; |
| 2438 | background-color: #e9ecef; |
| 2439 | border: 1px solid #ced4da; |
| 2440 | border-radius: 0.75rem; } |
| 2441 | .input-group-text input[type="radio"], |
| 2442 | .input-group-text input[type="checkbox"] { |
| 2443 | margin-top: 0; } |
| 2444 | |
| 2445 | .input-group-lg > .form-control, |
| 2446 | .input-group-lg > .input-group-prepend > .input-group-text, |
| 2447 | .input-group-lg > .input-group-append > .input-group-text, |
| 2448 | .input-group-lg > .input-group-prepend > .btn, |
| 2449 | .input-group-lg > .input-group-append > .btn { |
| 2450 | height: calc(2.59375rem + 2px); |
| 2451 | padding: 0.5rem 1.1rem; |
| 2452 | font-size: 1.0625rem; |
| 2453 | line-height: 1.5; |
| 2454 | border-radius: 0.9rem; } |
| 2455 | |
| 2456 | .input-group-sm > .form-control, |
| 2457 | .input-group-sm > .input-group-prepend > .input-group-text, |
| 2458 | .input-group-sm > .input-group-append > .input-group-text, |
| 2459 | .input-group-sm > .input-group-prepend > .btn, |
| 2460 | .input-group-sm > .input-group-append > .btn { |
| 2461 | height: calc(1.61563rem + 2px); |
| 2462 | padding: 0.25rem 0.5rem; |
| 2463 | font-size: 0.74375rem; |
| 2464 | line-height: 1.5; |
| 2465 | border-radius: 0.3rem; } |
| 2466 | |
| 2467 | .input-group > .input-group-prepend > .btn, |
| 2468 | .input-group > .input-group-prepend > .input-group-text, |
| 2469 | .input-group > .input-group-append:not(:last-child) > .btn, |
| 2470 | .input-group > .input-group-append:not(:last-child) > .input-group-text, |
| 2471 | .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), |
| 2472 | .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) { |
| 2473 | border-top-right-radius: 0; |
| 2474 | border-bottom-right-radius: 0; } |
| 2475 | |
| 2476 | .input-group > .input-group-append > .btn, |
| 2477 | .input-group > .input-group-append > .input-group-text, |
| 2478 | .input-group > .input-group-prepend:not(:first-child) > .btn, |
| 2479 | .input-group > .input-group-prepend:not(:first-child) > .input-group-text, |
| 2480 | .input-group > .input-group-prepend:first-child > .btn:not(:first-child), |
| 2481 | .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) { |
| 2482 | border-top-left-radius: 0; |
| 2483 | border-bottom-left-radius: 0; } |
| 2484 | |
| 2485 | .custom-control { |
| 2486 | position: relative; |
| 2487 | display: block; |
| 2488 | min-height: 1.53rem; |
| 2489 | padding-left: 1.5rem; } |
| 2490 | |
| 2491 | .custom-control-inline { |
| 2492 | display: inline-flex; |
| 2493 | margin-right: 1rem; } |
| 2494 | |
| 2495 | .custom-control-input { |
| 2496 | position: absolute; |
| 2497 | z-index: -1; |
| 2498 | opacity: 0; } |
| 2499 | .custom-control-input:checked ~ .custom-control-label::before { |
| 2500 | color: #303030; |
| 2501 | background-color: #0080ff; } |
| 2502 | .custom-control-input:focus ~ .custom-control-label::before { |
| 2503 | box-shadow: 0 0 0 1px #111, 0 0 0 0.2rem rgba(0, 128, 255, 0.25); } |
| 2504 | .custom-control-input:active ~ .custom-control-label::before { |
| 2505 | color: #303030; |
| 2506 | background-color: #b3d9ff; } |
| 2507 | .custom-control-input:disabled ~ .custom-control-label { |
| 2508 | color: #6c757d; } |
| 2509 | .custom-control-input:disabled ~ .custom-control-label::before { |
| 2510 | background-color: #e9ecef; } |
| 2511 | |
| 2512 | .custom-control-label { |
| 2513 | position: relative; |
| 2514 | margin-bottom: 0; } |
| 2515 | .custom-control-label::before { |
| 2516 | position: absolute; |
| 2517 | top: 0.265rem; |
| 2518 | left: -1.5rem; |
| 2519 | display: block; |
| 2520 | width: 1rem; |
| 2521 | height: 1rem; |
| 2522 | pointer-events: none; |
| 2523 | content: ""; |
| 2524 | -webkit-user-select: none; |
| 2525 | -moz-user-select: none; |
| 2526 | -ms-user-select: none; |
| 2527 | user-select: none; |
| 2528 | background-color: #dee2e6; } |
| 2529 | .custom-control-label::after { |
| 2530 | position: absolute; |
| 2531 | top: 0.265rem; |
| 2532 | left: -1.5rem; |
| 2533 | display: block; |
| 2534 | width: 1rem; |
| 2535 | height: 1rem; |
| 2536 | content: ""; |
| 2537 | background-repeat: no-repeat; |
| 2538 | background-position: center center; |
| 2539 | background-size: 50% 50%; } |
| 2540 | |
| 2541 | .custom-checkbox .custom-control-label::before { |
| 2542 | border-radius: 0.75rem; } |
| 2543 | |
| 2544 | .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before { |
| 2545 | background-color: #0080ff; } |
| 2546 | |
| 2547 | .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { |
| 2548 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23303030' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"); } |
| 2549 | |
| 2550 | .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { |
| 2551 | background-color: #0080ff; } |
| 2552 | |
| 2553 | .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { |
| 2554 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23303030' d='M0 2h4'/%3E%3C/svg%3E"); } |
| 2555 | |
| 2556 | .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { |
| 2557 | background-color: rgba(0, 128, 255, 0.5); } |
| 2558 | |
| 2559 | .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { |
| 2560 | background-color: rgba(0, 128, 255, 0.5); } |
| 2561 | |
| 2562 | .custom-radio .custom-control-label::before { |
| 2563 | border-radius: 50%; } |
| 2564 | |
| 2565 | .custom-radio .custom-control-input:checked ~ .custom-control-label::before { |
| 2566 | background-color: #0080ff; } |
| 2567 | |
| 2568 | .custom-radio .custom-control-input:checked ~ .custom-control-label::after { |
| 2569 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23303030'/%3E%3C/svg%3E"); } |
| 2570 | |
| 2571 | .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { |
| 2572 | background-color: rgba(0, 128, 255, 0.5); } |
| 2573 | |
| 2574 | .custom-select { |
| 2575 | display: inline-block; |
| 2576 | width: 100%; |
| 2577 | height: calc(2.28rem + 2px); |
| 2578 | padding: 0.375rem 1.75rem 0.375rem 0.75rem; |
| 2579 | line-height: 1.8; |
| 2580 | color: #495057; |
| 2581 | vertical-align: middle; |
| 2582 | background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center; |
| 2583 | background-size: 8px 10px; |
| 2584 | border: 1px solid #ced4da; |
| 2585 | border-radius: 0.75rem; |
| 2586 | -webkit-appearance: none; |
| 2587 | -moz-appearance: none; |
| 2588 | appearance: none; } |
| 2589 | .custom-select:focus { |
| 2590 | border-color: #80c0ff; |
| 2591 | outline: 0; |
| 2592 | box-shadow: 0 0 0 0.2rem rgba(128, 192, 255, 0.5); } |
| 2593 | .custom-select:focus::-ms-value { |
| 2594 | color: #495057; |
| 2595 | background-color: #fff; } |
| 2596 | .custom-select[multiple], .custom-select[size]:not([size="1"]) { |
| 2597 | height: auto; |
| 2598 | padding-right: 0.75rem; |
| 2599 | background-image: none; } |
| 2600 | .custom-select:disabled { |
| 2601 | color: #6c757d; |
| 2602 | background-color: #e9ecef; } |
| 2603 | .custom-select::-ms-expand { |
| 2604 | opacity: 0; } |
| 2605 | |
| 2606 | .custom-select-sm { |
| 2607 | height: calc(1.61563rem + 2px); |
| 2608 | padding-top: 0.375rem; |
| 2609 | padding-bottom: 0.375rem; |
| 2610 | font-size: 75%; } |
| 2611 | |
| 2612 | .custom-select-lg { |
| 2613 | height: calc(2.59375rem + 2px); |
| 2614 | padding-top: 0.375rem; |
| 2615 | padding-bottom: 0.375rem; |
| 2616 | font-size: 125%; } |
| 2617 | |
| 2618 | .custom-file { |
| 2619 | position: relative; |
| 2620 | display: inline-block; |
| 2621 | width: 100%; |
| 2622 | height: calc(2.28rem + 2px); |
| 2623 | margin-bottom: 0; } |
| 2624 | |
| 2625 | .custom-file-input { |
| 2626 | position: relative; |
| 2627 | z-index: 2; |
| 2628 | width: 100%; |
| 2629 | height: calc(2.28rem + 2px); |
| 2630 | margin: 0; |
| 2631 | opacity: 0; } |
| 2632 | .custom-file-input:focus ~ .custom-file-label { |
| 2633 | border-color: #80c0ff; |
| 2634 | box-shadow: 0 0 0 0.2rem rgba(0, 128, 255, 0.25); } |
| 2635 | .custom-file-input:focus ~ .custom-file-label::after { |
| 2636 | border-color: #80c0ff; } |
| 2637 | .custom-file-input:disabled ~ .custom-file-label { |
| 2638 | background-color: #e9ecef; } |
| 2639 | .custom-file-input:lang(en) ~ .custom-file-label::after { |
| 2640 | content: "Browse"; } |
| 2641 | |
| 2642 | .custom-file-label { |
| 2643 | position: absolute; |
| 2644 | top: 0; |
| 2645 | right: 0; |
| 2646 | left: 0; |
| 2647 | z-index: 1; |
| 2648 | height: calc(2.28rem + 2px); |
| 2649 | padding: 0.375rem 1rem; |
| 2650 | line-height: 1.8; |
| 2651 | color: #495057; |
| 2652 | background-color: #fff; |
| 2653 | border: 1px solid #ced4da; |
| 2654 | border-radius: 0.75rem; } |
| 2655 | .custom-file-label::after { |
| 2656 | position: absolute; |
| 2657 | top: 0; |
| 2658 | right: 0; |
| 2659 | bottom: 0; |
| 2660 | z-index: 3; |
| 2661 | display: block; |
| 2662 | height: 2.28rem; |
| 2663 | padding: 0.375rem 1rem; |
| 2664 | line-height: 1.8; |
| 2665 | color: #495057; |
| 2666 | content: "Browse"; |
| 2667 | background-color: #e9ecef; |
| 2668 | border-left: 1px solid #ced4da; |
| 2669 | border-radius: 0 0.75rem 0.75rem 0; } |
| 2670 | |
| 2671 | .custom-range { |
| 2672 | width: 100%; |
| 2673 | padding-left: 0; |
| 2674 | background-color: transparent; |
| 2675 | -webkit-appearance: none; |
| 2676 | -moz-appearance: none; |
| 2677 | appearance: none; } |
| 2678 | .custom-range:focus { |
| 2679 | outline: none; } |
| 2680 | .custom-range:focus::-webkit-slider-thumb { |
| 2681 | box-shadow: 0 0 0 1px #111, 0 0 0 0.2rem rgba(0, 128, 255, 0.25); } |
| 2682 | .custom-range:focus::-moz-range-thumb { |
| 2683 | box-shadow: 0 0 0 1px #111, 0 0 0 0.2rem rgba(0, 128, 255, 0.25); } |
| 2684 | .custom-range:focus::-ms-thumb { |
| 2685 | box-shadow: 0 0 0 1px #111, 0 0 0 0.2rem rgba(0, 128, 255, 0.25); } |
| 2686 | .custom-range::-moz-focus-outer { |
| 2687 | border: 0; } |
| 2688 | .custom-range::-webkit-slider-thumb { |
| 2689 | width: 1rem; |
| 2690 | height: 1rem; |
| 2691 | margin-top: -0.25rem; |
| 2692 | background-color: #0080ff; |
| 2693 | border: 0; |
| 2694 | border-radius: 1rem; |
| 2695 | transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; |
| 2696 | -webkit-appearance: none; |
| 2697 | appearance: none; } |
| 2698 | @media screen and (prefers-reduced-motion: reduce) { |
| 2699 | .custom-range::-webkit-slider-thumb { |
| 2700 | transition: none; } } |
| 2701 | .custom-range::-webkit-slider-thumb:active { |
| 2702 | background-color: #b3d9ff; } |
| 2703 | .custom-range::-webkit-slider-runnable-track { |
| 2704 | width: 100%; |
| 2705 | height: 0.5rem; |
| 2706 | color: transparent; |
| 2707 | cursor: pointer; |
| 2708 | background-color: #dee2e6; |
| 2709 | border-color: transparent; |
| 2710 | border-radius: 1rem; } |
| 2711 | .custom-range::-moz-range-thumb { |
| 2712 | width: 1rem; |
| 2713 | height: 1rem; |
| 2714 | background-color: #0080ff; |
| 2715 | border: 0; |
| 2716 | border-radius: 1rem; |
| 2717 | transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; |
| 2718 | -moz-appearance: none; |
| 2719 | appearance: none; } |
| 2720 | @media screen and (prefers-reduced-motion: reduce) { |
| 2721 | .custom-range::-moz-range-thumb { |
| 2722 | transition: none; } } |
| 2723 | .custom-range::-moz-range-thumb:active { |
| 2724 | background-color: #b3d9ff; } |
| 2725 | .custom-range::-moz-range-track { |
| 2726 | width: 100%; |
| 2727 | height: 0.5rem; |
| 2728 | color: transparent; |
| 2729 | cursor: pointer; |
| 2730 | background-color: #dee2e6; |
| 2731 | border-color: transparent; |
| 2732 | border-radius: 1rem; } |
| 2733 | .custom-range::-ms-thumb { |
| 2734 | width: 1rem; |
| 2735 | height: 1rem; |
| 2736 | margin-top: 0; |
| 2737 | margin-right: 0.2rem; |
| 2738 | margin-left: 0.2rem; |
| 2739 | background-color: #0080ff; |
| 2740 | border: 0; |
| 2741 | border-radius: 1rem; |
| 2742 | transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; |
| 2743 | appearance: none; } |
| 2744 | @media screen and (prefers-reduced-motion: reduce) { |
| 2745 | .custom-range::-ms-thumb { |
| 2746 | transition: none; } } |
| 2747 | .custom-range::-ms-thumb:active { |
| 2748 | background-color: #b3d9ff; } |
| 2749 | .custom-range::-ms-track { |
| 2750 | width: 100%; |
| 2751 | height: 0.5rem; |
| 2752 | color: transparent; |
| 2753 | cursor: pointer; |
| 2754 | background-color: transparent; |
| 2755 | border-color: transparent; |
| 2756 | border-width: 0.5rem; } |
| 2757 | .custom-range::-ms-fill-lower { |
| 2758 | background-color: #dee2e6; |
| 2759 | border-radius: 1rem; } |
| 2760 | .custom-range::-ms-fill-upper { |
| 2761 | margin-right: 15px; |
| 2762 | background-color: #dee2e6; |
| 2763 | border-radius: 1rem; } |
| 2764 | |
| 2765 | .custom-control-label::before, |
| 2766 | .custom-file-label, |
| 2767 | .custom-select { |
| 2768 | transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } |
| 2769 | @media screen and (prefers-reduced-motion: reduce) { |
| 2770 | .custom-control-label::before, |
| 2771 | .custom-file-label, |
| 2772 | .custom-select { |
| 2773 | transition: none; } } |
| 2774 | |
| 2775 | .nav { |
| 2776 | display: flex; |
| 2777 | flex-wrap: wrap; |
| 2778 | padding-left: 0; |
| 2779 | margin-bottom: 0; |
| 2780 | list-style: none; } |
| 2781 | |
| 2782 | .nav-link { |
| 2783 | display: block; |
00day0 | 354614c | 2019-04-08 12:16:19 +0200 | [diff] [blame] | 2784 | padding: 0.5rem 1rem; |
| 2785 | white-space: nowrap; } |
Unknown | d2db0f1 | 2019-01-10 14:22:00 -0500 | [diff] [blame] | 2786 | .nav-link:hover, .nav-link:focus { |
| 2787 | text-decoration: none; } |
| 2788 | .nav-link.disabled { |
| 2789 | color: #6c757d; } |
| 2790 | |
| 2791 | .nav-tabs { |
| 2792 | border-bottom: 1px solid #0080ff; } |
| 2793 | .nav-tabs .nav-item { |
| 2794 | margin-bottom: -1px; } |
| 2795 | .nav-tabs .nav-link { |
| 2796 | border: 1px solid transparent; |
| 2797 | border-top-left-radius: 0.75rem; |
| 2798 | border-top-right-radius: 0.75rem; } |
| 2799 | .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { |
| 2800 | border-color: transparent; } |
| 2801 | .nav-tabs .nav-link.disabled { |
| 2802 | color: #6c757d; |
| 2803 | background-color: transparent; |
| 2804 | border-color: transparent; } |
| 2805 | .nav-tabs .nav-link.active, |
| 2806 | .nav-tabs .nav-item.show .nav-link { |
| 2807 | color: #303030; |
| 2808 | background-color: #0080ff; |
| 2809 | border-color: #0080ff; } |
| 2810 | .nav-tabs .dropdown-menu { |
| 2811 | margin-top: -1px; |
| 2812 | border-top-left-radius: 0; |
| 2813 | border-top-right-radius: 0; } |
| 2814 | |
| 2815 | .nav-pills .nav-link { |
| 2816 | border-radius: 0.75rem; } |
| 2817 | |
| 2818 | .nav-pills .nav-link.active, |
| 2819 | .nav-pills .show > .nav-link { |
| 2820 | color: #303030; |
| 2821 | background-color: #0080ff; } |
| 2822 | |
| 2823 | .nav-fill .nav-item { |
| 2824 | flex: 1 1 auto; |
| 2825 | text-align: center; } |
| 2826 | |
| 2827 | .nav-justified .nav-item { |
| 2828 | flex-basis: 0; |
| 2829 | flex-grow: 1; |
| 2830 | text-align: center; } |
| 2831 | |
| 2832 | .tab-content > .tab-pane { |
| 2833 | display: none; } |
| 2834 | |
| 2835 | .tab-content > .active { |
| 2836 | display: block; } |
| 2837 | |
| 2838 | .navbar { |
| 2839 | position: relative; |
| 2840 | display: flex; |
| 2841 | flex-wrap: wrap; |
| 2842 | align-items: center; |
| 2843 | justify-content: space-between; |
| 2844 | padding: 0.75rem 1.5rem; } |
| 2845 | .navbar > .container, |
| 2846 | .navbar > .container-fluid { |
| 2847 | display: flex; |
| 2848 | flex-wrap: wrap; |
| 2849 | align-items: center; |
| 2850 | justify-content: space-between; } |
| 2851 | |
| 2852 | .navbar-brand { |
| 2853 | display: inline-block; |
| 2854 | padding-top: 0.30875rem; |
| 2855 | padding-bottom: 0.30875rem; |
| 2856 | margin-right: 1.5rem; |
| 2857 | font-size: 1.0625rem; |
| 2858 | line-height: inherit; |
| 2859 | white-space: nowrap; } |
| 2860 | .navbar-brand:hover, .navbar-brand:focus { |
| 2861 | text-decoration: none; } |
| 2862 | |
| 2863 | .navbar-nav { |
| 2864 | display: flex; |
| 2865 | flex-direction: column; |
| 2866 | padding-left: 0; |
| 2867 | margin-bottom: 0; |
| 2868 | list-style: none; } |
| 2869 | .navbar-nav .nav-link { |
| 2870 | padding-right: 0; |
| 2871 | padding-left: 0; } |
| 2872 | .navbar-nav .dropdown-menu { |
| 2873 | position: static; |
| 2874 | float: none; } |
| 2875 | |
| 2876 | .navbar-text { |
| 2877 | display: inline-block; |
| 2878 | padding-top: 0.5rem; |
| 2879 | padding-bottom: 0.5rem; } |
| 2880 | |
| 2881 | .navbar-collapse { |
| 2882 | flex-basis: 100%; |
| 2883 | flex-grow: 1; |
| 2884 | align-items: center; } |
| 2885 | |
| 2886 | .navbar-toggler { |
| 2887 | padding: 0.25rem 0.75rem; |
| 2888 | font-size: 1.0625rem; |
| 2889 | line-height: 1; |
| 2890 | background-color: transparent; |
| 2891 | border: 1px solid transparent; |
| 2892 | border-radius: 0.75rem; } |
| 2893 | .navbar-toggler:hover, .navbar-toggler:focus { |
| 2894 | text-decoration: none; } |
| 2895 | .navbar-toggler:not(:disabled):not(.disabled) { |
| 2896 | cursor: pointer; } |
| 2897 | |
| 2898 | .navbar-toggler-icon { |
| 2899 | display: inline-block; |
| 2900 | width: 1.5em; |
| 2901 | height: 1.5em; |
| 2902 | vertical-align: middle; |
| 2903 | content: ""; |
| 2904 | background: no-repeat center center; |
| 2905 | background-size: 100% 100%; } |
| 2906 | |
| 2907 | @media (max-width: 575.98px) { |
| 2908 | .navbar-expand-sm > .container, |
| 2909 | .navbar-expand-sm > .container-fluid { |
| 2910 | padding-right: 0; |
| 2911 | padding-left: 0; } } |
| 2912 | |
| 2913 | @media (min-width: 576px) { |
| 2914 | .navbar-expand-sm { |
| 2915 | flex-flow: row nowrap; |
| 2916 | justify-content: flex-start; } |
| 2917 | .navbar-expand-sm .navbar-nav { |
| 2918 | flex-direction: row; } |
| 2919 | .navbar-expand-sm .navbar-nav .dropdown-menu { |
| 2920 | position: absolute; } |
| 2921 | .navbar-expand-sm .navbar-nav .nav-link { |
| 2922 | padding-right: 0.5rem; |
| 2923 | padding-left: 0.5rem; } |
| 2924 | .navbar-expand-sm > .container, |
| 2925 | .navbar-expand-sm > .container-fluid { |
| 2926 | flex-wrap: nowrap; } |
| 2927 | .navbar-expand-sm .navbar-collapse { |
| 2928 | display: flex !important; |
| 2929 | flex-basis: auto; } |
| 2930 | .navbar-expand-sm .navbar-toggler { |
| 2931 | display: none; } } |
| 2932 | |
00day0 | 769a17f | 2019-04-08 12:31:11 +0200 | [diff] [blame] | 2933 | @media (max-width: 867.98px) { |
Unknown | d2db0f1 | 2019-01-10 14:22:00 -0500 | [diff] [blame] | 2934 | .navbar-expand-md > .container, |
| 2935 | .navbar-expand-md > .container-fluid { |
| 2936 | padding-right: 0; |
| 2937 | padding-left: 0; } } |
| 2938 | |
00day0 | 769a17f | 2019-04-08 12:31:11 +0200 | [diff] [blame] | 2939 | @media (min-width: 868px) { |
Unknown | d2db0f1 | 2019-01-10 14:22:00 -0500 | [diff] [blame] | 2940 | .navbar-expand-md { |
| 2941 | flex-flow: row nowrap; |
| 2942 | justify-content: flex-start; } |
| 2943 | .navbar-expand-md .navbar-nav { |
| 2944 | flex-direction: row; } |
| 2945 | .navbar-expand-md .navbar-nav .dropdown-menu { |
| 2946 | position: absolute; } |
| 2947 | .navbar-expand-md .navbar-nav .nav-link { |
| 2948 | padding-right: 0.5rem; |
| 2949 | padding-left: 0.5rem; } |
| 2950 | .navbar-expand-md > .container, |
| 2951 | .navbar-expand-md > .container-fluid { |
| 2952 | flex-wrap: nowrap; } |
| 2953 | .navbar-expand-md .navbar-collapse { |
| 2954 | display: flex !important; |
| 2955 | flex-basis: auto; } |
| 2956 | .navbar-expand-md .navbar-toggler { |
| 2957 | display: none; } } |
| 2958 | |
| 2959 | @media (max-width: 991.98px) { |
| 2960 | .navbar-expand-lg > .container, |
| 2961 | .navbar-expand-lg > .container-fluid { |
| 2962 | padding-right: 0; |
| 2963 | padding-left: 0; } } |
| 2964 | |
| 2965 | @media (min-width: 992px) { |
| 2966 | .navbar-expand-lg { |
| 2967 | flex-flow: row nowrap; |
| 2968 | justify-content: flex-start; } |
| 2969 | .navbar-expand-lg .navbar-nav { |
| 2970 | flex-direction: row; } |
| 2971 | .navbar-expand-lg .navbar-nav .dropdown-menu { |
| 2972 | position: absolute; } |
| 2973 | .navbar-expand-lg .navbar-nav .nav-link { |
| 2974 | padding-right: 0.5rem; |
| 2975 | padding-left: 0.5rem; } |
| 2976 | .navbar-expand-lg > .container, |
| 2977 | .navbar-expand-lg > .container-fluid { |
| 2978 | flex-wrap: nowrap; } |
| 2979 | .navbar-expand-lg .navbar-collapse { |
| 2980 | display: flex !important; |
| 2981 | flex-basis: auto; } |
| 2982 | .navbar-expand-lg .navbar-toggler { |
| 2983 | display: none; } } |
| 2984 | |
| 2985 | @media (max-width: 1199.98px) { |
| 2986 | .navbar-expand-xl > .container, |
| 2987 | .navbar-expand-xl > .container-fluid { |
| 2988 | padding-right: 0; |
| 2989 | padding-left: 0; } } |
| 2990 | |
| 2991 | @media (min-width: 1200px) { |
| 2992 | .navbar-expand-xl { |
| 2993 | flex-flow: row nowrap; |
| 2994 | justify-content: flex-start; } |
| 2995 | .navbar-expand-xl .navbar-nav { |
| 2996 | flex-direction: row; } |
| 2997 | .navbar-expand-xl .navbar-nav .dropdown-menu { |
| 2998 | position: absolute; } |
| 2999 | .navbar-expand-xl .navbar-nav .nav-link { |
| 3000 | padding-right: 0.5rem; |
| 3001 | padding-left: 0.5rem; } |
| 3002 | .navbar-expand-xl > .container, |
| 3003 | .navbar-expand-xl > .container-fluid { |
| 3004 | flex-wrap: nowrap; } |
| 3005 | .navbar-expand-xl .navbar-collapse { |
| 3006 | display: flex !important; |
| 3007 | flex-basis: auto; } |
| 3008 | .navbar-expand-xl .navbar-toggler { |
| 3009 | display: none; } } |
| 3010 | |
| 3011 | .navbar-expand { |
| 3012 | flex-flow: row nowrap; |
| 3013 | justify-content: flex-start; } |
| 3014 | .navbar-expand > .container, |
| 3015 | .navbar-expand > .container-fluid { |
| 3016 | padding-right: 0; |
| 3017 | padding-left: 0; } |
| 3018 | .navbar-expand .navbar-nav { |
| 3019 | flex-direction: row; } |
| 3020 | .navbar-expand .navbar-nav .dropdown-menu { |
| 3021 | position: absolute; } |
| 3022 | .navbar-expand .navbar-nav .nav-link { |
| 3023 | padding-right: 0.5rem; |
| 3024 | padding-left: 0.5rem; } |
| 3025 | .navbar-expand > .container, |
| 3026 | .navbar-expand > .container-fluid { |
| 3027 | flex-wrap: nowrap; } |
| 3028 | .navbar-expand .navbar-collapse { |
| 3029 | display: flex !important; |
| 3030 | flex-basis: auto; } |
| 3031 | .navbar-expand .navbar-toggler { |
| 3032 | display: none; } |
| 3033 | |
| 3034 | .navbar-light .navbar-brand { |
| 3035 | color: rgba(0, 0, 0, 0.9); } |
| 3036 | .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { |
| 3037 | color: rgba(0, 0, 0, 0.9); } |
| 3038 | |
| 3039 | .navbar-light .navbar-nav .nav-link { |
| 3040 | color: rgba(0, 0, 0, 0.6); } |
| 3041 | .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { |
| 3042 | color: rgba(0, 0, 0, 0.7); } |
| 3043 | .navbar-light .navbar-nav .nav-link.disabled { |
| 3044 | color: rgba(0, 0, 0, 0.3); } |
| 3045 | |
| 3046 | .navbar-light .navbar-nav .show > .nav-link, |
| 3047 | .navbar-light .navbar-nav .active > .nav-link, |
| 3048 | .navbar-light .navbar-nav .nav-link.show, |
| 3049 | .navbar-light .navbar-nav .nav-link.active { |
| 3050 | color: rgba(0, 0, 0, 0.9); } |
| 3051 | |
| 3052 | .navbar-light .navbar-toggler { |
| 3053 | color: rgba(0, 0, 0, 0.6); |
| 3054 | border-color: rgba(0, 0, 0, 0.1); } |
| 3055 | |
| 3056 | .navbar-light .navbar-toggler-icon { |
| 3057 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.6)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); } |
| 3058 | |
| 3059 | .navbar-light .navbar-text { |
| 3060 | color: rgba(0, 0, 0, 0.6); } |
| 3061 | .navbar-light .navbar-text a { |
| 3062 | color: rgba(0, 0, 0, 0.9); } |
| 3063 | .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { |
| 3064 | color: rgba(0, 0, 0, 0.9); } |
| 3065 | |
| 3066 | .navbar-dark .navbar-brand { |
| 3067 | color: #fff; } |
| 3068 | .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { |
| 3069 | color: #fff; } |
| 3070 | |
| 3071 | .navbar-dark .navbar-nav .nav-link { |
Stefan Ivic | ff54ece | 2019-08-31 14:49:48 +0200 | [diff] [blame] | 3072 | color: rgba(255, 255, 255, 1); } |
Unknown | d2db0f1 | 2019-01-10 14:22:00 -0500 | [diff] [blame] | 3073 | .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { |
Stefan Ivic | ff54ece | 2019-08-31 14:49:48 +0200 | [diff] [blame] | 3074 | color: rgba(255, 255, 255, 1); } |
Unknown | d2db0f1 | 2019-01-10 14:22:00 -0500 | [diff] [blame] | 3075 | .navbar-dark .navbar-nav .nav-link.disabled { |
| 3076 | color: rgba(255, 255, 255, 0.25); } |
| 3077 | |
| 3078 | .navbar-dark .navbar-nav .show > .nav-link, |
| 3079 | .navbar-dark .navbar-nav .active > .nav-link, |
| 3080 | .navbar-dark .navbar-nav .nav-link.show, |
| 3081 | .navbar-dark .navbar-nav .nav-link.active { |
| 3082 | color: #fff; } |
| 3083 | |
| 3084 | .navbar-dark .navbar-toggler { |
| 3085 | color: rgba(255, 255, 255, 0.5); |
| 3086 | border-color: rgba(255, 255, 255, 0.1); } |
| 3087 | |
| 3088 | .navbar-dark .navbar-toggler-icon { |
| 3089 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); } |
| 3090 | |
| 3091 | .navbar-dark .navbar-text { |
| 3092 | color: rgba(255, 255, 255, 0.5); } |
| 3093 | .navbar-dark .navbar-text a { |
| 3094 | color: #fff; } |
| 3095 | .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { |
| 3096 | color: #fff; } |
| 3097 | |
| 3098 | .card { |
| 3099 | position: relative; |
| 3100 | display: flex; |
| 3101 | flex-direction: column; |
| 3102 | min-width: 0; |
| 3103 | word-wrap: break-word; |
| 3104 | background-color: rgba(51, 51, 51, 0.5); |
| 3105 | background-clip: border-box; |
| 3106 | border: 0px solid rgba(0, 0, 0, 0.125); |
| 3107 | border-radius: 0.75rem; } |
| 3108 | .card > hr { |
| 3109 | margin-right: 0; |
| 3110 | margin-left: 0; } |
| 3111 | .card > .list-group:first-child .list-group-item:first-child { |
| 3112 | border-top-left-radius: 0.75rem; |
| 3113 | border-top-right-radius: 0.75rem; } |
| 3114 | .card > .list-group:last-child .list-group-item:last-child { |
| 3115 | border-bottom-right-radius: 0.75rem; |
| 3116 | border-bottom-left-radius: 0.75rem; } |
| 3117 | |
| 3118 | .card-body { |
| 3119 | flex: 1 1 auto; |
| 3120 | padding: 1.25rem; } |
| 3121 | |
| 3122 | .card-title { |
| 3123 | margin-bottom: 0.75rem; } |
| 3124 | |
| 3125 | .card-subtitle { |
| 3126 | margin-top: -0.375rem; |
| 3127 | margin-bottom: 0; } |
| 3128 | |
| 3129 | .card-text:last-child { |
| 3130 | margin-bottom: 0; } |
| 3131 | |
| 3132 | .card-link:hover { |
| 3133 | text-decoration: none; } |
| 3134 | |
| 3135 | .card-link + .card-link { |
| 3136 | margin-left: 1.25rem; } |
| 3137 | |
| 3138 | .card-header { |
| 3139 | padding: 0.75rem 1.25rem; |
| 3140 | margin-bottom: 0; |
| 3141 | background-color: rgba(0, 0, 0, 0.03); |
| 3142 | border-bottom: 0px solid rgba(0, 0, 0, 0.125); } |
| 3143 | .card-header:first-child { |
| 3144 | border-radius: calc(0.75rem - 0px) calc(0.75rem - 0px) 0 0; } |
| 3145 | .card-header + .list-group .list-group-item:first-child { |
| 3146 | border-top: 0; } |
| 3147 | |
| 3148 | .card-footer { |
| 3149 | padding: 0.75rem 1.25rem; |
| 3150 | background-color: rgba(0, 0, 0, 0.03); |
| 3151 | border-top: 0px solid rgba(0, 0, 0, 0.125); } |
| 3152 | .card-footer:last-child { |
| 3153 | border-radius: 0 0 calc(0.75rem - 0px) calc(0.75rem - 0px); } |
| 3154 | |
| 3155 | .card-header-tabs { |
| 3156 | margin-right: -0.625rem; |
| 3157 | margin-bottom: -0.75rem; |
| 3158 | margin-left: -0.625rem; |
| 3159 | border-bottom: 0; } |
| 3160 | |
| 3161 | .card-header-pills { |
| 3162 | margin-right: -0.625rem; |
| 3163 | margin-left: -0.625rem; } |
| 3164 | |
| 3165 | .card-img-overlay { |
| 3166 | position: absolute; |
| 3167 | top: 0; |
| 3168 | right: 0; |
| 3169 | bottom: 0; |
| 3170 | left: 0; |
| 3171 | padding: 1.25rem; } |
| 3172 | |
| 3173 | .card-img { |
| 3174 | width: 100%; |
| 3175 | border-radius: calc(0.75rem - 0px); } |
| 3176 | |
| 3177 | .card-img-top { |
| 3178 | width: 100%; |
| 3179 | border-top-left-radius: calc(0.75rem - 0px); |
| 3180 | border-top-right-radius: calc(0.75rem - 0px); } |
| 3181 | |
| 3182 | .card-img-bottom { |
| 3183 | width: 100%; |
| 3184 | border-bottom-right-radius: calc(0.75rem - 0px); |
| 3185 | border-bottom-left-radius: calc(0.75rem - 0px); } |
| 3186 | |
| 3187 | .card-deck { |
| 3188 | display: flex; |
| 3189 | flex-direction: column; } |
| 3190 | .card-deck .card { |
| 3191 | margin-bottom: 15px; } |
| 3192 | @media (min-width: 576px) { |
| 3193 | .card-deck { |
| 3194 | flex-flow: row wrap; |
| 3195 | margin-right: -15px; |
| 3196 | margin-left: -15px; } |
| 3197 | .card-deck .card { |
| 3198 | display: flex; |
| 3199 | flex: 1 0 0%; |
| 3200 | flex-direction: column; |
| 3201 | margin-right: 15px; |
| 3202 | margin-bottom: 0; |
| 3203 | margin-left: 15px; } } |
| 3204 | |
| 3205 | .card-group { |
| 3206 | display: flex; |
| 3207 | flex-direction: column; } |
| 3208 | .card-group > .card { |
| 3209 | margin-bottom: 15px; } |
| 3210 | @media (min-width: 576px) { |
| 3211 | .card-group { |
| 3212 | flex-flow: row wrap; } |
| 3213 | .card-group > .card { |
| 3214 | flex: 1 0 0%; |
| 3215 | margin-bottom: 0; } |
| 3216 | .card-group > .card + .card { |
| 3217 | margin-left: 0; |
| 3218 | border-left: 0; } |
| 3219 | .card-group > .card:first-child { |
| 3220 | border-top-right-radius: 0; |
| 3221 | border-bottom-right-radius: 0; } |
| 3222 | .card-group > .card:first-child .card-img-top, |
| 3223 | .card-group > .card:first-child .card-header { |
| 3224 | border-top-right-radius: 0; } |
| 3225 | .card-group > .card:first-child .card-img-bottom, |
| 3226 | .card-group > .card:first-child .card-footer { |
| 3227 | border-bottom-right-radius: 0; } |
| 3228 | .card-group > .card:last-child { |
| 3229 | border-top-left-radius: 0; |
| 3230 | border-bottom-left-radius: 0; } |
| 3231 | .card-group > .card:last-child .card-img-top, |
| 3232 | .card-group > .card:last-child .card-header { |
| 3233 | border-top-left-radius: 0; } |
| 3234 | .card-group > .card:last-child .card-img-bottom, |
| 3235 | .card-group > .card:last-child .card-footer { |
| 3236 | border-bottom-left-radius: 0; } |
| 3237 | .card-group > .card:only-child { |
| 3238 | border-radius: 0.75rem; } |
| 3239 | .card-group > .card:only-child .card-img-top, |
| 3240 | .card-group > .card:only-child .card-header { |
| 3241 | border-top-left-radius: 0.75rem; |
| 3242 | border-top-right-radius: 0.75rem; } |
| 3243 | .card-group > .card:only-child .card-img-bottom, |
| 3244 | .card-group > .card:only-child .card-footer { |
| 3245 | border-bottom-right-radius: 0.75rem; |
| 3246 | border-bottom-left-radius: 0.75rem; } |
| 3247 | .card-group > .card:not(:first-child):not(:last-child):not(:only-child) { |
| 3248 | border-radius: 0; } |
| 3249 | .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top, |
| 3250 | .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom, |
| 3251 | .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header, |
| 3252 | .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer { |
| 3253 | border-radius: 0; } } |
| 3254 | |
| 3255 | .card-columns .card { |
| 3256 | margin-bottom: 0.75rem; } |
| 3257 | |
| 3258 | @media (min-width: 576px) { |
| 3259 | .card-columns { |
| 3260 | -webkit-column-count: 3; |
| 3261 | column-count: 3; |
| 3262 | -webkit-column-gap: 1.25rem; |
| 3263 | column-gap: 1.25rem; |
| 3264 | orphans: 1; |
| 3265 | widows: 1; } |
| 3266 | .card-columns .card { |
| 3267 | display: inline-block; |
| 3268 | width: 100%; } } |
| 3269 | |
| 3270 | .accordion .card:not(:first-of-type):not(:last-of-type) { |
| 3271 | border-bottom: 0; |
| 3272 | border-radius: 0; } |
| 3273 | |
| 3274 | .accordion .card:not(:first-of-type) .card-header:first-child { |
| 3275 | border-radius: 0; } |
| 3276 | |
| 3277 | .accordion .card:first-of-type { |
| 3278 | border-bottom: 0; |
| 3279 | border-bottom-right-radius: 0; |
| 3280 | border-bottom-left-radius: 0; } |
| 3281 | |
| 3282 | .accordion .card:last-of-type { |
| 3283 | border-top-left-radius: 0; |
| 3284 | border-top-right-radius: 0; } |
| 3285 | |
| 3286 | .breadcrumb { |
| 3287 | display: flex; |
| 3288 | flex-wrap: wrap; |
| 3289 | padding: 0.75rem 1rem; |
| 3290 | margin-bottom: 1rem; |
| 3291 | list-style: none; |
| 3292 | background-color: transparent; |
| 3293 | border-radius: 0.75rem; } |
| 3294 | |
| 3295 | .breadcrumb-item + .breadcrumb-item { |
| 3296 | padding-left: 0.5rem; } |
| 3297 | .breadcrumb-item + .breadcrumb-item::before { |
| 3298 | display: inline-block; |
| 3299 | padding-right: 0.5rem; |
| 3300 | color: #6c757d; |
| 3301 | content: "/"; } |
| 3302 | |
| 3303 | .breadcrumb-item + .breadcrumb-item:hover::before { |
| 3304 | text-decoration: underline; } |
| 3305 | |
| 3306 | .breadcrumb-item + .breadcrumb-item:hover::before { |
| 3307 | text-decoration: none; } |
| 3308 | |
| 3309 | .breadcrumb-item.active { |
| 3310 | color: #f3f3f3; } |
| 3311 | |
| 3312 | .pagination { |
| 3313 | display: flex; |
| 3314 | padding-left: 0; |
| 3315 | list-style: none; |
| 3316 | border-radius: 0.75rem; } |
| 3317 | |
| 3318 | .page-link { |
| 3319 | position: relative; |
| 3320 | display: block; |
| 3321 | padding: 0.5rem 0.75rem; |
| 3322 | margin-left: -1px; |
| 3323 | line-height: 1.25; |
| 3324 | color: #0080ff; |
| 3325 | background-color: #111; |
| 3326 | border: 1px solid #303030; } |
| 3327 | .page-link:hover { |
| 3328 | z-index: 2; |
| 3329 | color: white; |
| 3330 | text-decoration: none; |
| 3331 | background-color: #111; |
| 3332 | border-color: #303030; } |
| 3333 | .page-link:focus { |
| 3334 | z-index: 2; |
| 3335 | outline: 0; |
| 3336 | box-shadow: 0 0 0 0.2rem rgba(0, 128, 255, 0.25); } |
| 3337 | .page-link:not(:disabled):not(.disabled) { |
| 3338 | cursor: pointer; } |
| 3339 | |
| 3340 | .page-item:first-child .page-link { |
| 3341 | margin-left: 0; |
| 3342 | border-top-left-radius: 0.75rem; |
| 3343 | border-bottom-left-radius: 0.75rem; } |
| 3344 | |
| 3345 | .page-item:last-child .page-link { |
| 3346 | border-top-right-radius: 0.75rem; |
| 3347 | border-bottom-right-radius: 0.75rem; } |
| 3348 | |
| 3349 | .page-item.active .page-link { |
| 3350 | z-index: 1; |
| 3351 | color: #303030; |
| 3352 | background-color: #0080ff; |
| 3353 | border-color: #303030; } |
| 3354 | |
| 3355 | .page-item.disabled .page-link { |
| 3356 | color: #6c757d; |
| 3357 | pointer-events: none; |
| 3358 | cursor: auto; |
| 3359 | background-color: #fff; |
| 3360 | border-color: #dee2e6; } |
| 3361 | |
| 3362 | .pagination-lg .page-link { |
| 3363 | padding: 0.75rem 1.5rem; |
| 3364 | font-size: 1.0625rem; |
| 3365 | line-height: 1.5; } |
| 3366 | |
| 3367 | .pagination-lg .page-item:first-child .page-link { |
| 3368 | border-top-left-radius: 0.9rem; |
| 3369 | border-bottom-left-radius: 0.9rem; } |
| 3370 | |
| 3371 | .pagination-lg .page-item:last-child .page-link { |
| 3372 | border-top-right-radius: 0.9rem; |
| 3373 | border-bottom-right-radius: 0.9rem; } |
| 3374 | |
| 3375 | .pagination-sm .page-link { |
| 3376 | padding: 0.25rem 0.5rem; |
| 3377 | font-size: 0.74375rem; |
| 3378 | line-height: 1.5; } |
| 3379 | |
| 3380 | .pagination-sm .page-item:first-child .page-link { |
| 3381 | border-top-left-radius: 0.3rem; |
| 3382 | border-bottom-left-radius: 0.3rem; } |
| 3383 | |
| 3384 | .pagination-sm .page-item:last-child .page-link { |
| 3385 | border-top-right-radius: 0.3rem; |
| 3386 | border-bottom-right-radius: 0.3rem; } |
| 3387 | |
| 3388 | .badge { |
| 3389 | display: inline-block; |
| 3390 | padding: 0.25em 0.4em; |
| 3391 | font-size: 75%; |
| 3392 | font-weight: 700; |
| 3393 | line-height: 1; |
| 3394 | text-align: center; |
| 3395 | white-space: nowrap; |
| 3396 | vertical-align: baseline; |
| 3397 | border-radius: 0.75rem; } |
| 3398 | .badge:empty { |
| 3399 | display: none; } |
| 3400 | |
| 3401 | .btn .badge { |
| 3402 | position: relative; |
| 3403 | top: -1px; } |
| 3404 | |
| 3405 | .badge-pill { |
| 3406 | padding-right: 0.6em; |
| 3407 | padding-left: 0.6em; |
| 3408 | border-radius: 10rem; } |
| 3409 | |
| 3410 | .badge-primary { |
| 3411 | color: #fff; |
| 3412 | background-color: #0080ff; } |
| 3413 | .badge-primary[href]:hover, .badge-primary[href]:focus { |
| 3414 | color: #fff; |
| 3415 | text-decoration: none; |
| 3416 | background-color: #0066cc; } |
| 3417 | |
| 3418 | .badge-secondary { |
| 3419 | color: #fff; |
| 3420 | background-color: #0060aa; } |
| 3421 | .badge-secondary[href]:hover, .badge-secondary[href]:focus { |
| 3422 | color: #fff; |
| 3423 | text-decoration: none; |
| 3424 | background-color: #004377; } |
| 3425 | |
| 3426 | .badge-success { |
| 3427 | color: #fff; |
| 3428 | background-color: #28a745; } |
| 3429 | .badge-success[href]:hover, .badge-success[href]:focus { |
| 3430 | color: #fff; |
| 3431 | text-decoration: none; |
| 3432 | background-color: #1e7e34; } |
| 3433 | |
| 3434 | .badge-info { |
| 3435 | color: #fff; |
| 3436 | background-color: #00aaff; } |
| 3437 | .badge-info[href]:hover, .badge-info[href]:focus { |
| 3438 | color: #fff; |
| 3439 | text-decoration: none; |
| 3440 | background-color: #0088cc; } |
| 3441 | |
| 3442 | .badge-warning { |
| 3443 | color: #212529; |
| 3444 | background-color: #ffc107; } |
| 3445 | .badge-warning[href]:hover, .badge-warning[href]:focus { |
| 3446 | color: #212529; |
| 3447 | text-decoration: none; |
| 3448 | background-color: #d39e00; } |
| 3449 | |
| 3450 | .badge-danger { |
| 3451 | color: #fff; |
| 3452 | background-color: #dc3545; } |
| 3453 | .badge-danger[href]:hover, .badge-danger[href]:focus { |
| 3454 | color: #fff; |
| 3455 | text-decoration: none; |
| 3456 | background-color: #bd2130; } |
| 3457 | |
| 3458 | .badge-light { |
| 3459 | color: #212529; |
| 3460 | background-color: #f3f3f3; } |
| 3461 | .badge-light[href]:hover, .badge-light[href]:focus { |
| 3462 | color: #212529; |
| 3463 | text-decoration: none; |
| 3464 | background-color: #dadada; } |
| 3465 | |
| 3466 | .badge-dark { |
| 3467 | color: #fff; |
| 3468 | background-color: #303030; } |
| 3469 | .badge-dark[href]:hover, .badge-dark[href]:focus { |
| 3470 | color: #fff; |
| 3471 | text-decoration: none; |
| 3472 | background-color: #171717; } |
| 3473 | |
| 3474 | .jumbotron { |
| 3475 | padding: 2rem 1rem; |
| 3476 | margin-bottom: 2rem; |
| 3477 | background-color: #e9ecef; |
| 3478 | border-radius: 0.9rem; } |
| 3479 | @media (min-width: 576px) { |
| 3480 | .jumbotron { |
| 3481 | padding: 4rem 2rem; } } |
| 3482 | |
| 3483 | .jumbotron-fluid { |
| 3484 | padding-right: 0; |
| 3485 | padding-left: 0; |
| 3486 | border-radius: 0; } |
| 3487 | |
| 3488 | .alert { |
| 3489 | position: relative; |
| 3490 | padding: 0.75rem 1.25rem; |
| 3491 | margin-bottom: 1rem; |
| 3492 | border: 1px solid transparent; |
| 3493 | border-radius: 0.75rem; } |
| 3494 | |
| 3495 | .alert-heading { |
| 3496 | color: inherit; } |
| 3497 | |
| 3498 | .alert-link { |
| 3499 | font-weight: 700; } |
| 3500 | |
| 3501 | .alert-dismissible { |
| 3502 | padding-right: 3.775rem; } |
| 3503 | .alert-dismissible .close { |
| 3504 | position: absolute; |
| 3505 | top: 0; |
| 3506 | right: 0; |
| 3507 | padding: 0.75rem 1.25rem; |
| 3508 | color: inherit; } |
| 3509 | |
| 3510 | .alert-primary { |
| 3511 | color: #004385; |
| 3512 | background-color: #cce6ff; |
| 3513 | border-color: #b8dbff; } |
| 3514 | .alert-primary hr { |
| 3515 | border-top-color: #9fceff; } |
| 3516 | .alert-primary .alert-link { |
| 3517 | color: #002952; } |
| 3518 | |
| 3519 | .alert-secondary { |
| 3520 | color: #003258; |
| 3521 | background-color: #ccdfee; |
| 3522 | border-color: #b8d2e7; } |
| 3523 | .alert-secondary hr { |
| 3524 | border-top-color: #a5c6e1; } |
| 3525 | .alert-secondary .alert-link { |
| 3526 | color: #001525; } |
| 3527 | |
| 3528 | .alert-success { |
| 3529 | color: #155724; |
| 3530 | background-color: #d4edda; |
| 3531 | border-color: #c3e6cb; } |
| 3532 | .alert-success hr { |
| 3533 | border-top-color: #b1dfbb; } |
| 3534 | .alert-success .alert-link { |
| 3535 | color: #0b2e13; } |
| 3536 | |
| 3537 | .alert-info { |
| 3538 | color: #005885; |
| 3539 | background-color: #cceeff; |
| 3540 | border-color: #b8e7ff; } |
| 3541 | .alert-info hr { |
| 3542 | border-top-color: #9fdeff; } |
| 3543 | .alert-info .alert-link { |
| 3544 | color: #003652; } |
| 3545 | |
| 3546 | .alert-warning { |
| 3547 | color: #856404; |
| 3548 | background-color: #fff3cd; |
| 3549 | border-color: #ffeeba; } |
| 3550 | .alert-warning hr { |
| 3551 | border-top-color: #ffe8a1; } |
| 3552 | .alert-warning .alert-link { |
| 3553 | color: #533f03; } |
| 3554 | |
| 3555 | .alert-danger { |
| 3556 | color: #721c24; |
| 3557 | background-color: #f8d7da; |
| 3558 | border-color: #f5c6cb; } |
| 3559 | .alert-danger hr { |
| 3560 | border-top-color: #f1b0b7; } |
| 3561 | .alert-danger .alert-link { |
| 3562 | color: #491217; } |
| 3563 | |
| 3564 | .alert-light { |
| 3565 | color: #7e7e7e; |
| 3566 | background-color: #fdfdfd; |
| 3567 | border-color: #fcfcfc; } |
| 3568 | .alert-light hr { |
| 3569 | border-top-color: #efefef; } |
| 3570 | .alert-light .alert-link { |
| 3571 | color: #656565; } |
| 3572 | |
| 3573 | .alert-dark { |
| 3574 | color: #191919; |
| 3575 | background-color: #d6d6d6; |
| 3576 | border-color: #c5c5c5; } |
| 3577 | .alert-dark hr { |
| 3578 | border-top-color: #b8b8b8; } |
| 3579 | .alert-dark .alert-link { |
| 3580 | color: black; } |
| 3581 | |
| 3582 | @-webkit-keyframes progress-bar-stripes { |
| 3583 | from { |
| 3584 | background-position: 1rem 0; } |
| 3585 | to { |
| 3586 | background-position: 0 0; } } |
| 3587 | |
| 3588 | @keyframes progress-bar-stripes { |
| 3589 | from { |
| 3590 | background-position: 1rem 0; } |
| 3591 | to { |
| 3592 | background-position: 0 0; } } |
| 3593 | |
| 3594 | .progress { |
| 3595 | display: flex; |
| 3596 | height: 1rem; |
| 3597 | overflow: hidden; |
| 3598 | font-size: 0.6375rem; |
| 3599 | background-color: #e9ecef; |
| 3600 | border-radius: 0.75rem; } |
| 3601 | |
| 3602 | .progress-bar { |
| 3603 | display: flex; |
| 3604 | flex-direction: column; |
| 3605 | justify-content: center; |
| 3606 | color: #fff; |
| 3607 | text-align: center; |
| 3608 | white-space: nowrap; |
| 3609 | background-color: #0080ff; |
| 3610 | transition: width 0.6s ease; } |
| 3611 | @media screen and (prefers-reduced-motion: reduce) { |
| 3612 | .progress-bar { |
| 3613 | transition: none; } } |
| 3614 | |
| 3615 | .progress-bar-striped { |
| 3616 | background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); |
| 3617 | background-size: 1rem 1rem; } |
| 3618 | |
| 3619 | .progress-bar-animated { |
| 3620 | -webkit-animation: progress-bar-stripes 1s linear infinite; |
| 3621 | animation: progress-bar-stripes 1s linear infinite; } |
| 3622 | |
| 3623 | .media { |
| 3624 | display: flex; |
| 3625 | align-items: flex-start; } |
| 3626 | |
| 3627 | .media-body { |
| 3628 | flex: 1; } |
| 3629 | |
| 3630 | .list-group { |
| 3631 | display: flex; |
| 3632 | flex-direction: column; |
| 3633 | padding-left: 0; |
| 3634 | margin-bottom: 0; } |
| 3635 | |
| 3636 | .list-group-item-action { |
| 3637 | width: 100%; |
| 3638 | color: #0080ff; |
| 3639 | text-align: inherit; } |
| 3640 | .list-group-item-action:hover, .list-group-item-action:focus { |
| 3641 | color: #f3f3f3; |
| 3642 | text-decoration: none; |
| 3643 | background-color: #111; } |
| 3644 | .list-group-item-action:active { |
| 3645 | color: #efefef; |
| 3646 | background-color: transparent; } |
| 3647 | |
| 3648 | .list-group-item { |
| 3649 | position: relative; |
| 3650 | display: block; |
| 3651 | padding: 0.75rem 1.25rem; |
| 3652 | margin-bottom: -1px; |
| 3653 | background-color: #111; |
| 3654 | border: 1px solid #303030; } |
| 3655 | .list-group-item:first-child { |
| 3656 | border-top-left-radius: 0.75rem; |
| 3657 | border-top-right-radius: 0.75rem; } |
| 3658 | .list-group-item:last-child { |
| 3659 | margin-bottom: 0; |
| 3660 | border-bottom-right-radius: 0.75rem; |
| 3661 | border-bottom-left-radius: 0.75rem; } |
| 3662 | .list-group-item:hover, .list-group-item:focus { |
| 3663 | z-index: 1; |
| 3664 | text-decoration: none; } |
| 3665 | .list-group-item.disabled, .list-group-item:disabled { |
| 3666 | color: #6c757d; |
| 3667 | background-color: #111; } |
| 3668 | .list-group-item.active { |
| 3669 | z-index: 2; |
| 3670 | color: #303030; |
| 3671 | background-color: #0080ff; |
| 3672 | border-color: #303030; } |
| 3673 | |
| 3674 | .list-group-flush .list-group-item { |
| 3675 | border-right: 0; |
| 3676 | border-left: 0; |
| 3677 | border-radius: 0; } |
| 3678 | |
| 3679 | .list-group-flush:first-child .list-group-item:first-child { |
| 3680 | border-top: 0; } |
| 3681 | |
| 3682 | .list-group-flush:last-child .list-group-item:last-child { |
| 3683 | border-bottom: 0; } |
| 3684 | |
| 3685 | .list-group-item-primary { |
| 3686 | color: #004385; |
| 3687 | background-color: #b8dbff; } |
| 3688 | .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { |
| 3689 | color: #004385; |
| 3690 | background-color: #9fceff; } |
| 3691 | .list-group-item-primary.list-group-item-action.active { |
| 3692 | color: #fff; |
| 3693 | background-color: #004385; |
| 3694 | border-color: #004385; } |
| 3695 | |
| 3696 | .list-group-item-secondary { |
| 3697 | color: #003258; |
| 3698 | background-color: #b8d2e7; } |
| 3699 | .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { |
| 3700 | color: #003258; |
| 3701 | background-color: #a5c6e1; } |
| 3702 | .list-group-item-secondary.list-group-item-action.active { |
| 3703 | color: #fff; |
| 3704 | background-color: #003258; |
| 3705 | border-color: #003258; } |
| 3706 | |
| 3707 | .list-group-item-success { |
| 3708 | color: #155724; |
| 3709 | background-color: #c3e6cb; } |
| 3710 | .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { |
| 3711 | color: #155724; |
| 3712 | background-color: #b1dfbb; } |
| 3713 | .list-group-item-success.list-group-item-action.active { |
| 3714 | color: #fff; |
| 3715 | background-color: #155724; |
| 3716 | border-color: #155724; } |
| 3717 | |
| 3718 | .list-group-item-info { |
| 3719 | color: #005885; |
| 3720 | background-color: #b8e7ff; } |
| 3721 | .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { |
| 3722 | color: #005885; |
| 3723 | background-color: #9fdeff; } |
| 3724 | .list-group-item-info.list-group-item-action.active { |
| 3725 | color: #fff; |
| 3726 | background-color: #005885; |
| 3727 | border-color: #005885; } |
| 3728 | |
| 3729 | .list-group-item-warning { |
| 3730 | color: #856404; |
| 3731 | background-color: #ffeeba; } |
| 3732 | .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { |
| 3733 | color: #856404; |
| 3734 | background-color: #ffe8a1; } |
| 3735 | .list-group-item-warning.list-group-item-action.active { |
| 3736 | color: #fff; |
| 3737 | background-color: #856404; |
| 3738 | border-color: #856404; } |
| 3739 | |
| 3740 | .list-group-item-danger { |
| 3741 | color: #721c24; |
| 3742 | background-color: #f5c6cb; } |
| 3743 | .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { |
| 3744 | color: #721c24; |
| 3745 | background-color: #f1b0b7; } |
| 3746 | .list-group-item-danger.list-group-item-action.active { |
| 3747 | color: #fff; |
| 3748 | background-color: #721c24; |
| 3749 | border-color: #721c24; } |
| 3750 | |
| 3751 | .list-group-item-light { |
| 3752 | color: #7e7e7e; |
| 3753 | background-color: #fcfcfc; } |
| 3754 | .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { |
| 3755 | color: #7e7e7e; |
| 3756 | background-color: #efefef; } |
| 3757 | .list-group-item-light.list-group-item-action.active { |
| 3758 | color: #fff; |
| 3759 | background-color: #7e7e7e; |
| 3760 | border-color: #7e7e7e; } |
| 3761 | |
| 3762 | .list-group-item-dark { |
| 3763 | color: #191919; |
| 3764 | background-color: #c5c5c5; } |
| 3765 | .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { |
| 3766 | color: #191919; |
| 3767 | background-color: #b8b8b8; } |
| 3768 | .list-group-item-dark.list-group-item-action.active { |
| 3769 | color: #fff; |
| 3770 | background-color: #191919; |
| 3771 | border-color: #191919; } |
| 3772 | |
| 3773 | .close { |
| 3774 | float: right; |
| 3775 | font-size: 1.275rem; |
| 3776 | font-weight: 700; |
| 3777 | line-height: 1; |
| 3778 | color: #000; |
| 3779 | text-shadow: 0 1px 0 #fff; |
| 3780 | opacity: .5; } |
| 3781 | .close:not(:disabled):not(.disabled) { |
| 3782 | cursor: pointer; } |
| 3783 | .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus { |
| 3784 | color: #000; |
| 3785 | text-decoration: none; |
| 3786 | opacity: .75; } |
| 3787 | |
| 3788 | button.close { |
| 3789 | padding: 0; |
| 3790 | background-color: transparent; |
| 3791 | border: 0; |
| 3792 | -webkit-appearance: none; } |
| 3793 | |
| 3794 | .modal-open { |
| 3795 | overflow: hidden; } |
| 3796 | .modal-open .modal { |
| 3797 | overflow-x: hidden; |
| 3798 | overflow-y: auto; } |
| 3799 | |
| 3800 | .modal { |
| 3801 | position: fixed; |
| 3802 | top: 20%; |
| 3803 | right: 0; |
| 3804 | bottom: 0; |
| 3805 | left: 0; |
| 3806 | z-index: 1050; |
| 3807 | display: none; |
| 3808 | overflow: hidden; |
| 3809 | outline: 0; } |
| 3810 | |
| 3811 | .modal-dialog { |
| 3812 | position: relative; |
| 3813 | width: auto; |
| 3814 | margin: 0.5rem; |
| 3815 | pointer-events: none; } |
| 3816 | .modal.fade .modal-dialog { |
| 3817 | transition: -webkit-transform 0.3s ease-out; |
| 3818 | transition: transform 0.3s ease-out; |
| 3819 | transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; |
| 3820 | -webkit-transform: translate(0, -25%); |
| 3821 | transform: translate(0, -25%); } |
| 3822 | @media screen and (prefers-reduced-motion: reduce) { |
| 3823 | .modal.fade .modal-dialog { |
| 3824 | transition: none; } } |
| 3825 | .modal.show .modal-dialog { |
| 3826 | -webkit-transform: translate(0, 0); |
| 3827 | transform: translate(0, 0); } |
| 3828 | |
| 3829 | .modal-dialog-centered { |
| 3830 | display: flex; |
| 3831 | align-items: center; |
| 3832 | min-height: calc(100% - (0.5rem * 2)); } |
| 3833 | .modal-dialog-centered::before { |
| 3834 | display: block; |
| 3835 | height: calc(100vh - (0.5rem * 2)); |
| 3836 | content: ""; } |
| 3837 | |
| 3838 | .modal-content { |
| 3839 | position: relative; |
| 3840 | display: flex; |
| 3841 | flex-direction: column; |
| 3842 | width: 100%; |
| 3843 | pointer-events: auto; |
| 3844 | background-color: #fff; |
| 3845 | background-clip: padding-box; |
| 3846 | border: 1px solid rgba(0, 0, 0, 0.2); |
| 3847 | border-radius: 0.9rem; |
| 3848 | outline: 0; } |
| 3849 | |
| 3850 | .modal-backdrop { |
| 3851 | position: fixed; |
| 3852 | top: 0; |
| 3853 | right: 0; |
| 3854 | bottom: 0; |
| 3855 | left: 0; |
| 3856 | z-index: 1040; |
| 3857 | background-color: #000; } |
| 3858 | .modal-backdrop.fade { |
| 3859 | opacity: 0; } |
| 3860 | .modal-backdrop.show { |
| 3861 | opacity: 0.5; } |
| 3862 | |
| 3863 | .modal-header { |
| 3864 | display: flex; |
| 3865 | align-items: flex-start; |
| 3866 | justify-content: space-between; |
| 3867 | padding: 1rem; |
| 3868 | border-bottom: 1px solid #e9ecef; |
| 3869 | border-top-left-radius: 0.9rem; |
| 3870 | border-top-right-radius: 0.9rem; } |
| 3871 | .modal-header .close { |
| 3872 | padding: 1rem; |
| 3873 | margin: -1rem -1rem -1rem auto; } |
| 3874 | |
| 3875 | .modal-title { |
| 3876 | margin-bottom: 0; |
| 3877 | line-height: 1.8; } |
| 3878 | |
| 3879 | .modal-body { |
| 3880 | position: relative; |
| 3881 | flex: 1 1 auto; |
| 3882 | padding: 1rem; } |
| 3883 | |
| 3884 | .modal-footer { |
| 3885 | display: flex; |
| 3886 | align-items: center; |
| 3887 | justify-content: flex-end; |
| 3888 | padding: 1rem; |
| 3889 | border-top: 1px solid #e9ecef; } |
| 3890 | .modal-footer > :not(:first-child) { |
| 3891 | margin-left: .25rem; } |
| 3892 | .modal-footer > :not(:last-child) { |
| 3893 | margin-right: .25rem; } |
| 3894 | |
| 3895 | .modal-scrollbar-measure { |
| 3896 | position: absolute; |
| 3897 | top: -9999px; |
| 3898 | width: 50px; |
| 3899 | height: 50px; |
| 3900 | overflow: scroll; } |
| 3901 | |
| 3902 | @media (min-width: 576px) { |
| 3903 | .modal-dialog { |
| 3904 | max-width: 500px; |
| 3905 | margin: 1.75rem auto; } |
| 3906 | .modal-dialog-centered { |
| 3907 | min-height: calc(100% - (1.75rem * 2)); } |
| 3908 | .modal-dialog-centered::before { |
| 3909 | height: calc(100vh - (1.75rem * 2)); } |
| 3910 | .modal-sm { |
| 3911 | max-width: 300px; } } |
| 3912 | |
| 3913 | @media (min-width: 992px) { |
| 3914 | .modal-lg { |
| 3915 | max-width: 800px; } } |
| 3916 | |
| 3917 | .tooltip { |
| 3918 | position: absolute; |
| 3919 | z-index: 1070; |
| 3920 | display: block; |
| 3921 | margin: 0; |
| 3922 | font-family: Montserrat; |
| 3923 | font-style: normal; |
| 3924 | font-weight: 200; |
| 3925 | line-height: 1.8; |
| 3926 | text-align: left; |
| 3927 | text-align: start; |
| 3928 | text-decoration: none; |
| 3929 | text-shadow: none; |
| 3930 | text-transform: none; |
| 3931 | letter-spacing: normal; |
| 3932 | word-break: normal; |
| 3933 | word-spacing: normal; |
| 3934 | white-space: normal; |
| 3935 | line-break: auto; |
| 3936 | font-size: 0.74375rem; |
| 3937 | word-wrap: break-word; |
| 3938 | opacity: 0; } |
| 3939 | .tooltip.show { |
| 3940 | opacity: 0.9; } |
| 3941 | .tooltip .arrow { |
| 3942 | position: absolute; |
| 3943 | display: block; |
| 3944 | width: 0.8rem; |
| 3945 | height: 0.4rem; } |
| 3946 | .tooltip .arrow::before { |
| 3947 | position: absolute; |
| 3948 | content: ""; |
| 3949 | border-color: transparent; |
| 3950 | border-style: solid; } |
| 3951 | |
| 3952 | .bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] { |
| 3953 | padding: 0.4rem 0; } |
| 3954 | .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow { |
| 3955 | bottom: 0; } |
| 3956 | .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before { |
| 3957 | top: 0; |
| 3958 | border-width: 0.4rem 0.4rem 0; |
| 3959 | border-top-color: #000; } |
| 3960 | |
| 3961 | .bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] { |
| 3962 | padding: 0 0.4rem; } |
| 3963 | .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow { |
| 3964 | left: 0; |
| 3965 | width: 0.4rem; |
| 3966 | height: 0.8rem; } |
| 3967 | .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { |
| 3968 | right: 0; |
| 3969 | border-width: 0.4rem 0.4rem 0.4rem 0; |
| 3970 | border-right-color: #000; } |
| 3971 | |
| 3972 | .bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] { |
| 3973 | padding: 0.4rem 0; } |
| 3974 | .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow { |
| 3975 | top: 0; } |
| 3976 | .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { |
| 3977 | bottom: 0; |
| 3978 | border-width: 0 0.4rem 0.4rem; |
| 3979 | border-bottom-color: #000; } |
| 3980 | |
| 3981 | .bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] { |
| 3982 | padding: 0 0.4rem; } |
| 3983 | .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow { |
| 3984 | right: 0; |
| 3985 | width: 0.4rem; |
| 3986 | height: 0.8rem; } |
| 3987 | .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { |
| 3988 | left: 0; |
| 3989 | border-width: 0.4rem 0 0.4rem 0.4rem; |
| 3990 | border-left-color: #000; } |
| 3991 | |
| 3992 | .tooltip-inner { |
| 3993 | max-width: 200px; |
| 3994 | padding: 0.25rem 0.5rem; |
| 3995 | color: #fff; |
| 3996 | text-align: center; |
| 3997 | background-color: #000; |
| 3998 | border-radius: 0.75rem; } |
| 3999 | |
| 4000 | .popover { |
| 4001 | position: absolute; |
| 4002 | top: 0; |
| 4003 | left: 0; |
| 4004 | z-index: 1060; |
| 4005 | display: block; |
| 4006 | max-width: 276px; |
| 4007 | font-family: Montserrat; |
| 4008 | font-style: normal; |
| 4009 | font-weight: 200; |
| 4010 | line-height: 1.8; |
| 4011 | text-align: left; |
| 4012 | text-align: start; |
| 4013 | text-decoration: none; |
| 4014 | text-shadow: none; |
| 4015 | text-transform: none; |
| 4016 | letter-spacing: normal; |
| 4017 | word-break: normal; |
| 4018 | word-spacing: normal; |
| 4019 | white-space: normal; |
| 4020 | line-break: auto; |
| 4021 | font-size: 0.74375rem; |
| 4022 | word-wrap: break-word; |
| 4023 | background-color: #fff; |
| 4024 | background-clip: padding-box; |
| 4025 | border: 1px solid rgba(0, 0, 0, 0.2); |
| 4026 | border-radius: 0.9rem; } |
| 4027 | .popover .arrow { |
| 4028 | position: absolute; |
| 4029 | display: block; |
| 4030 | width: 1rem; |
| 4031 | height: 0.5rem; |
| 4032 | margin: 0 0.9rem; } |
| 4033 | .popover .arrow::before, .popover .arrow::after { |
| 4034 | position: absolute; |
| 4035 | display: block; |
| 4036 | content: ""; |
| 4037 | border-color: transparent; |
| 4038 | border-style: solid; } |
| 4039 | |
| 4040 | .bs-popover-top, .bs-popover-auto[x-placement^="top"] { |
| 4041 | margin-bottom: 0.5rem; } |
| 4042 | .bs-popover-top .arrow, .bs-popover-auto[x-placement^="top"] .arrow { |
| 4043 | bottom: calc((0.5rem + 1px) * -1); } |
| 4044 | .bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before, |
| 4045 | .bs-popover-top .arrow::after, |
| 4046 | .bs-popover-auto[x-placement^="top"] .arrow::after { |
| 4047 | border-width: 0.5rem 0.5rem 0; } |
| 4048 | .bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before { |
| 4049 | bottom: 0; |
| 4050 | border-top-color: rgba(0, 0, 0, 0.25); } |
| 4051 | |
| 4052 | .bs-popover-top .arrow::after, |
| 4053 | .bs-popover-auto[x-placement^="top"] .arrow::after { |
| 4054 | bottom: 1px; |
| 4055 | border-top-color: #fff; } |
| 4056 | |
| 4057 | .bs-popover-right, .bs-popover-auto[x-placement^="right"] { |
| 4058 | margin-left: 0.5rem; } |
| 4059 | .bs-popover-right .arrow, .bs-popover-auto[x-placement^="right"] .arrow { |
| 4060 | left: calc((0.5rem + 1px) * -1); |
| 4061 | width: 0.5rem; |
| 4062 | height: 1rem; |
| 4063 | margin: 0.9rem 0; } |
| 4064 | .bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before, |
| 4065 | .bs-popover-right .arrow::after, |
| 4066 | .bs-popover-auto[x-placement^="right"] .arrow::after { |
| 4067 | border-width: 0.5rem 0.5rem 0.5rem 0; } |
| 4068 | .bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before { |
| 4069 | left: 0; |
| 4070 | border-right-color: rgba(0, 0, 0, 0.25); } |
| 4071 | |
| 4072 | .bs-popover-right .arrow::after, |
| 4073 | .bs-popover-auto[x-placement^="right"] .arrow::after { |
| 4074 | left: 1px; |
| 4075 | border-right-color: #fff; } |
| 4076 | |
| 4077 | .bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] { |
| 4078 | margin-top: 0.5rem; } |
| 4079 | .bs-popover-bottom .arrow, .bs-popover-auto[x-placement^="bottom"] .arrow { |
| 4080 | top: calc((0.5rem + 1px) * -1); } |
| 4081 | .bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before, |
| 4082 | .bs-popover-bottom .arrow::after, |
| 4083 | .bs-popover-auto[x-placement^="bottom"] .arrow::after { |
| 4084 | border-width: 0 0.5rem 0.5rem 0.5rem; } |
| 4085 | .bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before { |
| 4086 | top: 0; |
| 4087 | border-bottom-color: rgba(0, 0, 0, 0.25); } |
| 4088 | |
| 4089 | .bs-popover-bottom .arrow::after, |
| 4090 | .bs-popover-auto[x-placement^="bottom"] .arrow::after { |
| 4091 | top: 1px; |
| 4092 | border-bottom-color: #fff; } |
| 4093 | .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before { |
| 4094 | position: absolute; |
| 4095 | top: 0; |
| 4096 | left: 50%; |
| 4097 | display: block; |
| 4098 | width: 1rem; |
| 4099 | margin-left: -0.5rem; |
| 4100 | content: ""; |
| 4101 | border-bottom: 1px solid #f7f7f7; } |
| 4102 | |
| 4103 | .bs-popover-left, .bs-popover-auto[x-placement^="left"] { |
| 4104 | margin-right: 0.5rem; } |
| 4105 | .bs-popover-left .arrow, .bs-popover-auto[x-placement^="left"] .arrow { |
| 4106 | right: calc((0.5rem + 1px) * -1); |
| 4107 | width: 0.5rem; |
| 4108 | height: 1rem; |
| 4109 | margin: 0.9rem 0; } |
| 4110 | .bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before, |
| 4111 | .bs-popover-left .arrow::after, |
| 4112 | .bs-popover-auto[x-placement^="left"] .arrow::after { |
| 4113 | border-width: 0.5rem 0 0.5rem 0.5rem; } |
| 4114 | .bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before { |
| 4115 | right: 0; |
| 4116 | border-left-color: rgba(0, 0, 0, 0.25); } |
| 4117 | |
| 4118 | .bs-popover-left .arrow::after, |
| 4119 | .bs-popover-auto[x-placement^="left"] .arrow::after { |
| 4120 | right: 1px; |
| 4121 | border-left-color: #fff; } |
| 4122 | |
| 4123 | .popover-header { |
| 4124 | padding: 0.5rem 0.75rem; |
| 4125 | margin-bottom: 0; |
| 4126 | font-size: 0.85rem; |
| 4127 | color: inherit; |
| 4128 | background-color: #f7f7f7; |
| 4129 | border-bottom: 1px solid #ebebeb; |
| 4130 | border-top-left-radius: calc(0.9rem - 1px); |
| 4131 | border-top-right-radius: calc(0.9rem - 1px); } |
| 4132 | .popover-header:empty { |
| 4133 | display: none; } |
| 4134 | |
| 4135 | .popover-body { |
| 4136 | padding: 0.5rem 0.75rem; |
| 4137 | color: #efefef; } |
| 4138 | |
| 4139 | .carousel { |
| 4140 | position: relative; } |
| 4141 | |
| 4142 | .carousel-inner { |
| 4143 | position: relative; |
| 4144 | width: 100%; |
| 4145 | overflow: hidden; } |
| 4146 | |
| 4147 | .carousel-item { |
| 4148 | position: relative; |
| 4149 | display: none; |
| 4150 | align-items: center; |
| 4151 | width: 100%; |
| 4152 | -webkit-backface-visibility: hidden; |
| 4153 | backface-visibility: hidden; |
| 4154 | -webkit-perspective: 1000px; |
| 4155 | perspective: 1000px; } |
| 4156 | |
| 4157 | .carousel-item.active, |
| 4158 | .carousel-item-next, |
| 4159 | .carousel-item-prev { |
| 4160 | display: block; |
| 4161 | transition: -webkit-transform 0.6s ease; |
| 4162 | transition: transform 0.6s ease; |
| 4163 | transition: transform 0.6s ease, -webkit-transform 0.6s ease; } |
| 4164 | @media screen and (prefers-reduced-motion: reduce) { |
| 4165 | .carousel-item.active, |
| 4166 | .carousel-item-next, |
| 4167 | .carousel-item-prev { |
| 4168 | transition: none; } } |
| 4169 | |
| 4170 | .carousel-item-next, |
| 4171 | .carousel-item-prev { |
| 4172 | position: absolute; |
| 4173 | top: 0; } |
| 4174 | |
| 4175 | .carousel-item-next.carousel-item-left, |
| 4176 | .carousel-item-prev.carousel-item-right { |
| 4177 | -webkit-transform: translateX(0); |
| 4178 | transform: translateX(0); } |
| 4179 | @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { |
| 4180 | .carousel-item-next.carousel-item-left, |
| 4181 | .carousel-item-prev.carousel-item-right { |
| 4182 | -webkit-transform: translate3d(0, 0, 0); |
| 4183 | transform: translate3d(0, 0, 0); } } |
| 4184 | |
| 4185 | .carousel-item-next, |
| 4186 | .active.carousel-item-right { |
| 4187 | -webkit-transform: translateX(100%); |
| 4188 | transform: translateX(100%); } |
| 4189 | @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { |
| 4190 | .carousel-item-next, |
| 4191 | .active.carousel-item-right { |
| 4192 | -webkit-transform: translate3d(100%, 0, 0); |
| 4193 | transform: translate3d(100%, 0, 0); } } |
| 4194 | |
| 4195 | .carousel-item-prev, |
| 4196 | .active.carousel-item-left { |
| 4197 | -webkit-transform: translateX(-100%); |
| 4198 | transform: translateX(-100%); } |
| 4199 | @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { |
| 4200 | .carousel-item-prev, |
| 4201 | .active.carousel-item-left { |
| 4202 | -webkit-transform: translate3d(-100%, 0, 0); |
| 4203 | transform: translate3d(-100%, 0, 0); } } |
| 4204 | |
| 4205 | .carousel-fade .carousel-item { |
| 4206 | opacity: 0; |
| 4207 | transition-duration: .6s; |
| 4208 | transition-property: opacity; } |
| 4209 | |
| 4210 | .carousel-fade .carousel-item.active, |
| 4211 | .carousel-fade .carousel-item-next.carousel-item-left, |
| 4212 | .carousel-fade .carousel-item-prev.carousel-item-right { |
| 4213 | opacity: 1; } |
| 4214 | |
| 4215 | .carousel-fade .active.carousel-item-left, |
| 4216 | .carousel-fade .active.carousel-item-right { |
| 4217 | opacity: 0; } |
| 4218 | |
| 4219 | .carousel-fade .carousel-item-next, |
| 4220 | .carousel-fade .carousel-item-prev, |
| 4221 | .carousel-fade .carousel-item.active, |
| 4222 | .carousel-fade .active.carousel-item-left, |
| 4223 | .carousel-fade .active.carousel-item-prev { |
| 4224 | -webkit-transform: translateX(0); |
| 4225 | transform: translateX(0); } |
| 4226 | @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { |
| 4227 | .carousel-fade .carousel-item-next, |
| 4228 | .carousel-fade .carousel-item-prev, |
| 4229 | .carousel-fade .carousel-item.active, |
| 4230 | .carousel-fade .active.carousel-item-left, |
| 4231 | .carousel-fade .active.carousel-item-prev { |
| 4232 | -webkit-transform: translate3d(0, 0, 0); |
| 4233 | transform: translate3d(0, 0, 0); } } |
| 4234 | |
| 4235 | .carousel-control-prev, |
| 4236 | .carousel-control-next { |
| 4237 | position: absolute; |
| 4238 | top: 0; |
| 4239 | bottom: 0; |
| 4240 | display: flex; |
| 4241 | align-items: center; |
| 4242 | justify-content: center; |
| 4243 | width: 15%; |
| 4244 | color: #fff; |
| 4245 | text-align: center; |
| 4246 | opacity: 0.5; } |
| 4247 | .carousel-control-prev:hover, .carousel-control-prev:focus, |
| 4248 | .carousel-control-next:hover, |
| 4249 | .carousel-control-next:focus { |
| 4250 | color: #fff; |
| 4251 | text-decoration: none; |
| 4252 | outline: 0; |
| 4253 | opacity: .9; } |
| 4254 | |
| 4255 | .carousel-control-prev { |
| 4256 | left: 0; } |
| 4257 | |
| 4258 | .carousel-control-next { |
| 4259 | right: 0; } |
| 4260 | |
| 4261 | .carousel-control-prev-icon, |
| 4262 | .carousel-control-next-icon { |
| 4263 | display: inline-block; |
| 4264 | width: 20px; |
| 4265 | height: 20px; |
| 4266 | background: transparent no-repeat center center; |
| 4267 | background-size: 100% 100%; } |
| 4268 | |
| 4269 | .carousel-control-prev-icon { |
| 4270 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); } |
| 4271 | |
| 4272 | .carousel-control-next-icon { |
| 4273 | background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); } |
| 4274 | |
| 4275 | .carousel-indicators { |
| 4276 | position: absolute; |
| 4277 | right: 0; |
| 4278 | bottom: 10px; |
| 4279 | left: 0; |
| 4280 | z-index: 15; |
| 4281 | display: flex; |
| 4282 | justify-content: center; |
| 4283 | padding-left: 0; |
| 4284 | margin-right: 15%; |
| 4285 | margin-left: 15%; |
| 4286 | list-style: none; } |
| 4287 | .carousel-indicators li { |
| 4288 | position: relative; |
| 4289 | flex: 0 1 auto; |
| 4290 | width: 30px; |
| 4291 | height: 6px; |
| 4292 | margin-right: 3px; |
| 4293 | margin-left: 3px; |
| 4294 | text-indent: -999px; |
| 4295 | cursor: pointer; |
| 4296 | background-color: rgba(255, 255, 255, 0.5); } |
| 4297 | .carousel-indicators li::before { |
| 4298 | position: absolute; |
| 4299 | top: -10px; |
| 4300 | left: 0; |
| 4301 | display: inline-block; |
| 4302 | width: 100%; |
| 4303 | height: 10px; |
| 4304 | content: ""; } |
| 4305 | .carousel-indicators li::after { |
| 4306 | position: absolute; |
| 4307 | bottom: -10px; |
| 4308 | left: 0; |
| 4309 | display: inline-block; |
| 4310 | width: 100%; |
| 4311 | height: 10px; |
| 4312 | content: ""; } |
| 4313 | .carousel-indicators .active { |
| 4314 | background-color: #fff; } |
| 4315 | |
| 4316 | .carousel-caption { |
| 4317 | position: absolute; |
| 4318 | right: 0%; |
| 4319 | bottom: 20px; |
| 4320 | left: 0%; |
| 4321 | z-index: 10; |
| 4322 | padding-top: 20px; |
| 4323 | padding-bottom: 20px; |
| 4324 | color: #fff; |
| 4325 | text-align: center; } |
| 4326 | |
| 4327 | .align-baseline { |
| 4328 | vertical-align: baseline !important; } |
| 4329 | |
| 4330 | .align-top { |
| 4331 | vertical-align: top !important; } |
| 4332 | |
| 4333 | .align-middle { |
| 4334 | vertical-align: middle !important; } |
| 4335 | |
| 4336 | .align-bottom { |
| 4337 | vertical-align: bottom !important; } |
| 4338 | |
| 4339 | .align-text-bottom { |
| 4340 | vertical-align: text-bottom !important; } |
| 4341 | |
| 4342 | .align-text-top { |
| 4343 | vertical-align: text-top !important; } |
| 4344 | |
| 4345 | .bg-primary { |
| 4346 | background-color: #0080ff !important; } |
| 4347 | |
| 4348 | a.bg-primary:hover, a.bg-primary:focus, |
| 4349 | button.bg-primary:hover, |
| 4350 | button.bg-primary:focus { |
| 4351 | background-color: #0066cc !important; } |
| 4352 | |
| 4353 | .bg-secondary { |
| 4354 | background-color: #0060aa !important; } |
| 4355 | |
| 4356 | a.bg-secondary:hover, a.bg-secondary:focus, |
| 4357 | button.bg-secondary:hover, |
| 4358 | button.bg-secondary:focus { |
| 4359 | background-color: #004377 !important; } |
| 4360 | |
| 4361 | .bg-success { |
| 4362 | background-color: #28a745 !important; } |
| 4363 | |
| 4364 | a.bg-success:hover, a.bg-success:focus, |
| 4365 | button.bg-success:hover, |
| 4366 | button.bg-success:focus { |
| 4367 | background-color: #1e7e34 !important; } |
| 4368 | |
| 4369 | .bg-info { |
| 4370 | background-color: #00aaff !important; } |
| 4371 | |
| 4372 | a.bg-info:hover, a.bg-info:focus, |
| 4373 | button.bg-info:hover, |
| 4374 | button.bg-info:focus { |
| 4375 | background-color: #0088cc !important; } |
| 4376 | |
| 4377 | .bg-warning { |
| 4378 | background-color: #ffc107 !important; } |
| 4379 | |
| 4380 | a.bg-warning:hover, a.bg-warning:focus, |
| 4381 | button.bg-warning:hover, |
| 4382 | button.bg-warning:focus { |
| 4383 | background-color: #d39e00 !important; } |
| 4384 | |
| 4385 | .bg-danger { |
| 4386 | background-color: #dc3545 !important; } |
| 4387 | |
| 4388 | a.bg-danger:hover, a.bg-danger:focus, |
| 4389 | button.bg-danger:hover, |
| 4390 | button.bg-danger:focus { |
| 4391 | background-color: #bd2130 !important; } |
| 4392 | |
| 4393 | .bg-light { |
| 4394 | background-color: #f3f3f3 !important; } |
| 4395 | |
| 4396 | a.bg-light:hover, a.bg-light:focus, |
| 4397 | button.bg-light:hover, |
| 4398 | button.bg-light:focus { |
| 4399 | background-color: #dadada !important; } |
| 4400 | |
| 4401 | .bg-dark { |
| 4402 | background-color: #303030 !important; } |
| 4403 | |
| 4404 | a.bg-dark:hover, a.bg-dark:focus, |
| 4405 | button.bg-dark:hover, |
| 4406 | button.bg-dark:focus { |
| 4407 | background-color: #171717 !important; } |
| 4408 | |
| 4409 | .bg-white { |
| 4410 | background-color: #fff !important; } |
| 4411 | |
| 4412 | .bg-transparent { |
| 4413 | background-color: transparent !important; } |
| 4414 | |
| 4415 | .border { |
| 4416 | border: 1px solid #dee2e6 !important; } |
| 4417 | |
| 4418 | .border-top { |
| 4419 | border-top: 1px solid #dee2e6 !important; } |
| 4420 | |
| 4421 | .border-right { |
| 4422 | border-right: 1px solid #dee2e6 !important; } |
| 4423 | |
| 4424 | .border-bottom { |
| 4425 | border-bottom: 1px solid #dee2e6 !important; } |
| 4426 | |
| 4427 | .border-left { |
| 4428 | border-left: 1px solid #dee2e6 !important; } |
| 4429 | |
| 4430 | .border-0 { |
| 4431 | border: 0 !important; } |
| 4432 | |
| 4433 | .border-top-0 { |
| 4434 | border-top: 0 !important; } |
| 4435 | |
| 4436 | .border-right-0 { |
| 4437 | border-right: 0 !important; } |
| 4438 | |
| 4439 | .border-bottom-0 { |
| 4440 | border-bottom: 0 !important; } |
| 4441 | |
| 4442 | .border-left-0 { |
| 4443 | border-left: 0 !important; } |
| 4444 | |
| 4445 | .border-primary { |
| 4446 | border-color: #0080ff !important; } |
| 4447 | |
| 4448 | .border-secondary { |
| 4449 | border-color: #0060aa !important; } |
| 4450 | |
| 4451 | .border-success { |
| 4452 | border-color: #28a745 !important; } |
| 4453 | |
| 4454 | .border-info { |
| 4455 | border-color: #00aaff !important; } |
| 4456 | |
| 4457 | .border-warning { |
| 4458 | border-color: #ffc107 !important; } |
| 4459 | |
| 4460 | .border-danger { |
| 4461 | border-color: #dc3545 !important; } |
| 4462 | |
| 4463 | .border-light { |
| 4464 | border-color: #f3f3f3 !important; } |
| 4465 | |
| 4466 | .border-dark { |
| 4467 | border-color: #303030 !important; } |
| 4468 | |
| 4469 | .border-white { |
| 4470 | border-color: #fff !important; } |
| 4471 | |
| 4472 | .rounded { |
| 4473 | border-radius: 0.75rem !important; } |
| 4474 | |
| 4475 | .rounded-top { |
| 4476 | border-top-left-radius: 0.75rem !important; |
| 4477 | border-top-right-radius: 0.75rem !important; } |
| 4478 | |
| 4479 | .rounded-right { |
| 4480 | border-top-right-radius: 0.75rem !important; |
| 4481 | border-bottom-right-radius: 0.75rem !important; } |
| 4482 | |
| 4483 | .rounded-bottom { |
| 4484 | border-bottom-right-radius: 0.75rem !important; |
| 4485 | border-bottom-left-radius: 0.75rem !important; } |
| 4486 | |
| 4487 | .rounded-left { |
| 4488 | border-top-left-radius: 0.75rem !important; |
| 4489 | border-bottom-left-radius: 0.75rem !important; } |
| 4490 | |
| 4491 | .rounded-circle { |
| 4492 | border-radius: 50% !important; } |
| 4493 | |
| 4494 | .rounded-0 { |
| 4495 | border-radius: 0 !important; } |
| 4496 | |
| 4497 | .clearfix::after { |
| 4498 | display: block; |
| 4499 | clear: both; |
| 4500 | content: ""; } |
| 4501 | |
| 4502 | .d-none { |
| 4503 | display: none !important; } |
| 4504 | |
| 4505 | .d-inline { |
| 4506 | display: inline !important; } |
| 4507 | |
| 4508 | .d-inline-block { |
| 4509 | display: inline-block !important; } |
| 4510 | |
| 4511 | .d-block { |
| 4512 | display: block !important; } |
| 4513 | |
| 4514 | .d-table { |
| 4515 | display: table !important; } |
| 4516 | |
| 4517 | .d-table-row { |
| 4518 | display: table-row !important; } |
| 4519 | |
| 4520 | .d-table-cell { |
| 4521 | display: table-cell !important; } |
| 4522 | |
| 4523 | .d-flex { |
| 4524 | display: flex !important; } |
| 4525 | |
| 4526 | .d-inline-flex { |
| 4527 | display: inline-flex !important; } |
| 4528 | |
| 4529 | @media (min-width: 576px) { |
| 4530 | .d-sm-none { |
| 4531 | display: none !important; } |
| 4532 | .d-sm-inline { |
| 4533 | display: inline !important; } |
| 4534 | .d-sm-inline-block { |
| 4535 | display: inline-block !important; } |
| 4536 | .d-sm-block { |
| 4537 | display: block !important; } |
| 4538 | .d-sm-table { |
| 4539 | display: table !important; } |
| 4540 | .d-sm-table-row { |
| 4541 | display: table-row !important; } |
| 4542 | .d-sm-table-cell { |
| 4543 | display: table-cell !important; } |
| 4544 | .d-sm-flex { |
| 4545 | display: flex !important; } |
| 4546 | .d-sm-inline-flex { |
| 4547 | display: inline-flex !important; } } |
| 4548 | |
00day0 | 769a17f | 2019-04-08 12:31:11 +0200 | [diff] [blame] | 4549 | @media (min-width: 868px) { |
Unknown | d2db0f1 | 2019-01-10 14:22:00 -0500 | [diff] [blame] | 4550 | .d-md-none { |
| 4551 | display: none !important; } |
| 4552 | .d-md-inline { |
| 4553 | display: inline !important; } |
| 4554 | .d-md-inline-block { |
| 4555 | display: inline-block !important; } |
| 4556 | .d-md-block { |
| 4557 | display: block !important; } |
| 4558 | .d-md-table { |
| 4559 | display: table !important; } |
| 4560 | .d-md-table-row { |
| 4561 | display: table-row !important; } |
| 4562 | .d-md-table-cell { |
| 4563 | display: table-cell !important; } |
| 4564 | .d-md-flex { |
| 4565 | display: flex !important; } |
| 4566 | .d-md-inline-flex { |
| 4567 | display: inline-flex !important; } } |
| 4568 | |
| 4569 | @media (min-width: 992px) { |
| 4570 | .d-lg-none { |
| 4571 | display: none !important; } |
| 4572 | .d-lg-inline { |
| 4573 | display: inline !important; } |
| 4574 | .d-lg-inline-block { |
| 4575 | display: inline-block !important; } |
| 4576 | .d-lg-block { |
| 4577 | display: block !important; } |
| 4578 | .d-lg-table { |
| 4579 | display: table !important; } |
| 4580 | .d-lg-table-row { |
| 4581 | display: table-row !important; } |
| 4582 | .d-lg-table-cell { |
| 4583 | display: table-cell !important; } |
| 4584 | .d-lg-flex { |
| 4585 | display: flex !important; } |
| 4586 | .d-lg-inline-flex { |
| 4587 | display: inline-flex !important; } } |
| 4588 | |
| 4589 | @media (min-width: 1200px) { |
| 4590 | .d-xl-none { |
| 4591 | display: none !important; } |
| 4592 | .d-xl-inline { |
| 4593 | display: inline !important; } |
| 4594 | .d-xl-inline-block { |
| 4595 | display: inline-block !important; } |
| 4596 | .d-xl-block { |
| 4597 | display: block !important; } |
| 4598 | .d-xl-table { |
| 4599 | display: table !important; } |
| 4600 | .d-xl-table-row { |
| 4601 | display: table-row !important; } |
| 4602 | .d-xl-table-cell { |
| 4603 | display: table-cell !important; } |
| 4604 | .d-xl-flex { |
| 4605 | display: flex !important; } |
| 4606 | .d-xl-inline-flex { |
| 4607 | display: inline-flex !important; } } |
| 4608 | |
| 4609 | @media print { |
| 4610 | .d-print-none { |
| 4611 | display: none !important; } |
| 4612 | .d-print-inline { |
| 4613 | display: inline !important; } |
| 4614 | .d-print-inline-block { |
| 4615 | display: inline-block !important; } |
| 4616 | .d-print-block { |
| 4617 | display: block !important; } |
| 4618 | .d-print-table { |
| 4619 | display: table !important; } |
| 4620 | .d-print-table-row { |
| 4621 | display: table-row !important; } |
| 4622 | .d-print-table-cell { |
| 4623 | display: table-cell !important; } |
| 4624 | .d-print-flex { |
| 4625 | display: flex !important; } |
| 4626 | .d-print-inline-flex { |
| 4627 | display: inline-flex !important; } } |
| 4628 | |
| 4629 | .embed-responsive { |
| 4630 | position: relative; |
| 4631 | display: block; |
| 4632 | width: 100%; |
| 4633 | padding: 0; |
| 4634 | overflow: hidden; } |
| 4635 | .embed-responsive::before { |
| 4636 | display: block; |
| 4637 | content: ""; } |
| 4638 | .embed-responsive .embed-responsive-item, |
| 4639 | .embed-responsive iframe, |
| 4640 | .embed-responsive embed, |
| 4641 | .embed-responsive object, |
| 4642 | .embed-responsive video { |
| 4643 | position: absolute; |
| 4644 | top: 0; |
| 4645 | bottom: 0; |
| 4646 | left: 0; |
| 4647 | width: 100%; |
| 4648 | height: 100%; |
| 4649 | border: 0; } |
| 4650 | |
| 4651 | .embed-responsive-21by9::before { |
| 4652 | padding-top: 42.85714%; } |
| 4653 | |
| 4654 | .embed-responsive-16by9::before { |
| 4655 | padding-top: 56.25%; } |
| 4656 | |
| 4657 | .embed-responsive-4by3::before { |
| 4658 | padding-top: 75%; } |
| 4659 | |
| 4660 | .embed-responsive-1by1::before { |
| 4661 | padding-top: 100%; } |
| 4662 | |
| 4663 | .flex-row { |
| 4664 | flex-direction: row !important; } |
| 4665 | |
| 4666 | .flex-column { |
| 4667 | flex-direction: column !important; } |
| 4668 | |
| 4669 | .flex-row-reverse { |
| 4670 | flex-direction: row-reverse !important; } |
| 4671 | |
| 4672 | .flex-column-reverse { |
| 4673 | flex-direction: column-reverse !important; } |
| 4674 | |
| 4675 | .flex-wrap { |
| 4676 | flex-wrap: wrap !important; } |
| 4677 | |
| 4678 | .flex-nowrap { |
| 4679 | flex-wrap: nowrap !important; } |
| 4680 | |
| 4681 | .flex-wrap-reverse { |
| 4682 | flex-wrap: wrap-reverse !important; } |
| 4683 | |
| 4684 | .flex-fill { |
| 4685 | flex: 1 1 auto !important; } |
| 4686 | |
| 4687 | .flex-grow-0 { |
| 4688 | flex-grow: 0 !important; } |
| 4689 | |
| 4690 | .flex-grow-1 { |
| 4691 | flex-grow: 1 !important; } |
| 4692 | |
| 4693 | .flex-shrink-0 { |
| 4694 | flex-shrink: 0 !important; } |
| 4695 | |
| 4696 | .flex-shrink-1 { |
| 4697 | flex-shrink: 1 !important; } |
| 4698 | |
| 4699 | .justify-content-start { |
| 4700 | justify-content: flex-start !important; } |
| 4701 | |
| 4702 | .justify-content-end { |
| 4703 | justify-content: flex-end !important; } |
| 4704 | |
| 4705 | .justify-content-center { |
| 4706 | justify-content: center !important; } |
| 4707 | |
| 4708 | .justify-content-between { |
| 4709 | justify-content: space-between !important; } |
| 4710 | |
| 4711 | .justify-content-around { |
| 4712 | justify-content: space-around !important; } |
| 4713 | |
| 4714 | .align-items-start { |
| 4715 | align-items: flex-start !important; } |
| 4716 | |
| 4717 | .align-items-end { |
| 4718 | align-items: flex-end !important; } |
| 4719 | |
| 4720 | .align-items-center { |
| 4721 | align-items: center !important; } |
| 4722 | |
| 4723 | .align-items-baseline { |
| 4724 | align-items: baseline !important; } |
| 4725 | |
| 4726 | .align-items-stretch { |
| 4727 | align-items: stretch !important; } |
| 4728 | |
| 4729 | .align-content-start { |
| 4730 | align-content: flex-start !important; } |
| 4731 | |
| 4732 | .align-content-end { |
| 4733 | align-content: flex-end !important; } |
| 4734 | |
| 4735 | .align-content-center { |
| 4736 | align-content: center !important; } |
| 4737 | |
| 4738 | .align-content-between { |
| 4739 | align-content: space-between !important; } |
| 4740 | |
| 4741 | .align-content-around { |
| 4742 | align-content: space-around !important; } |
| 4743 | |
| 4744 | .align-content-stretch { |
| 4745 | align-content: stretch !important; } |
| 4746 | |
| 4747 | .align-self-auto { |
| 4748 | align-self: auto !important; } |
| 4749 | |
| 4750 | .align-self-start { |
| 4751 | align-self: flex-start !important; } |
| 4752 | |
| 4753 | .align-self-end { |
| 4754 | align-self: flex-end !important; } |
| 4755 | |
| 4756 | .align-self-center { |
| 4757 | align-self: center !important; } |
| 4758 | |
| 4759 | .align-self-baseline { |
| 4760 | align-self: baseline !important; } |
| 4761 | |
| 4762 | .align-self-stretch { |
| 4763 | align-self: stretch !important; } |
| 4764 | |
| 4765 | @media (min-width: 576px) { |
| 4766 | .flex-sm-row { |
| 4767 | flex-direction: row !important; } |
| 4768 | .flex-sm-column { |
| 4769 | flex-direction: column !important; } |
| 4770 | .flex-sm-row-reverse { |
| 4771 | flex-direction: row-reverse !important; } |
| 4772 | .flex-sm-column-reverse { |
| 4773 | flex-direction: column-reverse !important; } |
| 4774 | .flex-sm-wrap { |
| 4775 | flex-wrap: wrap !important; } |
| 4776 | .flex-sm-nowrap { |
| 4777 | flex-wrap: nowrap !important; } |
| 4778 | .flex-sm-wrap-reverse { |
| 4779 | flex-wrap: wrap-reverse !important; } |
| 4780 | .flex-sm-fill { |
| 4781 | flex: 1 1 auto !important; } |
| 4782 | .flex-sm-grow-0 { |
| 4783 | flex-grow: 0 !important; } |
| 4784 | .flex-sm-grow-1 { |
| 4785 | flex-grow: 1 !important; } |
| 4786 | .flex-sm-shrink-0 { |
| 4787 | flex-shrink: 0 !important; } |
| 4788 | .flex-sm-shrink-1 { |
| 4789 | flex-shrink: 1 !important; } |
| 4790 | .justify-content-sm-start { |
| 4791 | justify-content: flex-start !important; } |
| 4792 | .justify-content-sm-end { |
| 4793 | justify-content: flex-end !important; } |
| 4794 | .justify-content-sm-center { |
| 4795 | justify-content: center !important; } |
| 4796 | .justify-content-sm-between { |
| 4797 | justify-content: space-between !important; } |
| 4798 | .justify-content-sm-around { |
| 4799 | justify-content: space-around !important; } |
| 4800 | .align-items-sm-start { |
| 4801 | align-items: flex-start !important; } |
| 4802 | .align-items-sm-end { |
| 4803 | align-items: flex-end !important; } |
| 4804 | .align-items-sm-center { |
| 4805 | align-items: center !important; } |
| 4806 | .align-items-sm-baseline { |
| 4807 | align-items: baseline !important; } |
| 4808 | .align-items-sm-stretch { |
| 4809 | align-items: stretch !important; } |
| 4810 | .align-content-sm-start { |
| 4811 | align-content: flex-start !important; } |
| 4812 | .align-content-sm-end { |
| 4813 | align-content: flex-end !important; } |
| 4814 | .align-content-sm-center { |
| 4815 | align-content: center !important; } |
| 4816 | .align-content-sm-between { |
| 4817 | align-content: space-between !important; } |
| 4818 | .align-content-sm-around { |
| 4819 | align-content: space-around !important; } |
| 4820 | .align-content-sm-stretch { |
| 4821 | align-content: stretch !important; } |
| 4822 | .align-self-sm-auto { |
| 4823 | align-self: auto !important; } |
| 4824 | .align-self-sm-start { |
| 4825 | align-self: flex-start !important; } |
| 4826 | .align-self-sm-end { |
| 4827 | align-self: flex-end !important; } |
| 4828 | .align-self-sm-center { |
| 4829 | align-self: center !important; } |
| 4830 | .align-self-sm-baseline { |
| 4831 | align-self: baseline !important; } |
| 4832 | .align-self-sm-stretch { |
| 4833 | align-self: stretch !important; } } |
| 4834 | |
00day0 | 769a17f | 2019-04-08 12:31:11 +0200 | [diff] [blame] | 4835 | @media (min-width: 868px) { |
Unknown | d2db0f1 | 2019-01-10 14:22:00 -0500 | [diff] [blame] | 4836 | .flex-md-row { |
| 4837 | flex-direction: row !important; } |
| 4838 | .flex-md-column { |
| 4839 | flex-direction: column !important; } |
| 4840 | .flex-md-row-reverse { |
| 4841 | flex-direction: row-reverse !important; } |
| 4842 | .flex-md-column-reverse { |
| 4843 | flex-direction: column-reverse !important; } |
| 4844 | .flex-md-wrap { |
| 4845 | flex-wrap: wrap !important; } |
| 4846 | .flex-md-nowrap { |
| 4847 | flex-wrap: nowrap !important; } |
| 4848 | .flex-md-wrap-reverse { |
| 4849 | flex-wrap: wrap-reverse !important; } |
| 4850 | .flex-md-fill { |
| 4851 | flex: 1 1 auto !important; } |
| 4852 | .flex-md-grow-0 { |
| 4853 | flex-grow: 0 !important; } |
| 4854 | .flex-md-grow-1 { |
| 4855 | flex-grow: 1 !important; } |
| 4856 | .flex-md-shrink-0 { |
| 4857 | flex-shrink: 0 !important; } |
| 4858 | .flex-md-shrink-1 { |
| 4859 | flex-shrink: 1 !important; } |
| 4860 | .justify-content-md-start { |
| 4861 | justify-content: flex-start !important; } |
| 4862 | .justify-content-md-end { |
| 4863 | justify-content: flex-end !important; } |
| 4864 | .justify-content-md-center { |
| 4865 | justify-content: center !important; } |
| 4866 | .justify-content-md-between { |
| 4867 | justify-content: space-between !important; } |
| 4868 | .justify-content-md-around { |
| 4869 | justify-content: space-around !important; } |
| 4870 | .align-items-md-start { |
| 4871 | align-items: flex-start !important; } |
| 4872 | .align-items-md-end { |
| 4873 | align-items: flex-end !important; } |
| 4874 | .align-items-md-center { |
| 4875 | align-items: center !important; } |
| 4876 | .align-items-md-baseline { |
| 4877 | align-items: baseline !important; } |
| 4878 | .align-items-md-stretch { |
| 4879 | align-items: stretch !important; } |
| 4880 | .align-content-md-start { |
| 4881 | align-content: flex-start !important; } |
| 4882 | .align-content-md-end { |
| 4883 | align-content: flex-end !important; } |
| 4884 | .align-content-md-center { |
| 4885 | align-content: center !important; } |
| 4886 | .align-content-md-between { |
| 4887 | align-content: space-between !important; } |
| 4888 | .align-content-md-around { |
| 4889 | align-content: space-around !important; } |
| 4890 | .align-content-md-stretch { |
| 4891 | align-content: stretch !important; } |
| 4892 | .align-self-md-auto { |
| 4893 | align-self: auto !important; } |
| 4894 | .align-self-md-start { |
| 4895 | align-self: flex-start !important; } |
| 4896 | .align-self-md-end { |
| 4897 | align-self: flex-end !important; } |
| 4898 | .align-self-md-center { |
| 4899 | align-self: center !important; } |
| 4900 | .align-self-md-baseline { |
| 4901 | align-self: baseline !important; } |
| 4902 | .align-self-md-stretch { |
| 4903 | align-self: stretch !important; } } |
| 4904 | |
| 4905 | @media (min-width: 992px) { |
| 4906 | .flex-lg-row { |
| 4907 | flex-direction: row !important; } |
| 4908 | .flex-lg-column { |
| 4909 | flex-direction: column !important; } |
| 4910 | .flex-lg-row-reverse { |
| 4911 | flex-direction: row-reverse !important; } |
| 4912 | .flex-lg-column-reverse { |
| 4913 | flex-direction: column-reverse !important; } |
| 4914 | .flex-lg-wrap { |
| 4915 | flex-wrap: wrap !important; } |
| 4916 | .flex-lg-nowrap { |
| 4917 | flex-wrap: nowrap !important; } |
| 4918 | .flex-lg-wrap-reverse { |
| 4919 | flex-wrap: wrap-reverse !important; } |
| 4920 | .flex-lg-fill { |
| 4921 | flex: 1 1 auto !important; } |
| 4922 | .flex-lg-grow-0 { |
| 4923 | flex-grow: 0 !important; } |
| 4924 | .flex-lg-grow-1 { |
| 4925 | flex-grow: 1 !important; } |
| 4926 | .flex-lg-shrink-0 { |
| 4927 | flex-shrink: 0 !important; } |
| 4928 | .flex-lg-shrink-1 { |
| 4929 | flex-shrink: 1 !important; } |
| 4930 | .justify-content-lg-start { |
| 4931 | justify-content: flex-start !important; } |
| 4932 | .justify-content-lg-end { |
| 4933 | justify-content: flex-end !important; } |
| 4934 | .justify-content-lg-center { |
| 4935 | justify-content: center !important; } |
| 4936 | .justify-content-lg-between { |
| 4937 | justify-content: space-between !important; } |
| 4938 | .justify-content-lg-around { |
| 4939 | justify-content: space-around !important; } |
| 4940 | .align-items-lg-start { |
| 4941 | align-items: flex-start !important; } |
| 4942 | .align-items-lg-end { |
| 4943 | align-items: flex-end !important; } |
| 4944 | .align-items-lg-center { |
| 4945 | align-items: center !important; } |
| 4946 | .align-items-lg-baseline { |
| 4947 | align-items: baseline !important; } |
| 4948 | .align-items-lg-stretch { |
| 4949 | align-items: stretch !important; } |
| 4950 | .align-content-lg-start { |
| 4951 | align-content: flex-start !important; } |
| 4952 | .align-content-lg-end { |
| 4953 | align-content: flex-end !important; } |
| 4954 | .align-content-lg-center { |
| 4955 | align-content: center !important; } |
| 4956 | .align-content-lg-between { |
| 4957 | align-content: space-between !important; } |
| 4958 | .align-content-lg-around { |
| 4959 | align-content: space-around !important; } |
| 4960 | .align-content-lg-stretch { |
| 4961 | align-content: stretch !important; } |
| 4962 | .align-self-lg-auto { |
| 4963 | align-self: auto !important; } |
| 4964 | .align-self-lg-start { |
| 4965 | align-self: flex-start !important; } |
| 4966 | .align-self-lg-end { |
| 4967 | align-self: flex-end !important; } |
| 4968 | .align-self-lg-center { |
| 4969 | align-self: center !important; } |
| 4970 | .align-self-lg-baseline { |
| 4971 | align-self: baseline !important; } |
| 4972 | .align-self-lg-stretch { |
| 4973 | align-self: stretch !important; } } |
| 4974 | |
| 4975 | @media (min-width: 1200px) { |
| 4976 | .flex-xl-row { |
| 4977 | flex-direction: row !important; } |
| 4978 | .flex-xl-column { |
| 4979 | flex-direction: column !important; } |
| 4980 | .flex-xl-row-reverse { |
| 4981 | flex-direction: row-reverse !important; } |
| 4982 | .flex-xl-column-reverse { |
| 4983 | flex-direction: column-reverse !important; } |
| 4984 | .flex-xl-wrap { |
| 4985 | flex-wrap: wrap !important; } |
| 4986 | .flex-xl-nowrap { |
| 4987 | flex-wrap: nowrap !important; } |
| 4988 | .flex-xl-wrap-reverse { |
| 4989 | flex-wrap: wrap-reverse !important; } |
| 4990 | .flex-xl-fill { |
| 4991 | flex: 1 1 auto !important; } |
| 4992 | .flex-xl-grow-0 { |
| 4993 | flex-grow: 0 !important; } |
| 4994 | .flex-xl-grow-1 { |
| 4995 | flex-grow: 1 !important; } |
| 4996 | .flex-xl-shrink-0 { |
| 4997 | flex-shrink: 0 !important; } |
| 4998 | .flex-xl-shrink-1 { |
| 4999 | flex-shrink: 1 !important; } |
| 5000 | .justify-content-xl-start { |
| 5001 | justify-content: flex-start !important; } |
| 5002 | .justify-content-xl-end { |
| 5003 | justify-content: flex-end !important; } |
| 5004 | .justify-content-xl-center { |
| 5005 | justify-content: center !important; } |
| 5006 | .justify-content-xl-between { |
| 5007 | justify-content: space-between !important; } |
| 5008 | .justify-content-xl-around { |
| 5009 | justify-content: space-around !important; } |
| 5010 | .align-items-xl-start { |
| 5011 | align-items: flex-start !important; } |
| 5012 | .align-items-xl-end { |
| 5013 | align-items: flex-end !important; } |
| 5014 | .align-items-xl-center { |
| 5015 | align-items: center !important; } |
| 5016 | .align-items-xl-baseline { |
| 5017 | align-items: baseline !important; } |
| 5018 | .align-items-xl-stretch { |
| 5019 | align-items: stretch !important; } |
| 5020 | .align-content-xl-start { |
| 5021 | align-content: flex-start !important; } |
| 5022 | .align-content-xl-end { |
| 5023 | align-content: flex-end !important; } |
| 5024 | .align-content-xl-center { |
| 5025 | align-content: center !important; } |
| 5026 | .align-content-xl-between { |
| 5027 | align-content: space-between !important; } |
| 5028 | .align-content-xl-around { |
| 5029 | align-content: space-around !important; } |
| 5030 | .align-content-xl-stretch { |
| 5031 | align-content: stretch !important; } |
| 5032 | .align-self-xl-auto { |
| 5033 | align-self: auto !important; } |
| 5034 | .align-self-xl-start { |
| 5035 | align-self: flex-start !important; } |
| 5036 | .align-self-xl-end { |
| 5037 | align-self: flex-end !important; } |
| 5038 | .align-self-xl-center { |
| 5039 | align-self: center !important; } |
| 5040 | .align-self-xl-baseline { |
| 5041 | align-self: baseline !important; } |
| 5042 | .align-self-xl-stretch { |
| 5043 | align-self: stretch !important; } } |
| 5044 | |
| 5045 | .float-left { |
| 5046 | float: left !important; } |
| 5047 | |
| 5048 | .float-right { |
| 5049 | float: right !important; } |
| 5050 | |
| 5051 | .float-none { |
| 5052 | float: none !important; } |
| 5053 | |
| 5054 | @media (min-width: 576px) { |
| 5055 | .float-sm-left { |
| 5056 | float: left !important; } |
| 5057 | .float-sm-right { |
| 5058 | float: right !important; } |
| 5059 | .float-sm-none { |
| 5060 | float: none !important; } } |
| 5061 | |
00day0 | 769a17f | 2019-04-08 12:31:11 +0200 | [diff] [blame] | 5062 | @media (min-width: 868px) { |
Unknown | d2db0f1 | 2019-01-10 14:22:00 -0500 | [diff] [blame] | 5063 | .float-md-left { |
| 5064 | float: left !important; } |
| 5065 | .float-md-right { |
| 5066 | float: right !important; } |
| 5067 | .float-md-none { |
| 5068 | float: none !important; } } |
| 5069 | |
| 5070 | @media (min-width: 992px) { |
| 5071 | .float-lg-left { |
| 5072 | float: left !important; } |
| 5073 | .float-lg-right { |
| 5074 | float: right !important; } |
| 5075 | .float-lg-none { |
| 5076 | float: none !important; } } |
| 5077 | |
| 5078 | @media (min-width: 1200px) { |
| 5079 | .float-xl-left { |
| 5080 | float: left !important; } |
| 5081 | .float-xl-right { |
| 5082 | float: right !important; } |
| 5083 | .float-xl-none { |
| 5084 | float: none !important; } } |
| 5085 | |
| 5086 | .position-static { |
| 5087 | position: static !important; } |
| 5088 | |
| 5089 | .position-relative { |
| 5090 | position: relative !important; } |
| 5091 | |
| 5092 | .position-absolute { |
| 5093 | position: absolute !important; } |
| 5094 | |
| 5095 | .position-fixed { |
| 5096 | position: fixed !important; } |
| 5097 | |
| 5098 | .position-sticky { |
| 5099 | position: -webkit-sticky !important; |
| 5100 | position: sticky !important; } |
| 5101 | |
| 5102 | .fixed-top { |
| 5103 | position: fixed; |
| 5104 | top: 0; |
| 5105 | right: 0; |
| 5106 | left: 0; |
| 5107 | z-index: 1030; } |
| 5108 | |
| 5109 | .fixed-bottom { |
| 5110 | position: fixed; |
| 5111 | right: 0; |
| 5112 | bottom: 0; |
| 5113 | left: 0; |
| 5114 | z-index: 1030; } |
| 5115 | |
| 5116 | @supports ((position: -webkit-sticky) or (position: sticky)) { |
| 5117 | .sticky-top { |
| 5118 | position: -webkit-sticky; |
| 5119 | position: sticky; |
| 5120 | top: 0; |
| 5121 | z-index: 1020; } } |
| 5122 | |
| 5123 | .sr-only { |
| 5124 | position: absolute; |
| 5125 | width: 1px; |
| 5126 | height: 1px; |
| 5127 | padding: 0; |
| 5128 | overflow: hidden; |
| 5129 | clip: rect(0, 0, 0, 0); |
| 5130 | white-space: nowrap; |
| 5131 | border: 0; } |
| 5132 | |
| 5133 | .sr-only-focusable:active, .sr-only-focusable:focus { |
| 5134 | position: static; |
| 5135 | width: auto; |
| 5136 | height: auto; |
| 5137 | overflow: visible; |
| 5138 | clip: auto; |
| 5139 | white-space: normal; } |
| 5140 | |
| 5141 | .shadow-sm { |
| 5142 | box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; } |
| 5143 | |
| 5144 | .shadow { |
| 5145 | box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; } |
| 5146 | |
| 5147 | .shadow-lg { |
| 5148 | box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; } |
| 5149 | |
| 5150 | .shadow-none { |
| 5151 | box-shadow: none !important; } |
| 5152 | |
| 5153 | .w-25 { |
| 5154 | width: 25% !important; } |
| 5155 | |
| 5156 | .w-50 { |
| 5157 | width: 50% !important; } |
| 5158 | |
| 5159 | .w-75 { |
| 5160 | width: 75% !important; } |
| 5161 | |
| 5162 | .w-100 { |
| 5163 | width: 100% !important; } |
| 5164 | |
| 5165 | .w-auto { |
| 5166 | width: auto !important; } |
| 5167 | |
| 5168 | .h-25 { |
| 5169 | height: 25% !important; } |
| 5170 | |
| 5171 | .h-50 { |
| 5172 | height: 50% !important; } |
| 5173 | |
| 5174 | .h-75 { |
| 5175 | height: 75% !important; } |
| 5176 | |
| 5177 | .h-100 { |
| 5178 | height: 100% !important; } |
| 5179 | |
| 5180 | .h-auto { |
| 5181 | height: auto !important; } |
| 5182 | |
| 5183 | .mw-100 { |
| 5184 | max-width: 100% !important; } |
| 5185 | |
| 5186 | .mh-100 { |
| 5187 | max-height: 100% !important; } |
| 5188 | |
| 5189 | .m-0 { |
| 5190 | margin: 0 !important; } |
| 5191 | |
| 5192 | .mt-0, |
| 5193 | .my-0 { |
| 5194 | margin-top: 0 !important; } |
| 5195 | |
| 5196 | .mr-0, |
| 5197 | .mx-0 { |
| 5198 | margin-right: 0 !important; } |
| 5199 | |
| 5200 | .mb-0, |
| 5201 | .my-0 { |
| 5202 | margin-bottom: 0 !important; } |
| 5203 | |
| 5204 | .ml-0, |
| 5205 | .mx-0 { |
| 5206 | margin-left: 0 !important; } |
| 5207 | |
| 5208 | .m-1 { |
| 5209 | margin: 0.375rem !important; } |
| 5210 | |
| 5211 | .mt-1, |
| 5212 | .my-1 { |
| 5213 | margin-top: 0.375rem !important; } |
| 5214 | |
| 5215 | .mr-1, |
| 5216 | .mx-1 { |
| 5217 | margin-right: 0.375rem !important; } |
| 5218 | |
| 5219 | .mb-1, |
| 5220 | .my-1 { |
| 5221 | margin-bottom: 0.375rem !important; } |
| 5222 | |
| 5223 | .ml-1, |
| 5224 | .mx-1 { |
| 5225 | margin-left: 0.375rem !important; } |
| 5226 | |
| 5227 | .m-2 { |
| 5228 | margin: 0.75rem !important; } |
| 5229 | |
| 5230 | .mt-2, |
| 5231 | .my-2 { |
| 5232 | margin-top: 0.75rem !important; } |
| 5233 | |
| 5234 | .mr-2, |
| 5235 | .mx-2 { |
| 5236 | margin-right: 0.75rem !important; } |
| 5237 | |
| 5238 | .mb-2, |
| 5239 | .my-2 { |
| 5240 | margin-bottom: 0.75rem !important; } |
| 5241 | |
| 5242 | .ml-2, |
| 5243 | .mx-2 { |
| 5244 | margin-left: 0.75rem !important; } |
| 5245 | |
| 5246 | .m-3 { |
| 5247 | margin: 1.5rem !important; } |
| 5248 | |
| 5249 | .mt-3, |
| 5250 | .my-3 { |
| 5251 | margin-top: 1.5rem !important; } |
| 5252 | |
| 5253 | .mr-3, |
| 5254 | .mx-3 { |
| 5255 | margin-right: 1.5rem !important; } |
| 5256 | |
| 5257 | .mb-3, |
| 5258 | .my-3 { |
| 5259 | margin-bottom: 1.5rem !important; } |
| 5260 | |
| 5261 | .ml-3, |
| 5262 | .mx-3 { |
| 5263 | margin-left: 1.5rem !important; } |
| 5264 | |
| 5265 | .m-4 { |
| 5266 | margin: 2.25rem !important; } |
| 5267 | |
| 5268 | .mt-4, |
| 5269 | .my-4 { |
| 5270 | margin-top: 2.25rem !important; } |
| 5271 | |
| 5272 | .mr-4, |
| 5273 | .mx-4 { |
| 5274 | margin-right: 2.25rem !important; } |
| 5275 | |
| 5276 | .mb-4, |
| 5277 | .my-4 { |
| 5278 | margin-bottom: 2.25rem !important; } |
| 5279 | |
| 5280 | .ml-4, |
| 5281 | .mx-4 { |
| 5282 | margin-left: 2.25rem !important; } |
| 5283 | |
| 5284 | .m-5 { |
| 5285 | margin: 4.5rem !important; } |
| 5286 | |
| 5287 | .mt-5, |
| 5288 | .my-5 { |
| 5289 | margin-top: 4.5rem !important; } |
| 5290 | |
| 5291 | .mr-5, |
| 5292 | .mx-5 { |
| 5293 | margin-right: 4.5rem !important; } |
| 5294 | |
| 5295 | .mb-5, |
| 5296 | .my-5 { |
| 5297 | margin-bottom: 4.5rem !important; } |
| 5298 | |
| 5299 | .ml-5, |
| 5300 | .mx-5 { |
| 5301 | margin-left: 4.5rem !important; } |
| 5302 | |
| 5303 | .p-0 { |
| 5304 | padding: 0 !important; } |
| 5305 | |
| 5306 | .pt-0, |
| 5307 | .py-0 { |
| 5308 | padding-top: 0 !important; } |
| 5309 | |
| 5310 | .pr-0, |
| 5311 | .px-0 { |
| 5312 | padding-right: 0 !important; } |
| 5313 | |
| 5314 | .pb-0, |
| 5315 | .py-0 { |
| 5316 | padding-bottom: 0 !important; } |
| 5317 | |
| 5318 | .pl-0, |
| 5319 | .px-0 { |
| 5320 | padding-left: 0 !important; } |
| 5321 | |
| 5322 | .p-1 { |
| 5323 | padding: 0.375rem !important; } |
| 5324 | |
| 5325 | .pt-1, |
| 5326 | .py-1 { |
| 5327 | padding-top: 0.375rem !important; } |
| 5328 | |
| 5329 | .pr-1, |
| 5330 | .px-1 { |
| 5331 | padding-right: 0.375rem !important; } |
| 5332 | |
| 5333 | .pb-1, |
| 5334 | .py-1 { |
| 5335 | padding-bottom: 0.375rem !important; } |
| 5336 | |
| 5337 | .pl-1, |
| 5338 | .px-1 { |
| 5339 | padding-left: 0.375rem !important; } |
| 5340 | |
| 5341 | .p-2 { |
| 5342 | padding: 0.75rem !important; } |
| 5343 | |
| 5344 | .pt-2, |
| 5345 | .py-2 { |
| 5346 | padding-top: 0.75rem !important; } |
| 5347 | |
| 5348 | .pr-2, |
| 5349 | .px-2 { |
| 5350 | padding-right: 0.75rem !important; } |
| 5351 | |
| 5352 | .pb-2, |
| 5353 | .py-2 { |
| 5354 | padding-bottom: 0.75rem !important; } |
| 5355 | |
| 5356 | .pl-2, |
| 5357 | .px-2 { |
| 5358 | padding-left: 0.75rem !important; } |
| 5359 | |
| 5360 | .p-3 { |
| 5361 | padding: 1.5rem !important; } |
| 5362 | |
| 5363 | .pt-3, |
| 5364 | .py-3 { |
| 5365 | padding-top: 1.5rem !important; } |
| 5366 | |
| 5367 | .pr-3, |
| 5368 | .px-3 { |
| 5369 | padding-right: 1.5rem !important; } |
| 5370 | |
| 5371 | .pb-3, |
| 5372 | .py-3 { |
| 5373 | padding-bottom: 1.5rem !important; } |
| 5374 | |
| 5375 | .pl-3, |
| 5376 | .px-3 { |
| 5377 | padding-left: 1.5rem !important; } |
| 5378 | |
| 5379 | .p-4 { |
| 5380 | padding: 2.25rem !important; } |
| 5381 | |
| 5382 | .pt-4, |
| 5383 | .py-4 { |
| 5384 | padding-top: 2.25rem !important; } |
| 5385 | |
| 5386 | .pr-4, |
| 5387 | .px-4 { |
| 5388 | padding-right: 2.25rem !important; } |
| 5389 | |
| 5390 | .pb-4, |
| 5391 | .py-4 { |
| 5392 | padding-bottom: 2.25rem !important; } |
| 5393 | |
| 5394 | .pl-4, |
| 5395 | .px-4 { |
| 5396 | padding-left: 2.25rem !important; } |
| 5397 | |
| 5398 | .p-5 { |
| 5399 | padding: 4.5rem !important; } |
| 5400 | |
| 5401 | .pt-5, |
| 5402 | .py-5 { |
| 5403 | padding-top: 4.5rem !important; } |
| 5404 | |
00day0 | 354614c | 2019-04-08 12:16:19 +0200 | [diff] [blame] | 5405 | .pt-6 {} |
| 5406 | @media (min-width: 576px) { |
| 5407 | .pt-6 { |
| 5408 | max-width: 540px; } } |
00day0 | 769a17f | 2019-04-08 12:31:11 +0200 | [diff] [blame] | 5409 | @media (min-width: 868px) { |
00day0 | 354614c | 2019-04-08 12:16:19 +0200 | [diff] [blame] | 5410 | .pt-6 { |
| 5411 | max-width: 1140px; } } } |
| 5412 | |
Unknown | d2db0f1 | 2019-01-10 14:22:00 -0500 | [diff] [blame] | 5413 | .pr-5, |
| 5414 | .px-5 { |
| 5415 | padding-right: 4.5rem !important; } |
| 5416 | |
| 5417 | .pb-5, |
| 5418 | .py-5 { |
| 5419 | padding-bottom: 4.5rem !important; } |
| 5420 | |
| 5421 | .pl-5, |
| 5422 | .px-5 { |
| 5423 | padding-left: 4.5rem !important; } |
| 5424 | |
| 5425 | .m-auto { |
| 5426 | margin: auto !important; } |
| 5427 | |
| 5428 | .mt-auto, |
| 5429 | .my-auto { |
| 5430 | margin-top: auto !important; } |
| 5431 | |
| 5432 | .mr-auto, |
| 5433 | .mx-auto { |
| 5434 | margin-right: auto !important; } |
| 5435 | |
| 5436 | .mb-auto, |
| 5437 | .my-auto { |
| 5438 | margin-bottom: auto !important; } |
| 5439 | |
| 5440 | .ml-auto, |
| 5441 | .mx-auto { |
| 5442 | margin-left: auto !important; } |
| 5443 | |
| 5444 | @media (min-width: 576px) { |
| 5445 | .m-sm-0 { |
| 5446 | margin: 0 !important; } |
| 5447 | .mt-sm-0, |
| 5448 | .my-sm-0 { |
| 5449 | margin-top: 0 !important; } |
| 5450 | .mr-sm-0, |
| 5451 | .mx-sm-0 { |
| 5452 | margin-right: 0 !important; } |
| 5453 | .mb-sm-0, |
| 5454 | .my-sm-0 { |
| 5455 | margin-bottom: 0 !important; } |
| 5456 | .ml-sm-0, |
| 5457 | .mx-sm-0 { |
| 5458 | margin-left: 0 !important; } |
| 5459 | .m-sm-1 { |
| 5460 | margin: 0.375rem !important; } |
| 5461 | .mt-sm-1, |
| 5462 | .my-sm-1 { |
| 5463 | margin-top: 0.375rem !important; } |
| 5464 | .mr-sm-1, |
| 5465 | .mx-sm-1 { |
| 5466 | margin-right: 0.375rem !important; } |
| 5467 | .mb-sm-1, |
| 5468 | .my-sm-1 { |
| 5469 | margin-bottom: 0.375rem !important; } |
| 5470 | .ml-sm-1, |
| 5471 | .mx-sm-1 { |
| 5472 | margin-left: 0.375rem !important; } |
| 5473 | .m-sm-2 { |
| 5474 | margin: 0.75rem !important; } |
| 5475 | .mt-sm-2, |
| 5476 | .my-sm-2 { |
| 5477 | margin-top: 0.75rem !important; } |
| 5478 | .mr-sm-2, |
| 5479 | .mx-sm-2 { |
| 5480 | margin-right: 0.75rem !important; } |
| 5481 | .mb-sm-2, |
| 5482 | .my-sm-2 { |
| 5483 | margin-bottom: 0.75rem !important; } |
| 5484 | .ml-sm-2, |
| 5485 | .mx-sm-2 { |
| 5486 | margin-left: 0.75rem !important; } |
| 5487 | .m-sm-3 { |
| 5488 | margin: 1.5rem !important; } |
| 5489 | .mt-sm-3, |
| 5490 | .my-sm-3 { |
| 5491 | margin-top: 1.5rem !important; } |
| 5492 | .mr-sm-3, |
| 5493 | .mx-sm-3 { |
| 5494 | margin-right: 1.5rem !important; } |
| 5495 | .mb-sm-3, |
| 5496 | .my-sm-3 { |
| 5497 | margin-bottom: 1.5rem !important; } |
| 5498 | .ml-sm-3, |
| 5499 | .mx-sm-3 { |
| 5500 | margin-left: 1.5rem !important; } |
| 5501 | .m-sm-4 { |
| 5502 | margin: 2.25rem !important; } |
| 5503 | .mt-sm-4, |
| 5504 | .my-sm-4 { |
| 5505 | margin-top: 2.25rem !important; } |
| 5506 | .mr-sm-4, |
| 5507 | .mx-sm-4 { |
| 5508 | margin-right: 2.25rem !important; } |
| 5509 | .mb-sm-4, |
| 5510 | .my-sm-4 { |
| 5511 | margin-bottom: 2.25rem !important; } |
| 5512 | .ml-sm-4, |
| 5513 | .mx-sm-4 { |
| 5514 | margin-left: 2.25rem !important; } |
| 5515 | .m-sm-5 { |
| 5516 | margin: 4.5rem !important; } |
| 5517 | .mt-sm-5, |
| 5518 | .my-sm-5 { |
| 5519 | margin-top: 4.5rem !important; } |
| 5520 | .mr-sm-5, |
| 5521 | .mx-sm-5 { |
| 5522 | margin-right: 4.5rem !important; } |
| 5523 | .mb-sm-5, |
| 5524 | .my-sm-5 { |
| 5525 | margin-bottom: 4.5rem !important; } |
| 5526 | .ml-sm-5, |
| 5527 | .mx-sm-5 { |
| 5528 | margin-left: 4.5rem !important; } |
| 5529 | .p-sm-0 { |
| 5530 | padding: 0 !important; } |
| 5531 | .pt-sm-0, |
| 5532 | .py-sm-0 { |
| 5533 | padding-top: 0 !important; } |
| 5534 | .pr-sm-0, |
| 5535 | .px-sm-0 { |
| 5536 | padding-right: 0 !important; } |
| 5537 | .pb-sm-0, |
| 5538 | .py-sm-0 { |
| 5539 | padding-bottom: 0 !important; } |
| 5540 | .pl-sm-0, |
| 5541 | .px-sm-0 { |
| 5542 | padding-left: 0 !important; } |
| 5543 | .p-sm-1 { |
| 5544 | padding: 0.375rem !important; } |
| 5545 | .pt-sm-1, |
| 5546 | .py-sm-1 { |
| 5547 | padding-top: 0.375rem !important; } |
| 5548 | .pr-sm-1, |
| 5549 | .px-sm-1 { |
| 5550 | padding-right: 0.375rem !important; } |
| 5551 | .pb-sm-1, |
| 5552 | .py-sm-1 { |
| 5553 | padding-bottom: 0.375rem !important; } |
| 5554 | .pl-sm-1, |
| 5555 | .px-sm-1 { |
| 5556 | padding-left: 0.375rem !important; } |
| 5557 | .p-sm-2 { |
| 5558 | padding: 0.75rem !important; } |
| 5559 | .pt-sm-2, |
| 5560 | .py-sm-2 { |
| 5561 | padding-top: 0.75rem !important; } |
| 5562 | .pr-sm-2, |
| 5563 | .px-sm-2 { |
| 5564 | padding-right: 0.75rem !important; } |
| 5565 | .pb-sm-2, |
| 5566 | .py-sm-2 { |
| 5567 | padding-bottom: 0.75rem !important; } |
| 5568 | .pl-sm-2, |
| 5569 | .px-sm-2 { |
| 5570 | padding-left: 0.75rem !important; } |
| 5571 | .p-sm-3 { |
| 5572 | padding: 1.5rem !important; } |
| 5573 | .pt-sm-3, |
| 5574 | .py-sm-3 { |
| 5575 | padding-top: 1.5rem !important; } |
| 5576 | .pr-sm-3, |
| 5577 | .px-sm-3 { |
| 5578 | padding-right: 1.5rem !important; } |
| 5579 | .pb-sm-3, |
| 5580 | .py-sm-3 { |
| 5581 | padding-bottom: 1.5rem !important; } |
| 5582 | .pl-sm-3, |
| 5583 | .px-sm-3 { |
| 5584 | padding-left: 1.5rem !important; } |
| 5585 | .p-sm-4 { |
| 5586 | padding: 2.25rem !important; } |
| 5587 | .pt-sm-4, |
| 5588 | .py-sm-4 { |
| 5589 | padding-top: 2.25rem !important; } |
| 5590 | .pr-sm-4, |
| 5591 | .px-sm-4 { |
| 5592 | padding-right: 2.25rem !important; } |
| 5593 | .pb-sm-4, |
| 5594 | .py-sm-4 { |
| 5595 | padding-bottom: 2.25rem !important; } |
| 5596 | .pl-sm-4, |
| 5597 | .px-sm-4 { |
| 5598 | padding-left: 2.25rem !important; } |
| 5599 | .p-sm-5 { |
| 5600 | padding: 4.5rem !important; } |
| 5601 | .pt-sm-5, |
| 5602 | .py-sm-5 { |
| 5603 | padding-top: 4.5rem !important; } |
| 5604 | .pr-sm-5, |
| 5605 | .px-sm-5 { |
| 5606 | padding-right: 4.5rem !important; } |
| 5607 | .pb-sm-5, |
| 5608 | .py-sm-5 { |
| 5609 | padding-bottom: 4.5rem !important; } |
| 5610 | .pl-sm-5, |
| 5611 | .px-sm-5 { |
| 5612 | padding-left: 4.5rem !important; } |
| 5613 | .m-sm-auto { |
| 5614 | margin: auto !important; } |
| 5615 | .mt-sm-auto, |
| 5616 | .my-sm-auto { |
| 5617 | margin-top: auto !important; } |
| 5618 | .mr-sm-auto, |
| 5619 | .mx-sm-auto { |
| 5620 | margin-right: auto !important; } |
| 5621 | .mb-sm-auto, |
| 5622 | .my-sm-auto { |
| 5623 | margin-bottom: auto !important; } |
| 5624 | .ml-sm-auto, |
| 5625 | .mx-sm-auto { |
| 5626 | margin-left: auto !important; } } |
| 5627 | |
00day0 | 769a17f | 2019-04-08 12:31:11 +0200 | [diff] [blame] | 5628 | @media (min-width: 868px) { |
Unknown | d2db0f1 | 2019-01-10 14:22:00 -0500 | [diff] [blame] | 5629 | .m-md-0 { |
| 5630 | margin: 0 !important; } |
| 5631 | .mt-md-0, |
| 5632 | .my-md-0 { |
| 5633 | margin-top: 0 !important; } |
| 5634 | .mr-md-0, |
| 5635 | .mx-md-0 { |
| 5636 | margin-right: 0 !important; } |
| 5637 | .mb-md-0, |
| 5638 | .my-md-0 { |
| 5639 | margin-bottom: 0 !important; } |
| 5640 | .ml-md-0, |
| 5641 | .mx-md-0 { |
| 5642 | margin-left: 0 !important; } |
| 5643 | .m-md-1 { |
| 5644 | margin: 0.375rem !important; } |
| 5645 | .mt-md-1, |
| 5646 | .my-md-1 { |
| 5647 | margin-top: 0.375rem !important; } |
| 5648 | .mr-md-1, |
| 5649 | .mx-md-1 { |
| 5650 | margin-right: 0.375rem !important; } |
| 5651 | .mb-md-1, |
| 5652 | .my-md-1 { |
| 5653 | margin-bottom: 0.375rem !important; } |
| 5654 | .ml-md-1, |
| 5655 | .mx-md-1 { |
| 5656 | margin-left: 0.375rem !important; } |
| 5657 | .m-md-2 { |
| 5658 | margin: 0.75rem !important; } |
| 5659 | .mt-md-2, |
| 5660 | .my-md-2 { |
| 5661 | margin-top: 0.75rem !important; } |
| 5662 | .mr-md-2, |
| 5663 | .mx-md-2 { |
| 5664 | margin-right: 0.75rem !important; } |
| 5665 | .mb-md-2, |
| 5666 | .my-md-2 { |
| 5667 | margin-bottom: 0.75rem !important; } |
| 5668 | .ml-md-2, |
| 5669 | .mx-md-2 { |
| 5670 | margin-left: 0.75rem !important; } |
| 5671 | .m-md-3 { |
| 5672 | margin: 1.5rem !important; } |
| 5673 | .mt-md-3, |
| 5674 | .my-md-3 { |
| 5675 | margin-top: 1.5rem !important; } |
| 5676 | .mr-md-3, |
| 5677 | .mx-md-3 { |
| 5678 | margin-right: 1.5rem !important; } |
| 5679 | .mb-md-3, |
| 5680 | .my-md-3 { |
| 5681 | margin-bottom: 1.5rem !important; } |
| 5682 | .ml-md-3, |
| 5683 | .mx-md-3 { |
| 5684 | margin-left: 1.5rem !important; } |
| 5685 | .m-md-4 { |
| 5686 | margin: 2.25rem !important; } |
| 5687 | .mt-md-4, |
| 5688 | .my-md-4 { |
| 5689 | margin-top: 2.25rem !important; } |
| 5690 | .mr-md-4, |
| 5691 | .mx-md-4 { |
| 5692 | margin-right: 2.25rem !important; } |
| 5693 | .mb-md-4, |
| 5694 | .my-md-4 { |
| 5695 | margin-bottom: 2.25rem !important; } |
| 5696 | .ml-md-4, |
| 5697 | .mx-md-4 { |
| 5698 | margin-left: 2.25rem !important; } |
| 5699 | .m-md-5 { |
| 5700 | margin: 4.5rem !important; } |
| 5701 | .mt-md-5, |
| 5702 | .my-md-5 { |
| 5703 | margin-top: 4.5rem !important; } |
| 5704 | .mr-md-5, |
| 5705 | .mx-md-5 { |
| 5706 | margin-right: 4.5rem !important; } |
| 5707 | .mb-md-5, |
| 5708 | .my-md-5 { |
| 5709 | margin-bottom: 4.5rem !important; } |
| 5710 | .ml-md-5, |
| 5711 | .mx-md-5 { |
| 5712 | margin-left: 4.5rem !important; } |
| 5713 | .p-md-0 { |
| 5714 | padding: 0 !important; } |
| 5715 | .pt-md-0, |
| 5716 | .py-md-0 { |
| 5717 | padding-top: 0 !important; } |
| 5718 | .pr-md-0, |
| 5719 | .px-md-0 { |
| 5720 | padding-right: 0 !important; } |
| 5721 | .pb-md-0, |
| 5722 | .py-md-0 { |
| 5723 | padding-bottom: 0 !important; } |
| 5724 | .pl-md-0, |
| 5725 | .px-md-0 { |
| 5726 | padding-left: 0 !important; } |
| 5727 | .p-md-1 { |
| 5728 | padding: 0.375rem !important; } |
| 5729 | .pt-md-1, |
| 5730 | .py-md-1 { |
| 5731 | padding-top: 0.375rem !important; } |
| 5732 | .pr-md-1, |
| 5733 | .px-md-1 { |
| 5734 | padding-right: 0.375rem !important; } |
| 5735 | .pb-md-1, |
| 5736 | .py-md-1 { |
| 5737 | padding-bottom: 0.375rem !important; } |
| 5738 | .pl-md-1, |
| 5739 | .px-md-1 { |
| 5740 | padding-left: 0.375rem !important; } |
| 5741 | .p-md-2 { |
| 5742 | padding: 0.75rem !important; } |
| 5743 | .pt-md-2, |
| 5744 | .py-md-2 { |
| 5745 | padding-top: 0.75rem !important; } |
| 5746 | .pr-md-2, |
| 5747 | .px-md-2 { |
| 5748 | padding-right: 0.75rem !important; } |
| 5749 | .pb-md-2, |
| 5750 | .py-md-2 { |
| 5751 | padding-bottom: 0.75rem !important; } |
| 5752 | .pl-md-2, |
| 5753 | .px-md-2 { |
| 5754 | padding-left: 0.75rem !important; } |
| 5755 | .p-md-3 { |
| 5756 | padding: 1.5rem !important; } |
| 5757 | .pt-md-3, |
| 5758 | .py-md-3 { |
| 5759 | padding-top: 1.5rem !important; } |
| 5760 | .pr-md-3, |
| 5761 | .px-md-3 { |
| 5762 | padding-right: 1.5rem !important; } |
| 5763 | .pb-md-3, |
| 5764 | .py-md-3 { |
| 5765 | padding-bottom: 1.5rem !important; } |
| 5766 | .pl-md-3, |
| 5767 | .px-md-3 { |
| 5768 | padding-left: 1.5rem !important; } |
| 5769 | .p-md-4 { |
| 5770 | padding: 2.25rem !important; } |
| 5771 | .pt-md-4, |
| 5772 | .py-md-4 { |
| 5773 | padding-top: 2.25rem !important; } |
| 5774 | .pr-md-4, |
| 5775 | .px-md-4 { |
| 5776 | padding-right: 2.25rem !important; } |
| 5777 | .pb-md-4, |
| 5778 | .py-md-4 { |
| 5779 | padding-bottom: 2.25rem !important; } |
| 5780 | .pl-md-4, |
| 5781 | .px-md-4 { |
| 5782 | padding-left: 2.25rem !important; } |
| 5783 | .p-md-5 { |
| 5784 | padding: 4.5rem !important; } |
| 5785 | .pt-md-5, |
| 5786 | .py-md-5 { |
| 5787 | padding-top: 4.5rem !important; } |
| 5788 | .pr-md-5, |
| 5789 | .px-md-5 { |
| 5790 | padding-right: 4.5rem !important; } |
| 5791 | .pb-md-5, |
| 5792 | .py-md-5 { |
| 5793 | padding-bottom: 4.5rem !important; } |
| 5794 | .pl-md-5, |
| 5795 | .px-md-5 { |
| 5796 | padding-left: 4.5rem !important; } |
| 5797 | .m-md-auto { |
| 5798 | margin: auto !important; } |
| 5799 | .mt-md-auto, |
| 5800 | .my-md-auto { |
| 5801 | margin-top: auto !important; } |
| 5802 | .mr-md-auto, |
| 5803 | .mx-md-auto { |
| 5804 | margin-right: auto !important; } |
| 5805 | .mb-md-auto, |
| 5806 | .my-md-auto { |
| 5807 | margin-bottom: auto !important; } |
| 5808 | .ml-md-auto, |
| 5809 | .mx-md-auto { |
| 5810 | margin-left: auto !important; } } |
| 5811 | |
| 5812 | @media (min-width: 992px) { |
| 5813 | .m-lg-0 { |
| 5814 | margin: 0 !important; } |
| 5815 | .mt-lg-0, |
| 5816 | .my-lg-0 { |
| 5817 | margin-top: 0 !important; } |
| 5818 | .mr-lg-0, |
| 5819 | .mx-lg-0 { |
| 5820 | margin-right: 0 !important; } |
| 5821 | .mb-lg-0, |
| 5822 | .my-lg-0 { |
| 5823 | margin-bottom: 0 !important; } |
| 5824 | .ml-lg-0, |
| 5825 | .mx-lg-0 { |
| 5826 | margin-left: 0 !important; } |
| 5827 | .m-lg-1 { |
| 5828 | margin: 0.375rem !important; } |
| 5829 | .mt-lg-1, |
| 5830 | .my-lg-1 { |
| 5831 | margin-top: 0.375rem !important; } |
| 5832 | .mr-lg-1, |
| 5833 | .mx-lg-1 { |
| 5834 | margin-right: 0.375rem !important; } |
| 5835 | .mb-lg-1, |
| 5836 | .my-lg-1 { |
| 5837 | margin-bottom: 0.375rem !important; } |
| 5838 | .ml-lg-1, |
| 5839 | .mx-lg-1 { |
| 5840 | margin-left: 0.375rem !important; } |
| 5841 | .m-lg-2 { |
| 5842 | margin: 0.75rem !important; } |
| 5843 | .mt-lg-2, |
| 5844 | .my-lg-2 { |
| 5845 | margin-top: 0.75rem !important; } |
| 5846 | .mr-lg-2, |
| 5847 | .mx-lg-2 { |
| 5848 | margin-right: 0.75rem !important; } |
| 5849 | .mb-lg-2, |
| 5850 | .my-lg-2 { |
| 5851 | margin-bottom: 0.75rem !important; } |
| 5852 | .ml-lg-2, |
| 5853 | .mx-lg-2 { |
| 5854 | margin-left: 0.75rem !important; } |
| 5855 | .m-lg-3 { |
| 5856 | margin: 1.5rem !important; } |
| 5857 | .mt-lg-3, |
| 5858 | .my-lg-3 { |
| 5859 | margin-top: 1.5rem !important; } |
| 5860 | .mr-lg-3, |
| 5861 | .mx-lg-3 { |
| 5862 | margin-right: 1.5rem !important; } |
| 5863 | .mb-lg-3, |
| 5864 | .my-lg-3 { |
| 5865 | margin-bottom: 1.5rem !important; } |
| 5866 | .ml-lg-3, |
| 5867 | .mx-lg-3 { |
| 5868 | margin-left: 1.5rem !important; } |
| 5869 | .m-lg-4 { |
| 5870 | margin: 2.25rem !important; } |
| 5871 | .mt-lg-4, |
| 5872 | .my-lg-4 { |
| 5873 | margin-top: 2.25rem !important; } |
| 5874 | .mr-lg-4, |
| 5875 | .mx-lg-4 { |
| 5876 | margin-right: 2.25rem !important; } |
| 5877 | .mb-lg-4, |
| 5878 | .my-lg-4 { |
| 5879 | margin-bottom: 2.25rem !important; } |
| 5880 | .ml-lg-4, |
| 5881 | .mx-lg-4 { |
| 5882 | margin-left: 2.25rem !important; } |
| 5883 | .m-lg-5 { |
| 5884 | margin: 4.5rem !important; } |
| 5885 | .mt-lg-5, |
| 5886 | .my-lg-5 { |
| 5887 | margin-top: 4.5rem !important; } |
| 5888 | .mr-lg-5, |
| 5889 | .mx-lg-5 { |
| 5890 | margin-right: 4.5rem !important; } |
| 5891 | .mb-lg-5, |
| 5892 | .my-lg-5 { |
| 5893 | margin-bottom: 4.5rem !important; } |
| 5894 | .ml-lg-5, |
| 5895 | .mx-lg-5 { |
| 5896 | margin-left: 4.5rem !important; } |
| 5897 | .p-lg-0 { |
| 5898 | padding: 0 !important; } |
| 5899 | .pt-lg-0, |
| 5900 | .py-lg-0 { |
| 5901 | padding-top: 0 !important; } |
| 5902 | .pr-lg-0, |
| 5903 | .px-lg-0 { |
| 5904 | padding-right: 0 !important; } |
| 5905 | .pb-lg-0, |
| 5906 | .py-lg-0 { |
| 5907 | padding-bottom: 0 !important; } |
| 5908 | .pl-lg-0, |
| 5909 | .px-lg-0 { |
| 5910 | padding-left: 0 !important; } |
| 5911 | .p-lg-1 { |
| 5912 | padding: 0.375rem !important; } |
| 5913 | .pt-lg-1, |
| 5914 | .py-lg-1 { |
| 5915 | padding-top: 0.375rem !important; } |
| 5916 | .pr-lg-1, |
| 5917 | .px-lg-1 { |
| 5918 | padding-right: 0.375rem !important; } |
| 5919 | .pb-lg-1, |
| 5920 | .py-lg-1 { |
| 5921 | padding-bottom: 0.375rem !important; } |
| 5922 | .pl-lg-1, |
| 5923 | .px-lg-1 { |
| 5924 | padding-left: 0.375rem !important; } |
| 5925 | .p-lg-2 { |
| 5926 | padding: 0.75rem !important; } |
| 5927 | .pt-lg-2, |
| 5928 | .py-lg-2 { |
| 5929 | padding-top: 0.75rem !important; } |
| 5930 | .pr-lg-2, |
| 5931 | .px-lg-2 { |
| 5932 | padding-right: 0.75rem !important; } |
| 5933 | .pb-lg-2, |
| 5934 | .py-lg-2 { |
| 5935 | padding-bottom: 0.75rem !important; } |
| 5936 | .pl-lg-2, |
| 5937 | .px-lg-2 { |
| 5938 | padding-left: 0.75rem !important; } |
| 5939 | .p-lg-3 { |
| 5940 | padding: 1.5rem !important; } |
| 5941 | .pt-lg-3, |
| 5942 | .py-lg-3 { |
| 5943 | padding-top: 1.5rem !important; } |
| 5944 | .pr-lg-3, |
| 5945 | .px-lg-3 { |
| 5946 | padding-right: 1.5rem !important; } |
| 5947 | .pb-lg-3, |
| 5948 | .py-lg-3 { |
| 5949 | padding-bottom: 1.5rem !important; } |
| 5950 | .pl-lg-3, |
| 5951 | .px-lg-3 { |
| 5952 | padding-left: 1.5rem !important; } |
| 5953 | .p-lg-4 { |
| 5954 | padding: 2.25rem !important; } |
| 5955 | .pt-lg-4, |
| 5956 | .py-lg-4 { |
| 5957 | padding-top: 2.25rem !important; } |
| 5958 | .pr-lg-4, |
| 5959 | .px-lg-4 { |
| 5960 | padding-right: 2.25rem !important; } |
| 5961 | .pb-lg-4, |
| 5962 | .py-lg-4 { |
| 5963 | padding-bottom: 2.25rem !important; } |
| 5964 | .pl-lg-4, |
| 5965 | .px-lg-4 { |
| 5966 | padding-left: 2.25rem !important; } |
| 5967 | .p-lg-5 { |
| 5968 | padding: 4.5rem !important; } |
| 5969 | .pt-lg-5, |
| 5970 | .py-lg-5 { |
| 5971 | padding-top: 4.5rem !important; } |
| 5972 | .pr-lg-5, |
| 5973 | .px-lg-5 { |
| 5974 | padding-right: 4.5rem !important; } |
| 5975 | .pb-lg-5, |
| 5976 | .py-lg-5 { |
| 5977 | padding-bottom: 4.5rem !important; } |
| 5978 | .pl-lg-5, |
| 5979 | .px-lg-5 { |
| 5980 | padding-left: 4.5rem !important; } |
| 5981 | .m-lg-auto { |
| 5982 | margin: auto !important; } |
| 5983 | .mt-lg-auto, |
| 5984 | .my-lg-auto { |
| 5985 | margin-top: auto !important; } |
| 5986 | .mr-lg-auto, |
| 5987 | .mx-lg-auto { |
| 5988 | margin-right: auto !important; } |
| 5989 | .mb-lg-auto, |
| 5990 | .my-lg-auto { |
| 5991 | margin-bottom: auto !important; } |
| 5992 | .ml-lg-auto, |
| 5993 | .mx-lg-auto { |
| 5994 | margin-left: auto !important; } } |
| 5995 | |
| 5996 | @media (min-width: 1200px) { |
| 5997 | .m-xl-0 { |
| 5998 | margin: 0 !important; } |
| 5999 | .mt-xl-0, |
| 6000 | .my-xl-0 { |
| 6001 | margin-top: 0 !important; } |
| 6002 | .mr-xl-0, |
| 6003 | .mx-xl-0 { |
| 6004 | margin-right: 0 !important; } |
| 6005 | .mb-xl-0, |
| 6006 | .my-xl-0 { |
| 6007 | margin-bottom: 0 !important; } |
| 6008 | .ml-xl-0, |
| 6009 | .mx-xl-0 { |
| 6010 | margin-left: 0 !important; } |
| 6011 | .m-xl-1 { |
| 6012 | margin: 0.375rem !important; } |
| 6013 | .mt-xl-1, |
| 6014 | .my-xl-1 { |
| 6015 | margin-top: 0.375rem !important; } |
| 6016 | .mr-xl-1, |
| 6017 | .mx-xl-1 { |
| 6018 | margin-right: 0.375rem !important; } |
| 6019 | .mb-xl-1, |
| 6020 | .my-xl-1 { |
| 6021 | margin-bottom: 0.375rem !important; } |
| 6022 | .ml-xl-1, |
| 6023 | .mx-xl-1 { |
| 6024 | margin-left: 0.375rem !important; } |
| 6025 | .m-xl-2 { |
| 6026 | margin: 0.75rem !important; } |
| 6027 | .mt-xl-2, |
| 6028 | .my-xl-2 { |
| 6029 | margin-top: 0.75rem !important; } |
| 6030 | .mr-xl-2, |
| 6031 | .mx-xl-2 { |
| 6032 | margin-right: 0.75rem !important; } |
| 6033 | .mb-xl-2, |
| 6034 | .my-xl-2 { |
| 6035 | margin-bottom: 0.75rem !important; } |
| 6036 | .ml-xl-2, |
| 6037 | .mx-xl-2 { |
| 6038 | margin-left: 0.75rem !important; } |
| 6039 | .m-xl-3 { |
| 6040 | margin: 1.5rem !important; } |
| 6041 | .mt-xl-3, |
| 6042 | .my-xl-3 { |
| 6043 | margin-top: 1.5rem !important; } |
| 6044 | .mr-xl-3, |
| 6045 | .mx-xl-3 { |
| 6046 | margin-right: 1.5rem !important; } |
| 6047 | .mb-xl-3, |
| 6048 | .my-xl-3 { |
| 6049 | margin-bottom: 1.5rem !important; } |
| 6050 | .ml-xl-3, |
| 6051 | .mx-xl-3 { |
| 6052 | margin-left: 1.5rem !important; } |
| 6053 | .m-xl-4 { |
| 6054 | margin: 2.25rem !important; } |
| 6055 | .mt-xl-4, |
| 6056 | .my-xl-4 { |
| 6057 | margin-top: 2.25rem !important; } |
| 6058 | .mr-xl-4, |
| 6059 | .mx-xl-4 { |
| 6060 | margin-right: 2.25rem !important; } |
| 6061 | .mb-xl-4, |
| 6062 | .my-xl-4 { |
| 6063 | margin-bottom: 2.25rem !important; } |
| 6064 | .ml-xl-4, |
| 6065 | .mx-xl-4 { |
| 6066 | margin-left: 2.25rem !important; } |
| 6067 | .m-xl-5 { |
| 6068 | margin: 4.5rem !important; } |
| 6069 | .mt-xl-5, |
| 6070 | .my-xl-5 { |
| 6071 | margin-top: 4.5rem !important; } |
| 6072 | .mr-xl-5, |
| 6073 | .mx-xl-5 { |
| 6074 | margin-right: 4.5rem !important; } |
| 6075 | .mb-xl-5, |
| 6076 | .my-xl-5 { |
| 6077 | margin-bottom: 4.5rem !important; } |
| 6078 | .ml-xl-5, |
| 6079 | .mx-xl-5 { |
| 6080 | margin-left: 4.5rem !important; } |
| 6081 | .p-xl-0 { |
| 6082 | padding: 0 !important; } |
| 6083 | .pt-xl-0, |
| 6084 | .py-xl-0 { |
| 6085 | padding-top: 0 !important; } |
| 6086 | .pr-xl-0, |
| 6087 | .px-xl-0 { |
| 6088 | padding-right: 0 !important; } |
| 6089 | .pb-xl-0, |
| 6090 | .py-xl-0 { |
| 6091 | padding-bottom: 0 !important; } |
| 6092 | .pl-xl-0, |
| 6093 | .px-xl-0 { |
| 6094 | padding-left: 0 !important; } |
| 6095 | .p-xl-1 { |
| 6096 | padding: 0.375rem !important; } |
| 6097 | .pt-xl-1, |
| 6098 | .py-xl-1 { |
| 6099 | padding-top: 0.375rem !important; } |
| 6100 | .pr-xl-1, |
| 6101 | .px-xl-1 { |
| 6102 | padding-right: 0.375rem !important; } |
| 6103 | .pb-xl-1, |
| 6104 | .py-xl-1 { |
| 6105 | padding-bottom: 0.375rem !important; } |
| 6106 | .pl-xl-1, |
| 6107 | .px-xl-1 { |
| 6108 | padding-left: 0.375rem !important; } |
| 6109 | .p-xl-2 { |
| 6110 | padding: 0.75rem !important; } |
| 6111 | .pt-xl-2, |
| 6112 | .py-xl-2 { |
| 6113 | padding-top: 0.75rem !important; } |
| 6114 | .pr-xl-2, |
| 6115 | .px-xl-2 { |
| 6116 | padding-right: 0.75rem !important; } |
| 6117 | .pb-xl-2, |
| 6118 | .py-xl-2 { |
| 6119 | padding-bottom: 0.75rem !important; } |
| 6120 | .pl-xl-2, |
| 6121 | .px-xl-2 { |
| 6122 | padding-left: 0.75rem !important; } |
| 6123 | .p-xl-3 { |
| 6124 | padding: 1.5rem !important; } |
| 6125 | .pt-xl-3, |
| 6126 | .py-xl-3 { |
| 6127 | padding-top: 1.5rem !important; } |
| 6128 | .pr-xl-3, |
| 6129 | .px-xl-3 { |
| 6130 | padding-right: 1.5rem !important; } |
| 6131 | .pb-xl-3, |
| 6132 | .py-xl-3 { |
| 6133 | padding-bottom: 1.5rem !important; } |
| 6134 | .pl-xl-3, |
| 6135 | .px-xl-3 { |
| 6136 | padding-left: 1.5rem !important; } |
| 6137 | .p-xl-4 { |
| 6138 | padding: 2.25rem !important; } |
| 6139 | .pt-xl-4, |
| 6140 | .py-xl-4 { |
| 6141 | padding-top: 2.25rem !important; } |
| 6142 | .pr-xl-4, |
| 6143 | .px-xl-4 { |
| 6144 | padding-right: 2.25rem !important; } |
| 6145 | .pb-xl-4, |
| 6146 | .py-xl-4 { |
| 6147 | padding-bottom: 2.25rem !important; } |
| 6148 | .pl-xl-4, |
| 6149 | .px-xl-4 { |
| 6150 | padding-left: 2.25rem !important; } |
| 6151 | .p-xl-5 { |
| 6152 | padding: 4.5rem !important; } |
| 6153 | .pt-xl-5, |
| 6154 | .py-xl-5 { |
| 6155 | padding-top: 4.5rem !important; } |
| 6156 | .pr-xl-5, |
| 6157 | .px-xl-5 { |
| 6158 | padding-right: 4.5rem !important; } |
| 6159 | .pb-xl-5, |
| 6160 | .py-xl-5 { |
| 6161 | padding-bottom: 4.5rem !important; } |
| 6162 | .pl-xl-5, |
| 6163 | .px-xl-5 { |
| 6164 | padding-left: 4.5rem !important; } |
| 6165 | .m-xl-auto { |
| 6166 | margin: auto !important; } |
| 6167 | .mt-xl-auto, |
| 6168 | .my-xl-auto { |
| 6169 | margin-top: auto !important; } |
| 6170 | .mr-xl-auto, |
| 6171 | .mx-xl-auto { |
| 6172 | margin-right: auto !important; } |
| 6173 | .mb-xl-auto, |
| 6174 | .my-xl-auto { |
| 6175 | margin-bottom: auto !important; } |
| 6176 | .ml-xl-auto, |
| 6177 | .mx-xl-auto { |
| 6178 | margin-left: auto !important; } } |
| 6179 | |
| 6180 | .text-monospace { |
| 6181 | font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } |
| 6182 | |
| 6183 | .text-justify { |
| 6184 | text-align: justify !important; } |
| 6185 | |
| 6186 | .text-nowrap { |
| 6187 | white-space: nowrap !important; } |
| 6188 | |
| 6189 | .text-truncate { |
| 6190 | overflow: hidden; |
| 6191 | text-overflow: ellipsis; |
| 6192 | white-space: nowrap; } |
| 6193 | |
| 6194 | .text-left { |
| 6195 | text-align: left !important; } |
| 6196 | |
| 6197 | .text-right { |
| 6198 | text-align: right !important; } |
| 6199 | |
| 6200 | .text-center { |
| 6201 | text-align: center !important; } |
| 6202 | |
| 6203 | @media (min-width: 576px) { |
| 6204 | .text-sm-left { |
| 6205 | text-align: left !important; } |
| 6206 | .text-sm-right { |
| 6207 | text-align: right !important; } |
| 6208 | .text-sm-center { |
| 6209 | text-align: center !important; } } |
| 6210 | |
00day0 | 769a17f | 2019-04-08 12:31:11 +0200 | [diff] [blame] | 6211 | @media (min-width: 868px) { |
Unknown | d2db0f1 | 2019-01-10 14:22:00 -0500 | [diff] [blame] | 6212 | .text-md-left { |
| 6213 | text-align: left !important; } |
| 6214 | .text-md-right { |
| 6215 | text-align: right !important; } |
| 6216 | .text-md-center { |
| 6217 | text-align: center !important; } } |
| 6218 | |
| 6219 | @media (min-width: 992px) { |
| 6220 | .text-lg-left { |
| 6221 | text-align: left !important; } |
| 6222 | .text-lg-right { |
| 6223 | text-align: right !important; } |
| 6224 | .text-lg-center { |
| 6225 | text-align: center !important; } } |
| 6226 | |
| 6227 | @media (min-width: 1200px) { |
| 6228 | .text-xl-left { |
| 6229 | text-align: left !important; } |
| 6230 | .text-xl-right { |
| 6231 | text-align: right !important; } |
| 6232 | .text-xl-center { |
| 6233 | text-align: center !important; } } |
| 6234 | |
| 6235 | .text-lowercase { |
| 6236 | text-transform: lowercase !important; } |
| 6237 | |
| 6238 | .text-uppercase { |
| 6239 | text-transform: uppercase !important; } |
| 6240 | |
| 6241 | .text-capitalize { |
| 6242 | text-transform: capitalize !important; } |
| 6243 | |
| 6244 | .font-weight-light { |
| 6245 | font-weight: 300 !important; } |
| 6246 | |
| 6247 | .font-weight-normal { |
| 6248 | font-weight: 200 !important; } |
| 6249 | |
| 6250 | .font-weight-bold { |
| 6251 | font-weight: 700 !important; } |
| 6252 | |
| 6253 | .font-italic { |
| 6254 | font-style: italic !important; } |
| 6255 | |
| 6256 | .text-white { |
| 6257 | color: #fff !important; } |
Stefan Ivic | ff54ece | 2019-08-31 14:49:48 +0200 | [diff] [blame] | 6258 | .text-black { |
| 6259 | color: #000 !important; |
| 6260 | } |
Unknown | d2db0f1 | 2019-01-10 14:22:00 -0500 | [diff] [blame] | 6261 | .text-primary { |
| 6262 | color: #0080ff !important; } |
| 6263 | |
| 6264 | a.text-primary:hover, a.text-primary:focus { |
| 6265 | color: #0066cc !important; } |
| 6266 | |
| 6267 | .text-secondary { |
| 6268 | color: #0060aa !important; } |
| 6269 | |
| 6270 | a.text-secondary:hover, a.text-secondary:focus { |
| 6271 | color: #004377 !important; } |
| 6272 | |
| 6273 | .text-success { |
| 6274 | color: #28a745 !important; } |
| 6275 | |
| 6276 | a.text-success:hover, a.text-success:focus { |
| 6277 | color: #1e7e34 !important; } |
| 6278 | |
| 6279 | .text-info { |
| 6280 | color: #00aaff !important; } |
| 6281 | |
| 6282 | a.text-info:hover, a.text-info:focus { |
| 6283 | color: #0088cc !important; } |
| 6284 | |
| 6285 | .text-warning { |
| 6286 | color: #ffc107 !important; } |
| 6287 | |
| 6288 | a.text-warning:hover, a.text-warning:focus { |
| 6289 | color: #d39e00 !important; } |
| 6290 | |
| 6291 | .text-danger { |
| 6292 | color: #dc3545 !important; } |
| 6293 | |
| 6294 | a.text-danger:hover, a.text-danger:focus { |
| 6295 | color: #bd2130 !important; } |
| 6296 | |
| 6297 | .text-light { |
| 6298 | color: #f3f3f3 !important; } |
| 6299 | |
| 6300 | a.text-light:hover, a.text-light:focus { |
| 6301 | color: #dadada !important; } |
| 6302 | |
| 6303 | .text-dark { |
| 6304 | color: #303030 !important; } |
| 6305 | |
| 6306 | a.text-dark:hover, a.text-dark:focus { |
| 6307 | color: #171717 !important; } |
| 6308 | |
| 6309 | .text-body { |
| 6310 | color: #efefef !important; } |
| 6311 | |
| 6312 | .text-muted { |
| 6313 | color: #6c757d !important; } |
| 6314 | |
| 6315 | .text-black-50 { |
| 6316 | color: rgba(0, 0, 0, 0.5) !important; } |
| 6317 | |
| 6318 | .text-white-50 { |
| 6319 | color: rgba(255, 255, 255, 0.5) !important; } |
| 6320 | |
| 6321 | .text-hide { |
| 6322 | font: 0/0 a; |
| 6323 | color: transparent; |
| 6324 | text-shadow: none; |
| 6325 | background-color: transparent; |
| 6326 | border: 0; } |
| 6327 | |
| 6328 | .visible { |
| 6329 | visibility: visible !important; } |
| 6330 | |
| 6331 | .invisible { |
| 6332 | visibility: hidden !important; } |
| 6333 | |
| 6334 | @media print { |
| 6335 | *, |
| 6336 | *::before, |
| 6337 | *::after { |
| 6338 | text-shadow: none !important; |
| 6339 | box-shadow: none !important; } |
| 6340 | a:not(.btn) { |
| 6341 | text-decoration: underline; } |
| 6342 | abbr[title]::after { |
| 6343 | content: " (" attr(title) ")"; } |
| 6344 | pre { |
| 6345 | white-space: pre-wrap !important; } |
| 6346 | pre, |
| 6347 | blockquote { |
| 6348 | border: 1px solid #adb5bd; |
| 6349 | page-break-inside: avoid; } |
| 6350 | thead { |
| 6351 | display: table-header-group; } |
| 6352 | tr, |
| 6353 | img { |
| 6354 | page-break-inside: avoid; } |
| 6355 | p, |
| 6356 | h2, |
| 6357 | h3 { |
| 6358 | orphans: 3; |
| 6359 | widows: 3; } |
| 6360 | h2, |
| 6361 | h3 { |
| 6362 | page-break-after: avoid; } |
| 6363 | @page { |
| 6364 | size: a3; } |
| 6365 | body { |
| 6366 | min-width: 992px !important; } |
| 6367 | .container { |
| 6368 | min-width: 992px !important; } |
| 6369 | .navbar { |
| 6370 | display: none; } |
| 6371 | .badge { |
| 6372 | border: 1px solid #000; } |
| 6373 | .table { |
| 6374 | border-collapse: collapse !important; } |
| 6375 | .table td, |
| 6376 | .table th { |
| 6377 | background-color: #fff !important; } |
| 6378 | .table-bordered th, |
| 6379 | .table-bordered td { |
| 6380 | border: 1px solid #dee2e6 !important; } |
| 6381 | .table-dark { |
| 6382 | color: inherit; } |
| 6383 | .table-dark th, |
| 6384 | .table-dark td, |
| 6385 | .table-dark thead th, |
| 6386 | .table-dark tbody + tbody { |
| 6387 | border-color: #303030; } |
| 6388 | .table .thead-dark th { |
| 6389 | color: inherit; |
| 6390 | border-color: #303030; } } |
| 6391 | |
| 6392 | html, body { |
| 6393 | height: 100%; } |
| 6394 | |
| 6395 | .bg-primary { |
| 6396 | color: #fff; } |
| 6397 | .bg-primary input::-webkit-input-placeholder { |
| 6398 | color: rgba(255, 255, 255, 0.8); } |
| 6399 | .bg-primary input:-ms-input-placeholder { |
| 6400 | color: rgba(255, 255, 255, 0.8); } |
| 6401 | .bg-primary input::-ms-input-placeholder { |
| 6402 | color: rgba(255, 255, 255, 0.8); } |
| 6403 | .bg-primary input::placeholder { |
| 6404 | color: rgba(255, 255, 255, 0.8); } |
| 6405 | .bg-primary .input-group-text { |
| 6406 | color: #fff; } |
| 6407 | |
| 6408 | .bg-secondary { |
| 6409 | color: #fff; } |
| 6410 | .bg-secondary input::-webkit-input-placeholder { |
| 6411 | color: rgba(255, 255, 255, 0.8); } |
| 6412 | .bg-secondary input:-ms-input-placeholder { |
| 6413 | color: rgba(255, 255, 255, 0.8); } |
| 6414 | .bg-secondary input::-ms-input-placeholder { |
| 6415 | color: rgba(255, 255, 255, 0.8); } |
| 6416 | .bg-secondary input::placeholder { |
| 6417 | color: rgba(255, 255, 255, 0.8); } |
| 6418 | .bg-secondary .input-group-text { |
| 6419 | color: #fff; } |
| 6420 | |
| 6421 | .bg-success { |
| 6422 | color: #fff; } |
| 6423 | .bg-success input::-webkit-input-placeholder { |
| 6424 | color: rgba(255, 255, 255, 0.8); } |
| 6425 | .bg-success input:-ms-input-placeholder { |
| 6426 | color: rgba(255, 255, 255, 0.8); } |
| 6427 | .bg-success input::-ms-input-placeholder { |
| 6428 | color: rgba(255, 255, 255, 0.8); } |
| 6429 | .bg-success input::placeholder { |
| 6430 | color: rgba(255, 255, 255, 0.8); } |
| 6431 | .bg-success .input-group-text { |
| 6432 | color: #fff; } |
| 6433 | |
| 6434 | .bg-info { |
| 6435 | color: #fff; } |
| 6436 | .bg-info input::-webkit-input-placeholder { |
| 6437 | color: rgba(255, 255, 255, 0.8); } |
| 6438 | .bg-info input:-ms-input-placeholder { |
| 6439 | color: rgba(255, 255, 255, 0.8); } |
| 6440 | .bg-info input::-ms-input-placeholder { |
| 6441 | color: rgba(255, 255, 255, 0.8); } |
| 6442 | .bg-info input::placeholder { |
| 6443 | color: rgba(255, 255, 255, 0.8); } |
| 6444 | .bg-info .input-group-text { |
| 6445 | color: #fff; } |
| 6446 | |
| 6447 | .bg-warning { |
| 6448 | color: #212529; } |
| 6449 | .bg-warning input::-webkit-input-placeholder { |
| 6450 | color: rgba(33, 37, 41, 0.8); } |
| 6451 | .bg-warning input:-ms-input-placeholder { |
| 6452 | color: rgba(33, 37, 41, 0.8); } |
| 6453 | .bg-warning input::-ms-input-placeholder { |
| 6454 | color: rgba(33, 37, 41, 0.8); } |
| 6455 | .bg-warning input::placeholder { |
| 6456 | color: rgba(33, 37, 41, 0.8); } |
| 6457 | .bg-warning .input-group-text { |
| 6458 | color: #212529; } |
| 6459 | |
| 6460 | .bg-danger { |
| 6461 | color: #fff; } |
| 6462 | .bg-danger input::-webkit-input-placeholder { |
| 6463 | color: rgba(255, 255, 255, 0.8); } |
| 6464 | .bg-danger input:-ms-input-placeholder { |
| 6465 | color: rgba(255, 255, 255, 0.8); } |
| 6466 | .bg-danger input::-ms-input-placeholder { |
| 6467 | color: rgba(255, 255, 255, 0.8); } |
| 6468 | .bg-danger input::placeholder { |
| 6469 | color: rgba(255, 255, 255, 0.8); } |
| 6470 | .bg-danger .input-group-text { |
| 6471 | color: #fff; } |
| 6472 | |
| 6473 | .bg-light { |
| 6474 | color: #212529; } |
| 6475 | .bg-light input::-webkit-input-placeholder { |
| 6476 | color: rgba(33, 37, 41, 0.8); } |
| 6477 | .bg-light input:-ms-input-placeholder { |
| 6478 | color: rgba(33, 37, 41, 0.8); } |
| 6479 | .bg-light input::-ms-input-placeholder { |
| 6480 | color: rgba(33, 37, 41, 0.8); } |
| 6481 | .bg-light input::placeholder { |
| 6482 | color: rgba(33, 37, 41, 0.8); } |
| 6483 | .bg-light .input-group-text { |
| 6484 | color: #212529; } |
| 6485 | |
| 6486 | .bg-dark { |
| 6487 | color: #fff; } |
| 6488 | .bg-dark input::-webkit-input-placeholder { |
| 6489 | color: rgba(255, 255, 255, 0.8); } |
| 6490 | .bg-dark input:-ms-input-placeholder { |
| 6491 | color: rgba(255, 255, 255, 0.8); } |
| 6492 | .bg-dark input::-ms-input-placeholder { |
| 6493 | color: rgba(255, 255, 255, 0.8); } |
| 6494 | .bg-dark input::placeholder { |
| 6495 | color: rgba(255, 255, 255, 0.8); } |
| 6496 | .bg-dark .input-group-text { |
| 6497 | color: #fff; } |
| 6498 | |
| 6499 | .section-fade-in-out { |
| 6500 | position: relative; |
| 6501 | color: white; |
| 6502 | background-size: cover; |
| 6503 | background-position: center; } |
| 6504 | .section-fade-in-out:before { |
| 6505 | position: absolute; |
| 6506 | top: 0px; |
| 6507 | left: 0px; |
| 6508 | width: 100%; |
| 6509 | height: 100%; |
| 6510 | content: ' '; |
| 6511 | background: linear-gradient(#111, rgba(17, 17, 17, 0.8), rgba(17, 17, 17, 0.2), rgba(17, 17, 17, 0.8), #111); } |
| 6512 | |
| 6513 | .section-fade-in { |
| 6514 | position: relative; |
| 6515 | color: white; |
| 6516 | background-size: cover; |
| 6517 | background-position: center; } |
| 6518 | .section-fade-in:before { |
| 6519 | position: absolute; |
| 6520 | top: 0px; |
| 6521 | left: 0px; |
| 6522 | width: 100%; |
| 6523 | height: 100%; |
| 6524 | content: ' '; |
| 6525 | background: linear-gradient(#111, rgba(17, 17, 17, 0.8), rgba(17, 17, 17, 0.2)); } |
| 6526 | |
| 6527 | .section-fade-out { |
| 6528 | position: relative; |
| 6529 | color: white; |
| 6530 | background-size: cover; |
| 6531 | background-position: center; } |
| 6532 | .section-fade-out:before { |
| 6533 | position: absolute; |
| 6534 | top: 0px; |
| 6535 | left: 0px; |
| 6536 | width: 100%; |
| 6537 | height: 100%; |
| 6538 | content: ' '; |
| 6539 | background: linear-gradient(rgba(17, 17, 17, 0.2), rgba(17, 17, 17, 0.8), #111); } |
| 6540 | |
| 6541 | .shadowed { |
| 6542 | box-shadow: 0px 0px 10px #000; } |
| 6543 | |
| 6544 | .carousel .carousel-caption { |
| 6545 | padding-top: 50px; |
| 6546 | padding-bottom: 20px; |
| 6547 | bottom: 0px; |
| 6548 | background: linear-gradient(transparent 10%, #111111 100%); } |
| 6549 | |
| 6550 | .carousel .carousel-control-next, .carousel .carousel-control-prev { |
| 6551 | opacity: 0.85; } |
| 6552 | |
| 6553 | .carousel .carousel-indicators { |
| 6554 | bottom: 0px; } |
| 6555 | |
| 6556 | mark.primary { |
| 6557 | background-color: #0080ff; |
| 6558 | color: black; } |
| 6559 | |
| 6560 | mark.secondary { |
| 6561 | background-color: #0060aa; |
| 6562 | color: white; } |
| 6563 | |
| 6564 | .cover { |
| 6565 | min-height: 100%; } |
| 6566 | |
| 6567 | /* Animate state between .navbar and .navbar-ontop */ |
| 6568 | .navbar { |
| 6569 | transition: background-color .5s ease-out; } |
| 6570 | |
| 6571 | .navbar-ontop { |
| 6572 | background-color: transparent !important; } |
| 6573 | |
| 6574 | /* Animate on entrance */ |
| 6575 | .animate-in-down { |
| 6576 | transition: all 1.3s ease-out; |
| 6577 | position: relative; |
| 6578 | opacity: 1; |
| 6579 | top: 0px; } |
| 6580 | .animate-in-down.out-of-viewport { |
| 6581 | top: 40px; |
| 6582 | opacity: 0; } |
| 6583 | |
| 6584 | .animate-in-left { |
| 6585 | transition: all 1.0s ease-out; |
| 6586 | position: relative; |
| 6587 | opacity: 1; |
| 6588 | left: 0%; } |
| 6589 | .animate-in-left.out-of-viewport { |
| 6590 | opacity: 0; |
| 6591 | left: -5%; } |
| 6592 | |
| 6593 | .animate-in-right { |
| 6594 | transition: all 1.0s ease-out; |
| 6595 | position: relative; |
| 6596 | opacity: 1; |
| 6597 | left: 0%; } |
| 6598 | .animate-in-right.out-of-viewport { |
| 6599 | opacity: 0; |
| 6600 | left: 5%; } |
00day0 | ed90913 | 2019-04-08 12:53:13 +0200 | [diff] [blame] | 6601 | |
| 6602 | .flex-center { |
| 6603 | display: flex; |
| 6604 | align-items: center; |
| 6605 | justify-content: center; |
| 6606 | } |
| 6607 | |
| 6608 | .no-wrap { |
| 6609 | white-space: nowrap; |
| 6610 | } |
00day0 | da41c07 | 2019-07-03 01:51:49 +0200 | [diff] [blame] | 6611 | |
| 6612 | .download-section { |
| 6613 | background: #0080ff; |
| 6614 | margin: 50px 0; |
| 6615 | padding: 60px 0; |
| 6616 | } |
| 6617 | |
| 6618 | .download-title { |
| 6619 | text-align: center; |
| 6620 | padding: 0 20px; |
| 6621 | } |
| 6622 | |
| 6623 | .download-grid { |
| 6624 | display: grid; |
| 6625 | grid-template-columns: 1fr 1fr 1fr; |
| 6626 | grid-template-rows: auto 1fr; |
| 6627 | grid-gap: 40px; |
| 6628 | max-width: 1600px; |
| 6629 | margin: 0 auto; |
| 6630 | padding: 50px; |
| 6631 | } |
| 6632 | @media (max-width: 1118px) { |
| 6633 | .download-grid { |
| 6634 | grid-template-columns: 1fr 1fr; |
| 6635 | grid-template-rows: auto 1fr auto 1fr; |
| 6636 | } |
| 6637 | } |
| 6638 | @media (max-width: 872px) { |
| 6639 | .download-grid { |
| 6640 | grid-template-columns: 1fr; |
| 6641 | grid-template-rows: auto auto auto auto auto; |
| 6642 | padding: 20px; |
| 6643 | } |
| 6644 | } |
| 6645 | |
| 6646 | .inf-header-common { |
| 6647 | text-align: center; |
| 6648 | padding: 0 0 10px 0; |
| 6649 | border-bottom: 5px solid #fff; |
| 6650 | } |
| 6651 | |
| 6652 | .inf-header-free { |
| 6653 | grid-column: 1/3; |
| 6654 | grid-row: 1/2; |
| 6655 | } |
| 6656 | @media (max-width: 872px) { |
| 6657 | .inf-header-free { |
| 6658 | grid-column: 1/2; |
| 6659 | grid-row: 1/2; |
| 6660 | } |
| 6661 | } |
| 6662 | |
| 6663 | .inf-header-paid { |
| 6664 | grid-column: 3/4; |
| 6665 | grid-row: 1/2; |
| 6666 | } |
| 6667 | @media (max-width: 1118px) { |
| 6668 | .inf-header-paid { |
| 6669 | grid-column: 1/3; |
| 6670 | grid-row: 3/4; |
| 6671 | } |
| 6672 | } |
| 6673 | @media (max-width: 872px) { |
| 6674 | .inf-header-paid { |
| 6675 | grid-column: 1/2; |
| 6676 | grid-row: 4/5; |
| 6677 | } |
| 6678 | } |
| 6679 | |
| 6680 | .download-card-common { |
| 6681 | padding: 30px 30px 70px 30px; |
| 6682 | border-radius: 10px; |
| 6683 | width: 100%; |
| 6684 | min-height: 200px; |
| 6685 | color: #000; |
| 6686 | position: relative; |
| 6687 | } |
| 6688 | @media (max-width: 330px) { |
| 6689 | .download-card-common { |
| 6690 | padding: 30px 30px 140px 30px; |
| 6691 | } |
| 6692 | } |
| 6693 | |
| 6694 | .download-card-one { |
| 6695 | grid-column: 1/2; |
| 6696 | grid-row: 2/3; |
| 6697 | } |
| 6698 | |
| 6699 | .download-card-two { |
| 6700 | grid-column: 2/3; |
| 6701 | grid-row: 2/3; |
| 6702 | } |
| 6703 | @media (max-width: 872px) { |
| 6704 | .download-card-two { |
| 6705 | grid-column: 1/2; |
| 6706 | grid-row: 3/4; |
| 6707 | } |
| 6708 | } |
| 6709 | |
| 6710 | .download-card-three { |
| 6711 | grid-column: 3/4; |
| 6712 | grid-row: 2/3; |
| 6713 | } |
| 6714 | @media (max-width: 1118px) { |
| 6715 | .download-card-three { |
| 6716 | grid-column: 1/3; |
| 6717 | grid-row: 4/5; |
| 6718 | } |
| 6719 | } |
| 6720 | @media (max-width: 872px) { |
| 6721 | .download-card-three { |
| 6722 | grid-column: 1/2; |
| 6723 | grid-row: 5/6; |
| 6724 | } |
| 6725 | } |
| 6726 | |
| 6727 | .download-card-white { |
| 6728 | background: #fff; |
| 6729 | } |
| 6730 | |
| 6731 | .download-card-blue { |
| 6732 | background: #0060aa; |
| 6733 | border: 1px solid #fff; |
| 6734 | color: #fff; |
| 6735 | } |
| 6736 | |
| 6737 | .card-header-title { |
| 6738 | margin: 0; |
| 6739 | } |
| 6740 | |
| 6741 | .card-header-rows { |
| 6742 | height: 70px; |
| 6743 | } |
| 6744 | @media (max-width: 872px) { |
| 6745 | .card-header-rows { |
| 6746 | height: 100px; |
| 6747 | } |
| 6748 | } |
| 6749 | @media (max-width: 480px) { |
| 6750 | .card-header-rows { |
| 6751 | height: 60px; |
| 6752 | } |
| 6753 | } |
| 6754 | @media (max-width: 350px) { |
| 6755 | .card-header-rows { |
| 6756 | height: auto; |
| 6757 | } |
| 6758 | } |
| 6759 | |
| 6760 | .card-header-column-one { |
| 6761 | width: 65%; |
| 6762 | float: left; |
| 6763 | height: 65px; |
| 6764 | } |
| 6765 | @media (max-width: 350px) { |
| 6766 | .card-header-column-one { |
| 6767 | clear: both; |
| 6768 | float: none; |
| 6769 | height: auto; |
| 6770 | margin-bottom: 10px; |
| 6771 | } |
| 6772 | } |
| 6773 | |
| 6774 | .card-header-column-two { |
| 6775 | height: 60px; |
| 6776 | } |
| 6777 | |
| 6778 | .card-or-donation { |
| 6779 | text-align: right; |
| 6780 | margin: 0; |
| 6781 | white-space: nowrap; |
| 6782 | } |
| 6783 | @media (max-width: 350px) { |
| 6784 | .card-or-donation { |
| 6785 | text-align: left; |
| 6786 | } |
| 6787 | } |
| 6788 | |
| 6789 | .buttons { |
| 6790 | position: absolute; |
| 6791 | bottom: 30px; |
| 6792 | left: 30px; |
| 6793 | } |