├── os-theme-dark-devel-0.1.txz ├── colors.css ├── README.md ├── theme_variations.css ├── menu_alt.xml └── main.css /os-theme-dark-devel-0.1.txz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihakralj/opnsense-theme-dark/HEAD/os-theme-dark-devel-0.1.txz -------------------------------------------------------------------------------- /colors.css: -------------------------------------------------------------------------------- 1 | :root { 2 | 3 | --fg: #45FEFF; /*regular text*/ 4 | --afg: #375068; /*accent text*/ 5 | --ahg: #233342; /*accent hover text*/ 6 | --dbg: #090D10; /*darker background*/ 7 | --bg: #111A21; /*main background*/ 8 | --hbg: #0B0D0F; /*lighter background*/ 9 | --grn: #2BB067; /*running, ok, good things */ 10 | --red: #AB4559; /*stopped, wrong, bad things */ 11 | 12 | --sbg: var(--afg); /*active menu item background*/ 13 | --hfg: var(--fg); /*active menu item foreground*/ 14 | --bfg: var(--fg); /*button text*/ 15 | --hbbg: var(--ahg); /*button accent bg*/ 16 | --bbg: var(--afg); /*button hover bg*/ 17 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # opnsense-theme-dark 2 | Dark theme for OPNsense, because real networking people dwell in the dark. 3 | 4 | the .txz package can be installed with: 5 | 6 | sudo pkg add https://github.com/mihakralj/opnsense-theme-dark/raw/main/os-theme-dark-devel-0.1.txz 7 | 8 | after installation, a new dark theme should appear in System-General -> Theme 9 | 10 | Default color scheme in the package is **VanHelsing**, but you can change it to any of supplied seven themes: 11 | 12 | cd /usr/local/opnsense/www/themes/dark/build/css 13 | sudo cp DraculaPro.css colors.css 14 | 15 | after changing the color scheme, force-reload the page in the browser **(Shift-F5)** 16 | 17 | if you want to get rid of the package: 18 | 19 | sudo pkg delete -y os-theme-dark-devel 20 | 21 | #Seven provided color schemes: 22 | 23 | - DarkOrange (install with `sudo cp DarkOrange.css colors.css`) 24 | - Blade (install with `sudo cp Blade.css colors.css`) 25 | - Buffy (install with `sudo cp Buffy.css colors.css`) 26 | - Lincoln (install with `sudo cp Lincoln.css colors.css`) 27 | - Morbius (install with `sudo cp Morbius.css colors.css`) 28 | - DraculaPro (install with `sudo cp DraculaPro.css colors.css`) 29 | - VanHelsing (install with `sudo cp VanHelsing.css colors.css`) 30 | 31 | Except the first one, all other color themes are inspired by Zeno Rocha's Dracula dark theme https://draculatheme.com/ 32 | 33 | You can build your own too - just peek into the **color.css** and make your own color combo! And post your color combination here as an issue! 34 | 35 | ## Problems? Glitches? 36 | 37 | I didn't clean-up the **main.css** completely; there are plenty of direct color references still in the file (instead of using css variables) and I have no idea in which dialogs they appear. So, if something renders wrong, make a screenshot and submit an issue - or (even better) find a problematic styling block in main.css and let me know what to fix and clean. 38 | -------------------------------------------------------------------------------- /theme_variations.css: -------------------------------------------------------------------------------- 1 | :root { 2 | /* burnt orange*/ 3 | --fg: #FFFFFC; /*regular text*/ 4 | --afg: #FF4F00; /*accent text*/ 5 | --ahg: #aa5102; /*accent hover text*/ 6 | --dbg: #000000; /*darker background*/ 7 | --bg: #251f1f; /*main background*/ 8 | --hbg: #332b2b; /*lighter background*/ 9 | --grn: #74c43c; /*running, ok, good things */ 10 | --red : #ff3535; /*stopped, wrong, bad things */ 11 | 12 | /* Dracula Pro*/ 13 | --fg: #45FBFC; /*regular text*/ 14 | --afg: #503D65; /*accent text*/ 15 | --ahg: #32263F; /*accent hover text*/ 16 | --dbg: #0D0A10; /*darker background*/ 17 | --bg: #18131F; /*main background*/ 18 | --hbg: #25212B; /*lighter background*/ 19 | --grn: #2BB067; /*running, ok, good things */ 20 | --red: #AB4559; /*stopped, wrong, bad things */ 21 | 22 | /*Dracula Blade*/ 23 | --fg: #47FEFF; /*regular text*/ 24 | --afg: #296666; /*accent text*/ 25 | --ahg: #1A4040; /*accent hover text*/ 26 | --dbg: #071010; /*darker background*/ 27 | --bg: #0D2020; /*main background*/ 28 | --hbg: #1C2C2C; /*lighter background*/ 29 | --grn: #2BB067; /*running, ok, good things */ 30 | --red: #AB4559; /*stopped, wrong, bad things */ 31 | 32 | /*Dracula Buffy*/ 33 | --fg: #47FEFF; /*regular text*/ 34 | --afg: #713959; /*accent text*/ 35 | --ahg: #4B263B; /*accent hover text*/ 36 | --dbg: #120A0F; /*darker background*/ 37 | --bg: #25131E; /*main background*/ 38 | --hbg: #30212A; /*lighter background*/ 39 | --grn: #2BB067; /*running, ok, good things */ 40 | --red: #AB4559; /*stopped, wrong, bad things */ 41 | 42 | /*Dracula Lincoln*/ 43 | --fg: #45FEFF; /*regular text*/ 44 | --afg: #63613C; /*accent text*/ 45 | --ahg: #3D3C25; /*accent hover text*/ 46 | --dbg: #0F0F0A; /*darker background*/ 47 | --bg: #1F1E12; /*main background*/ 48 | --hbg: #2B2A20; /*lighter background*/ 49 | --grn: #2BB067; /*running, ok, good things */ 50 | --red: #AB4559; /*stopped, wrong, bad things */ 51 | 52 | /*Dracula Morbius*/ 53 | --fg: #44FAFB; /*regular text*/ 54 | --afg: #723939; /*accent text*/ 55 | --ahg: #4C2626; /*accent hover text*/ 56 | --dbg: #130A0A; /*darker background*/ 57 | --bg: #261312; /*main background*/ 58 | --hbg: #31211F; /*lighter background*/ 59 | --grn: #2BB067; /*running, ok, good things */ 60 | --red: #AB4559; /*stopped, wrong, bad things */ 61 | 62 | /*Dracula Van Helsing*/ 63 | --fg: #45FEFF; /*regular text*/ 64 | --afg: #375068; /*accent text*/ 65 | --ahg: #233342; /*accent hover text*/ 66 | --dbg: #090D10; /*darker background*/ 67 | --bg: #111A21; /*main background*/ 68 | --hbg: #0B0D0F; /*lighter background*/ 69 | --grn: #2BB067; /*running, ok, good things */ 70 | --red: #AB4559; /*stopped, wrong, bad things */ 71 | 72 | } -------------------------------------------------------------------------------- /menu_alt.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 |
217 | 218 | 219 | 220 | 221 | 222 | 223 |
224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 |
242 | -------------------------------------------------------------------------------- /main.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | @import "colors.css"; 3 | 4 | .widgetdiv .content-box-head { 5 | background: var(--hbg) !important; 6 | color: var(--fg) !important; 7 | padding-bottom: 1px !important; 8 | padding-top: 1px !important; 9 | padding-right: 1px !important; 10 | padding-left: 5px !important; 11 | min-height: 25px !important; 12 | } 13 | .widgetdiv .content-box-head .btn-group .btn { 14 | color: var(--fg) !important; 15 | background: var(--hbg) !important; 16 | border: 0px; 17 | } 18 | .widgetdiv .content-box-head .btn-group .btn .glyphicon { 19 | color: var(--fg) !important; 20 | } 21 | .widgetdiv .content-box-head .list-inline li > h3 { 22 | padding-top: 4px; 23 | } 24 | 25 | /*! normalize.css v3.0.1 | MIT License | git.io/normalize */ 26 | html { 27 | font-family: SegoeUI, "Helvetica Neue", Helvetica, Arial, sans-serif; 28 | -ms-text-size-adjust: 100%; 29 | -webkit-text-size-adjust: 100%; 30 | } 31 | 32 | body { 33 | margin: 0; 34 | } 35 | 36 | article, 37 | aside, 38 | details, 39 | figcaption, 40 | figure, 41 | footer, 42 | header, 43 | hgroup, 44 | main, 45 | nav, 46 | section, 47 | summary { 48 | display: block; 49 | } 50 | 51 | audio, 52 | canvas, 53 | progress, 54 | video { 55 | display: inline-block; 56 | vertical-align: baseline; 57 | } 58 | 59 | audio:not([controls]) { 60 | display: none; 61 | height: 0; 62 | } 63 | 64 | [hidden], 65 | template { 66 | display: none; 67 | } 68 | 69 | a { 70 | background: transparent; 71 | } 72 | 73 | a:active, 74 | a:hover { 75 | outline: 0; 76 | } 77 | 78 | abbr[title] { 79 | border-bottom: 1px dotted; 80 | } 81 | 82 | b, 83 | strong { 84 | font-weight: bold; 85 | } 86 | 87 | dfn { 88 | font-style: italic; 89 | } 90 | 91 | h1 { 92 | font-size: 2em; 93 | margin: 0.67em 0; 94 | } 95 | 96 | mark { 97 | background: #ff0; 98 | color: #000; 99 | } 100 | 101 | small { 102 | font-size: 80%; 103 | } 104 | 105 | sub, 106 | sup { 107 | font-size: 75%; 108 | line-height: 0; 109 | position: relative; 110 | vertical-align: baseline; 111 | } 112 | 113 | sup { 114 | top: -0.5em; 115 | } 116 | 117 | sub { 118 | bottom: -0.25em; 119 | } 120 | 121 | img { 122 | border: 0; 123 | } 124 | 125 | svg:not(:root) { 126 | overflow: hidden; 127 | } 128 | 129 | figure { 130 | margin: 1em 40px; 131 | } 132 | 133 | hr { 134 | -moz-box-sizing: content-box; 135 | box-sizing: content-box; 136 | height: 0; 137 | } 138 | 139 | pre { 140 | overflow: auto; 141 | } 142 | 143 | code, 144 | kbd, 145 | pre, 146 | samp { 147 | font-family: monospace, monospace; 148 | font-size: 1em; 149 | } 150 | 151 | button, 152 | input, 153 | optgroup, 154 | select, 155 | textarea { 156 | color: inherit; 157 | font: inherit; 158 | margin: 0; 159 | } 160 | 161 | button { 162 | overflow: visible; 163 | } 164 | 165 | button, 166 | select { 167 | text-transform: none; 168 | } 169 | 170 | button, 171 | html input[type=button], 172 | input[type=reset], 173 | input[type=submit] { 174 | -webkit-appearance: button; 175 | cursor: pointer; 176 | } 177 | 178 | button[disabled], 179 | html input[disabled] { 180 | cursor: default; 181 | } 182 | 183 | button::-moz-focus-inner, 184 | input::-moz-focus-inner { 185 | border: 0; 186 | padding: 0; 187 | } 188 | 189 | input { 190 | line-height: normal; 191 | } 192 | 193 | input[type=checkbox], 194 | input[type=radio] { 195 | box-sizing: border-box; 196 | padding: 0; 197 | } 198 | 199 | input[type=number]::-webkit-inner-spin-button, 200 | input[type=number]::-webkit-outer-spin-button { 201 | height: auto; 202 | } 203 | 204 | input[type=search] { 205 | -webkit-appearance: textfield; 206 | -moz-box-sizing: content-box; 207 | -webkit-box-sizing: content-box; 208 | box-sizing: content-box; 209 | } 210 | 211 | input[type=search]::-webkit-search-cancel-button, 212 | input[type=search]::-webkit-search-decoration { 213 | -webkit-appearance: none; 214 | } 215 | 216 | fieldset { 217 | border: 1px solid #c0c0c0; 218 | margin: 0 2px; 219 | padding: 0.35em 0.625em 0.75em; 220 | } 221 | 222 | legend { 223 | border: 0; 224 | padding: 0; 225 | } 226 | 227 | textarea { 228 | overflow: auto; 229 | } 230 | 231 | optgroup { 232 | font-weight: bold; 233 | } 234 | 235 | table { 236 | border-collapse: collapse; 237 | border-spacing: 0; 238 | } 239 | 240 | td, 241 | th { 242 | padding: 0; 243 | } 244 | 245 | @media print { 246 | * { 247 | text-shadow: none !important; 248 | color: var(--fg) !important; 249 | background: transparent !important; 250 | box-shadow: none !important; 251 | } 252 | 253 | a, 254 | a:visited { 255 | text-decoration: underline; 256 | } 257 | 258 | a[href]:after { 259 | content: " (" attr(href) ")"; 260 | } 261 | 262 | abbr[title]:after { 263 | content: " (" attr(title) ")"; 264 | } 265 | 266 | a[href^="javascript:"]:after, 267 | a[href^="#"]:after { 268 | content: ""; 269 | } 270 | 271 | pre, 272 | blockquote { 273 | border: 1px solid #999; 274 | page-break-inside: avoid; 275 | } 276 | 277 | thead { 278 | display: table-header-group; 279 | } 280 | 281 | tr, 282 | img { 283 | page-break-inside: avoid; 284 | } 285 | 286 | img { 287 | max-width: 100% !important; 288 | } 289 | 290 | p, 291 | h2, 292 | h3 { 293 | orphans: 3; 294 | widows: 3; 295 | } 296 | 297 | h2, 298 | h3 { 299 | page-break-after: avoid; 300 | } 301 | 302 | select { 303 | background: #fff !important; 304 | } 305 | 306 | .navbar { 307 | display: none; 308 | } 309 | 310 | .table td, 311 | .table th { 312 | background-color: var(--hbg) !important; 313 | } 314 | 315 | .btn > .caret, 316 | .dropup > .btn > .caret { 317 | border-top-color: #000 !important; 318 | } 319 | 320 | .label { 321 | border: 1px solid #000; 322 | } 323 | 324 | .table { 325 | border-collapse: collapse !important; 326 | } 327 | 328 | .table-bordered th, 329 | .table-bordered td { 330 | border: 1px solid #ddd !important; 331 | } 332 | } 333 | @font-face { 334 | font-family: "Glyphicons Halflings"; 335 | src: url("../fonts/bootstrap/glyphicons-halflings-regular.eot"); 336 | src: url("../fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/bootstrap/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/bootstrap/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg"); 337 | } 338 | .glyphicon { 339 | position: relative; 340 | top: 1px; 341 | display: inline-block; 342 | font-family: "Glyphicons Halflings"; 343 | font-style: normal; 344 | font-weight: normal; 345 | line-height: 1; 346 | -webkit-font-smoothing: antialiased; 347 | -moz-osx-font-smoothing: grayscale; 348 | } 349 | 350 | .glyphicon-asterisk:before { 351 | content: "*"; 352 | } 353 | 354 | .glyphicon-plus:before { 355 | content: "+"; 356 | } 357 | 358 | .glyphicon-euro:before { 359 | content: "€"; 360 | } 361 | 362 | .glyphicon-minus:before { 363 | content: "−"; 364 | } 365 | 366 | .glyphicon-cloud:before { 367 | content: "☁"; 368 | } 369 | 370 | .glyphicon-envelope:before { 371 | content: "✉"; 372 | } 373 | 374 | .glyphicon-pencil:before { 375 | content: "✏"; 376 | } 377 | 378 | .glyphicon-glass:before { 379 | content: ""; 380 | } 381 | 382 | .glyphicon-music:before { 383 | content: ""; 384 | } 385 | 386 | .glyphicon-search:before { 387 | content: ""; 388 | } 389 | 390 | .glyphicon-heart:before { 391 | content: ""; 392 | } 393 | 394 | .glyphicon-star:before { 395 | content: ""; 396 | } 397 | 398 | .glyphicon-star-empty:before { 399 | content: ""; 400 | } 401 | 402 | .glyphicon-user:before { 403 | content: ""; 404 | } 405 | 406 | .glyphicon-film:before { 407 | content: ""; 408 | } 409 | 410 | .glyphicon-th-large:before { 411 | content: ""; 412 | } 413 | 414 | .glyphicon-th:before { 415 | content: ""; 416 | } 417 | 418 | .glyphicon-th-list:before { 419 | content: ""; 420 | } 421 | 422 | .glyphicon-ok:before { 423 | content: ""; 424 | } 425 | 426 | .glyphicon-remove:before { 427 | content: ""; 428 | } 429 | 430 | .glyphicon-zoom-in:before { 431 | content: ""; 432 | } 433 | 434 | .glyphicon-zoom-out:before { 435 | content: ""; 436 | } 437 | 438 | .glyphicon-off:before { 439 | content: ""; 440 | } 441 | 442 | .glyphicon-signal:before { 443 | content: ""; 444 | } 445 | 446 | .glyphicon-cog:before { 447 | content: ""; 448 | } 449 | 450 | .glyphicon-trash:before { 451 | content: ""; 452 | } 453 | 454 | .glyphicon-home:before { 455 | content: ""; 456 | } 457 | 458 | .glyphicon-file:before { 459 | content: ""; 460 | } 461 | 462 | .glyphicon-time:before { 463 | content: ""; 464 | } 465 | 466 | .glyphicon-road:before { 467 | content: ""; 468 | } 469 | 470 | .glyphicon-download-alt:before { 471 | content: ""; 472 | } 473 | 474 | .glyphicon-download:before { 475 | content: ""; 476 | } 477 | 478 | .glyphicon-upload:before { 479 | content: ""; 480 | } 481 | 482 | .glyphicon-inbox:before { 483 | content: ""; 484 | } 485 | 486 | .glyphicon-play-circle:before { 487 | content: ""; 488 | } 489 | 490 | .glyphicon-repeat:before { 491 | content: ""; 492 | } 493 | 494 | .glyphicon-refresh:before { 495 | content: ""; 496 | } 497 | 498 | .glyphicon-list-alt:before { 499 | content: ""; 500 | } 501 | 502 | .glyphicon-lock:before { 503 | content: ""; 504 | } 505 | 506 | .glyphicon-flag:before { 507 | content: ""; 508 | } 509 | 510 | .glyphicon-headphones:before { 511 | content: ""; 512 | } 513 | 514 | .glyphicon-volume-off:before { 515 | content: ""; 516 | } 517 | 518 | .glyphicon-volume-down:before { 519 | content: ""; 520 | } 521 | 522 | .glyphicon-volume-up:before { 523 | content: ""; 524 | } 525 | 526 | .glyphicon-qrcode:before { 527 | content: ""; 528 | } 529 | 530 | .glyphicon-barcode:before { 531 | content: ""; 532 | } 533 | 534 | .glyphicon-tag:before { 535 | content: ""; 536 | } 537 | 538 | .glyphicon-tags:before { 539 | content: ""; 540 | } 541 | 542 | .glyphicon-book:before { 543 | content: ""; 544 | } 545 | 546 | .glyphicon-bookmark:before { 547 | content: ""; 548 | } 549 | 550 | .glyphicon-print:before { 551 | content: ""; 552 | } 553 | 554 | .glyphicon-camera:before { 555 | content: ""; 556 | } 557 | 558 | .glyphicon-font:before { 559 | content: ""; 560 | } 561 | 562 | .glyphicon-bold:before { 563 | content: ""; 564 | } 565 | 566 | .glyphicon-italic:before { 567 | content: ""; 568 | } 569 | 570 | .glyphicon-text-height:before { 571 | content: ""; 572 | } 573 | 574 | .glyphicon-text-width:before { 575 | content: ""; 576 | } 577 | 578 | .glyphicon-align-left:before { 579 | content: ""; 580 | } 581 | 582 | .glyphicon-align-center:before { 583 | content: ""; 584 | } 585 | 586 | .glyphicon-align-right:before { 587 | content: ""; 588 | } 589 | 590 | .glyphicon-align-justify:before { 591 | content: ""; 592 | } 593 | 594 | .glyphicon-list:before { 595 | content: ""; 596 | } 597 | 598 | .glyphicon-indent-left:before { 599 | content: ""; 600 | } 601 | 602 | .glyphicon-indent-right:before { 603 | content: ""; 604 | } 605 | 606 | .glyphicon-facetime-video:before { 607 | content: ""; 608 | } 609 | 610 | .glyphicon-picture:before { 611 | content: ""; 612 | } 613 | 614 | .glyphicon-map-marker:before { 615 | content: ""; 616 | } 617 | 618 | .glyphicon-adjust:before { 619 | content: ""; 620 | } 621 | 622 | .glyphicon-tint:before { 623 | content: ""; 624 | } 625 | 626 | .glyphicon-edit:before { 627 | content: ""; 628 | } 629 | 630 | .glyphicon-share:before { 631 | content: ""; 632 | } 633 | 634 | .glyphicon-check:before { 635 | content: ""; 636 | } 637 | 638 | .glyphicon-move:before { 639 | content: ""; 640 | } 641 | 642 | .glyphicon-step-backward:before { 643 | content: ""; 644 | } 645 | 646 | .glyphicon-fast-backward:before { 647 | content: ""; 648 | } 649 | 650 | .glyphicon-backward:before { 651 | content: ""; 652 | } 653 | 654 | .glyphicon-play:before { 655 | content: ""; 656 | } 657 | 658 | .glyphicon-pause:before { 659 | content: ""; 660 | } 661 | 662 | .glyphicon-stop:before { 663 | content: ""; 664 | } 665 | 666 | .glyphicon-forward:before { 667 | content: ""; 668 | } 669 | 670 | .glyphicon-fast-forward:before { 671 | content: ""; 672 | } 673 | 674 | .glyphicon-step-forward:before { 675 | content: ""; 676 | } 677 | 678 | .glyphicon-eject:before { 679 | content: ""; 680 | } 681 | 682 | .glyphicon-chevron-left:before { 683 | content: ""; 684 | } 685 | 686 | .glyphicon-chevron-right:before { 687 | content: ""; 688 | } 689 | 690 | .glyphicon-plus-sign:before { 691 | content: ""; 692 | } 693 | 694 | .glyphicon-minus-sign:before { 695 | content: ""; 696 | } 697 | 698 | .glyphicon-remove-sign:before { 699 | content: ""; 700 | } 701 | 702 | .glyphicon-ok-sign:before { 703 | content: ""; 704 | } 705 | 706 | .glyphicon-question-sign:before { 707 | content: ""; 708 | } 709 | 710 | .glyphicon-info-sign:before { 711 | content: ""; 712 | } 713 | 714 | .glyphicon-screenshot:before { 715 | content: ""; 716 | } 717 | 718 | .glyphicon-remove-circle:before { 719 | content: ""; 720 | } 721 | 722 | .glyphicon-ok-circle:before { 723 | content: ""; 724 | } 725 | 726 | .glyphicon-ban-circle:before { 727 | content: ""; 728 | } 729 | 730 | .glyphicon-arrow-left:before { 731 | content: ""; 732 | } 733 | 734 | .glyphicon-arrow-right:before { 735 | content: ""; 736 | } 737 | 738 | .glyphicon-arrow-up:before { 739 | content: ""; 740 | } 741 | 742 | .glyphicon-arrow-down:before { 743 | content: ""; 744 | } 745 | 746 | .glyphicon-share-alt:before { 747 | content: ""; 748 | } 749 | 750 | .glyphicon-resize-full:before { 751 | content: ""; 752 | } 753 | 754 | .glyphicon-resize-small:before { 755 | content: ""; 756 | } 757 | 758 | .glyphicon-exclamation-sign:before { 759 | content: ""; 760 | } 761 | 762 | .glyphicon-gift:before { 763 | content: ""; 764 | } 765 | 766 | .glyphicon-leaf:before { 767 | content: ""; 768 | } 769 | 770 | .glyphicon-fire:before { 771 | content: ""; 772 | } 773 | 774 | .glyphicon-eye-open:before { 775 | content: ""; 776 | } 777 | 778 | .glyphicon-eye-close:before { 779 | content: ""; 780 | } 781 | 782 | .glyphicon-warning-sign:before { 783 | content: ""; 784 | } 785 | 786 | .glyphicon-plane:before { 787 | content: ""; 788 | } 789 | 790 | .glyphicon-calendar:before { 791 | content: ""; 792 | } 793 | 794 | .glyphicon-random:before { 795 | content: ""; 796 | } 797 | 798 | .glyphicon-comment:before { 799 | content: ""; 800 | } 801 | 802 | .glyphicon-magnet:before { 803 | content: ""; 804 | } 805 | 806 | .glyphicon-chevron-up:before { 807 | content: ""; 808 | } 809 | 810 | .glyphicon-chevron-down:before { 811 | content: ""; 812 | } 813 | 814 | .glyphicon-retweet:before { 815 | content: ""; 816 | } 817 | 818 | .glyphicon-shopping-cart:before { 819 | content: ""; 820 | } 821 | 822 | .glyphicon-folder-close:before { 823 | content: ""; 824 | } 825 | 826 | .glyphicon-folder-open:before { 827 | content: ""; 828 | } 829 | 830 | .glyphicon-resize-vertical:before { 831 | content: ""; 832 | } 833 | 834 | .glyphicon-resize-horizontal:before { 835 | content: ""; 836 | } 837 | 838 | .glyphicon-hdd:before { 839 | content: ""; 840 | } 841 | 842 | .glyphicon-bullhorn:before { 843 | content: ""; 844 | } 845 | 846 | .glyphicon-bell:before { 847 | content: ""; 848 | } 849 | 850 | .glyphicon-certificate:before { 851 | content: ""; 852 | } 853 | 854 | .glyphicon-thumbs-up:before { 855 | content: ""; 856 | } 857 | 858 | .glyphicon-thumbs-down:before { 859 | content: ""; 860 | } 861 | 862 | .glyphicon-hand-right:before { 863 | content: ""; 864 | } 865 | 866 | .glyphicon-hand-left:before { 867 | content: ""; 868 | } 869 | 870 | .glyphicon-hand-up:before { 871 | content: ""; 872 | } 873 | 874 | .glyphicon-hand-down:before { 875 | content: ""; 876 | } 877 | 878 | .glyphicon-circle-arrow-right:before { 879 | content: ""; 880 | } 881 | 882 | .glyphicon-circle-arrow-left:before { 883 | content: ""; 884 | } 885 | 886 | .glyphicon-circle-arrow-up:before { 887 | content: ""; 888 | } 889 | 890 | .glyphicon-circle-arrow-down:before { 891 | content: ""; 892 | } 893 | 894 | .glyphicon-globe:before { 895 | content: ""; 896 | } 897 | 898 | .glyphicon-wrench:before { 899 | content: ""; 900 | } 901 | 902 | .glyphicon-tasks:before { 903 | content: ""; 904 | } 905 | 906 | .glyphicon-filter:before { 907 | content: ""; 908 | } 909 | 910 | .glyphicon-briefcase:before { 911 | content: ""; 912 | } 913 | 914 | .glyphicon-fullscreen:before { 915 | content: ""; 916 | } 917 | 918 | .glyphicon-dashboard:before { 919 | content: ""; 920 | } 921 | 922 | .glyphicon-paperclip:before { 923 | content: ""; 924 | } 925 | 926 | .glyphicon-heart-empty:before { 927 | content: ""; 928 | } 929 | 930 | .glyphicon-link:before { 931 | content: ""; 932 | } 933 | 934 | .glyphicon-phone:before { 935 | content: ""; 936 | } 937 | 938 | .glyphicon-pushpin:before { 939 | content: ""; 940 | } 941 | 942 | .glyphicon-usd:before { 943 | content: ""; 944 | } 945 | 946 | .glyphicon-gbp:before { 947 | content: ""; 948 | } 949 | 950 | .glyphicon-sort:before { 951 | content: ""; 952 | } 953 | 954 | .glyphicon-sort-by-alphabet:before { 955 | content: ""; 956 | } 957 | 958 | .glyphicon-sort-by-alphabet-alt:before { 959 | content: ""; 960 | } 961 | 962 | .glyphicon-sort-by-order:before { 963 | content: ""; 964 | } 965 | 966 | .glyphicon-sort-by-order-alt:before { 967 | content: ""; 968 | } 969 | 970 | .glyphicon-sort-by-attributes:before { 971 | content: ""; 972 | } 973 | 974 | .glyphicon-sort-by-attributes-alt:before { 975 | content: ""; 976 | } 977 | 978 | .glyphicon-unchecked:before { 979 | content: ""; 980 | } 981 | 982 | .glyphicon-expand:before { 983 | content: ""; 984 | } 985 | 986 | .glyphicon-collapse-down:before { 987 | content: ""; 988 | } 989 | 990 | .glyphicon-collapse-up:before { 991 | content: ""; 992 | } 993 | 994 | .glyphicon-log-in:before { 995 | content: ""; 996 | } 997 | 998 | .glyphicon-flash:before { 999 | content: ""; 1000 | } 1001 | 1002 | .glyphicon-log-out:before { 1003 | content: ""; 1004 | } 1005 | 1006 | .glyphicon-new-window:before { 1007 | content: ""; 1008 | } 1009 | 1010 | .glyphicon-record:before { 1011 | content: ""; 1012 | } 1013 | 1014 | .glyphicon-save:before { 1015 | content: ""; 1016 | } 1017 | 1018 | .glyphicon-open:before { 1019 | content: ""; 1020 | } 1021 | 1022 | .glyphicon-saved:before { 1023 | content: ""; 1024 | } 1025 | 1026 | .glyphicon-import:before { 1027 | content: ""; 1028 | } 1029 | 1030 | .glyphicon-export:before { 1031 | content: ""; 1032 | } 1033 | 1034 | .glyphicon-send:before { 1035 | content: ""; 1036 | } 1037 | 1038 | .glyphicon-floppy-disk:before { 1039 | content: ""; 1040 | } 1041 | 1042 | .glyphicon-floppy-saved:before { 1043 | content: ""; 1044 | } 1045 | 1046 | .glyphicon-floppy-remove:before { 1047 | content: ""; 1048 | } 1049 | 1050 | .glyphicon-floppy-save:before { 1051 | content: ""; 1052 | } 1053 | 1054 | .glyphicon-floppy-open:before { 1055 | content: ""; 1056 | } 1057 | 1058 | .glyphicon-credit-card:before { 1059 | content: ""; 1060 | } 1061 | 1062 | .glyphicon-transfer:before { 1063 | content: ""; 1064 | } 1065 | 1066 | .glyphicon-cutlery:before { 1067 | content: ""; 1068 | } 1069 | 1070 | .glyphicon-header:before { 1071 | content: ""; 1072 | } 1073 | 1074 | .glyphicon-compressed:before { 1075 | content: ""; 1076 | } 1077 | 1078 | .glyphicon-earphone:before { 1079 | content: ""; 1080 | } 1081 | 1082 | .glyphicon-phone-alt:before { 1083 | content: ""; 1084 | } 1085 | 1086 | .glyphicon-tower:before { 1087 | content: ""; 1088 | } 1089 | 1090 | .glyphicon-stats:before { 1091 | content: ""; 1092 | } 1093 | 1094 | .glyphicon-sd-video:before { 1095 | content: ""; 1096 | } 1097 | 1098 | .glyphicon-hd-video:before { 1099 | content: ""; 1100 | } 1101 | 1102 | .glyphicon-subtitles:before { 1103 | content: ""; 1104 | } 1105 | 1106 | .glyphicon-sound-stereo:before { 1107 | content: ""; 1108 | } 1109 | 1110 | .glyphicon-sound-dolby:before { 1111 | content: ""; 1112 | } 1113 | 1114 | .glyphicon-sound-5-1:before { 1115 | content: ""; 1116 | } 1117 | 1118 | .glyphicon-sound-6-1:before { 1119 | content: ""; 1120 | } 1121 | 1122 | .glyphicon-sound-7-1:before { 1123 | content: ""; 1124 | } 1125 | 1126 | .glyphicon-copyright-mark:before { 1127 | content: ""; 1128 | } 1129 | 1130 | .glyphicon-registration-mark:before { 1131 | content: ""; 1132 | } 1133 | 1134 | .glyphicon-cloud-download:before { 1135 | content: ""; 1136 | } 1137 | 1138 | .glyphicon-cloud-upload:before { 1139 | content: ""; 1140 | } 1141 | 1142 | .glyphicon-tree-conifer:before { 1143 | content: ""; 1144 | } 1145 | 1146 | .glyphicon-tree-deciduous:before { 1147 | content: ""; 1148 | } 1149 | 1150 | * { 1151 | -webkit-box-sizing: border-box; 1152 | -moz-box-sizing: border-box; 1153 | box-sizing: border-box; 1154 | } 1155 | 1156 | *:before, 1157 | *:after { 1158 | -webkit-box-sizing: border-box; 1159 | -moz-box-sizing: border-box; 1160 | box-sizing: border-box; 1161 | } 1162 | 1163 | html { 1164 | font-size: 10px; 1165 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 1166 | } 1167 | 1168 | body { 1169 | font-family: SegoeUI, "Helvetica Neue", Helvetica, Arial, sans-serif; 1170 | font-size: 12px; 1171 | line-height: 1.3; 1172 | color: var(--fg); 1173 | background-color: var(--bg); 1174 | } 1175 | 1176 | input, 1177 | button, 1178 | select, 1179 | textarea { 1180 | font-family: inherit; 1181 | font-size: inherit; 1182 | line-height: inherit; 1183 | } 1184 | 1185 | a { 1186 | color: var(--afg); 1187 | text-decoration: none; 1188 | } 1189 | a:hover, a:focus { 1190 | color: var(--hbbg); 1191 | text-decoration: none; 1192 | } 1193 | a:focus { 1194 | outline: thin dotted; 1195 | outline: 5px auto -webkit-focus-ring-color; 1196 | outline-offset: -2px; 1197 | } 1198 | 1199 | figure { 1200 | margin: 0; 1201 | } 1202 | 1203 | img { 1204 | vertical-align: middle; 1205 | } 1206 | 1207 | .img-responsive { 1208 | display: block; 1209 | width: 100% \9 ; 1210 | max-width: 100%; 1211 | height: auto; 1212 | } 1213 | 1214 | .img-rounded { 1215 | border-radius: 0; 1216 | } 1217 | 1218 | .img-thumbnail { 1219 | padding: 4px; 1220 | line-height: 1.428571429; 1221 | background-color: var(--hbg); 1222 | border: 1px solid var(--hbg); 1223 | border-radius: 0; 1224 | -webkit-transition: all 0.2s ease-in-out; 1225 | -o-transition: all 0.2s ease-in-out; 1226 | transition: all 0.2s ease-in-out; 1227 | display: inline-block; 1228 | width: 100% \9 ; 1229 | max-width: 100%; 1230 | height: auto; 1231 | } 1232 | 1233 | .img-circle { 1234 | border-radius: 50%; 1235 | } 1236 | 1237 | hr { 1238 | margin-top: 20px; 1239 | margin-bottom: 20px; 1240 | border: 0; 1241 | border-top: 1px solid #eeeeee; 1242 | } 1243 | 1244 | .sr-only { 1245 | position: absolute; 1246 | width: 1px; 1247 | height: 1px; 1248 | margin: -1px; 1249 | padding: 0; 1250 | overflow: hidden; 1251 | clip: rect(0, 0, 0, 0); 1252 | border: 0; 1253 | } 1254 | 1255 | .sr-only-focusable:active, .sr-only-focusable:focus { 1256 | position: static; 1257 | width: auto; 1258 | height: auto; 1259 | margin: 0; 1260 | overflow: visible; 1261 | clip: auto; 1262 | } 1263 | 1264 | h1, h2, h3, h4, h5, h6, 1265 | .h1, .h2, .h3, .h4, .h5, .h6 { 1266 | font-family: Segoe UI, "Helvetica Neue", Helvetica, Arial, sans-serif; 1267 | font-weight: 600; 1268 | line-height: 1.4; 1269 | color: inherit; 1270 | } 1271 | h1 small, 1272 | h1 .small, h2 small, 1273 | h2 .small, h3 small, 1274 | h3 .small, h4 small, 1275 | h4 .small, h5 small, 1276 | h5 .small, h6 small, 1277 | h6 .small, 1278 | .h1 small, 1279 | .h1 .small, .h2 small, 1280 | .h2 .small, .h3 small, 1281 | .h3 .small, .h4 small, 1282 | .h4 .small, .h5 small, 1283 | .h5 .small, .h6 small, 1284 | .h6 .small { 1285 | font-weight: normal; 1286 | line-height: 1; 1287 | color: #777777; 1288 | } 1289 | 1290 | h1, .h1, 1291 | h2, .h2, 1292 | h3, .h3 { 1293 | margin-top: 20px; 1294 | margin-bottom: 10px; 1295 | } 1296 | h1 small, 1297 | h1 .small, .h1 small, 1298 | .h1 .small, 1299 | h2 small, 1300 | h2 .small, .h2 small, 1301 | .h2 .small, 1302 | h3 small, 1303 | h3 .small, .h3 small, 1304 | .h3 .small { 1305 | font-size: 65%; 1306 | } 1307 | 1308 | h4, .h4, 1309 | h5, .h5, 1310 | h6, .h6 { 1311 | margin-top: 10px; 1312 | margin-bottom: 10px; 1313 | } 1314 | h4 small, 1315 | h4 .small, .h4 small, 1316 | .h4 .small, 1317 | h5 small, 1318 | h5 .small, .h5 small, 1319 | .h5 .small, 1320 | h6 small, 1321 | h6 .small, .h6 small, 1322 | .h6 .small { 1323 | font-size: 75%; 1324 | } 1325 | 1326 | h1, .h1 { 1327 | font-size: 23px; 1328 | ; 1329 | } 1330 | 1331 | h2, .h2 { 1332 | font-size: 16px; 1333 | } 1334 | 1335 | h3, .h3 { 1336 | font-size: 18px; 1337 | } 1338 | 1339 | h4, .h4 { 1340 | font-size: 18px; 1341 | } 1342 | 1343 | h5, .h5 { 1344 | font-size: 14px; 1345 | } 1346 | 1347 | h6, .h6 { 1348 | font-size: 12px; 1349 | } 1350 | 1351 | p { 1352 | margin: 0 0 10px; 1353 | } 1354 | 1355 | .lead { 1356 | margin-bottom: 20px; 1357 | font-size: 16px; 1358 | font-weight: 300; 1359 | line-height: 1.4; 1360 | } 1361 | @media (min-width: 768px) { 1362 | .lead { 1363 | font-size: 21px; 1364 | } 1365 | } 1366 | 1367 | small, 1368 | .small { 1369 | font-size: 85%; 1370 | } 1371 | 1372 | cite { 1373 | font-style: normal; 1374 | } 1375 | 1376 | mark, 1377 | .mark { 1378 | background-color: var(--hbg); 1379 | padding: 0.2em; 1380 | } 1381 | 1382 | .text-left { 1383 | text-align: left; 1384 | } 1385 | 1386 | .text-right { 1387 | text-align: right; 1388 | } 1389 | 1390 | .text-center { 1391 | text-align: center; 1392 | } 1393 | 1394 | .text-justify { 1395 | text-align: justify; 1396 | } 1397 | 1398 | .text-nowrap { 1399 | white-space: nowrap; 1400 | } 1401 | 1402 | .text-lowercase { 1403 | text-transform: lowercase; 1404 | } 1405 | 1406 | .text-uppercase { 1407 | text-transform: uppercase; 1408 | } 1409 | 1410 | .text-capitalize { 1411 | text-transform: capitalize; 1412 | } 1413 | 1414 | .text-muted { 1415 | color: #777777; 1416 | } 1417 | 1418 | .text-primary { 1419 | color: #D94F00; 1420 | } 1421 | 1422 | a.text-primary:hover { 1423 | color: #a63c00; 1424 | } 1425 | 1426 | .text-success { 1427 | color: var(--grn); 1428 | } 1429 | 1430 | a.text-success:hover { 1431 | color: #7fc54f; 1432 | } 1433 | 1434 | .text-info { 1435 | color: #31708f; 1436 | } 1437 | 1438 | a.text-info:hover { 1439 | color: #245269; 1440 | } 1441 | 1442 | .text-warning { 1443 | color: #f0ad4e; 1444 | } 1445 | 1446 | a.text-warning:hover { 1447 | color: #ec971f; 1448 | } 1449 | 1450 | .text-danger { 1451 | color: var(--afg); 1452 | } 1453 | 1454 | a.text-danger:hover { 1455 | color: var(--bbg); 1456 | } 1457 | 1458 | .bg-primary { 1459 | color: var(--fg); 1460 | } 1461 | 1462 | .bg-primary { 1463 | background-color: var(--bbg); 1464 | } 1465 | 1466 | a.bg-primary:hover { 1467 | background-color: var(--hbbg); 1468 | } 1469 | 1470 | .bg-success { 1471 | background-color: var(--grn); 1472 | } 1473 | 1474 | a.bg-success:hover { 1475 | background-color: var(--hbg); 1476 | } 1477 | 1478 | .bg-info { 1479 | background-color: var(--hbg); 1480 | } 1481 | 1482 | a.bg-info:hover { 1483 | background-color: var(--hbg); 1484 | } 1485 | 1486 | .bg-warning { 1487 | background-color: var(--hbg); 1488 | } 1489 | 1490 | a.bg-warning:hover { 1491 | background-color: var(--hbg); 1492 | } 1493 | 1494 | .bg-danger { 1495 | background-color: var(--bbg); 1496 | } 1497 | 1498 | a.bg-danger:hover { 1499 | background-color: var(--hbbg); 1500 | } 1501 | 1502 | .page-header { 1503 | padding-bottom: 9px; 1504 | margin: 40px 0 20px; 1505 | border-bottom: 1px solid; 1506 | } 1507 | 1508 | ul, 1509 | ol { 1510 | margin-top: 0; 1511 | margin-bottom: 10px; 1512 | } 1513 | ul ul, 1514 | ul ol, 1515 | ol ul, 1516 | ol ol { 1517 | margin-bottom: 0; 1518 | } 1519 | 1520 | .list-unstyled, .list-inline { 1521 | padding-left: 0; 1522 | list-style: none; 1523 | } 1524 | 1525 | .list-inline { 1526 | margin-left: -5px; 1527 | } 1528 | .list-inline > li { 1529 | float: left; 1530 | padding-left: 5px; 1531 | padding-right: 5px; 1532 | } 1533 | 1534 | dl { 1535 | margin-top: 0; 1536 | margin-bottom: 20px; 1537 | } 1538 | 1539 | dt, 1540 | dd { 1541 | line-height: 1.428571429; 1542 | } 1543 | 1544 | dt { 1545 | font-weight: bold; 1546 | } 1547 | 1548 | dd { 1549 | margin-left: 0; 1550 | } 1551 | 1552 | .dl-horizontal dd:before, .dl-horizontal dd:after { 1553 | content: " "; 1554 | display: table; 1555 | } 1556 | .dl-horizontal dd:after { 1557 | clear: both; 1558 | } 1559 | @media (min-width: 768px) { 1560 | .dl-horizontal dt { 1561 | float: left; 1562 | width: 160px; 1563 | clear: left; 1564 | text-align: right; 1565 | overflow: hidden; 1566 | text-overflow: ellipsis; 1567 | white-space: nowrap; 1568 | } 1569 | .dl-horizontal dd { 1570 | margin-left: 180px; 1571 | } 1572 | } 1573 | 1574 | abbr[title], 1575 | abbr[data-original-title] { 1576 | cursor: help; 1577 | border-bottom: 1px dotted #777777; 1578 | } 1579 | 1580 | .initialism { 1581 | font-size: 90%; 1582 | text-transform: uppercase; 1583 | } 1584 | 1585 | blockquote { 1586 | padding: 10px 20px; 1587 | margin: 0 0 20px; 1588 | font-size: 17.5px; 1589 | border-left: 5px solid #eeeeee; 1590 | } 1591 | blockquote p:last-child, 1592 | blockquote ul:last-child, 1593 | blockquote ol:last-child { 1594 | margin-bottom: 0; 1595 | } 1596 | blockquote footer, 1597 | blockquote small, 1598 | blockquote .small { 1599 | display: block; 1600 | font-size: 80%; 1601 | line-height: 1.428571429; 1602 | color: #777777; 1603 | } 1604 | blockquote footer:before, 1605 | blockquote small:before, 1606 | blockquote .small:before { 1607 | content: "— "; 1608 | } 1609 | 1610 | .blockquote-reverse, 1611 | blockquote.pull-right { 1612 | padding-right: 15px; 1613 | padding-left: 0; 1614 | border-right: 5px solid #eeeeee; 1615 | border-left: 0; 1616 | text-align: right; 1617 | } 1618 | .blockquote-reverse footer:before, 1619 | .blockquote-reverse small:before, 1620 | .blockquote-reverse .small:before, 1621 | blockquote.pull-right footer:before, 1622 | blockquote.pull-right small:before, 1623 | blockquote.pull-right .small:before { 1624 | content: ""; 1625 | } 1626 | .blockquote-reverse footer:after, 1627 | .blockquote-reverse small:after, 1628 | .blockquote-reverse .small:after, 1629 | blockquote.pull-right footer:after, 1630 | blockquote.pull-right small:after, 1631 | blockquote.pull-right .small:after { 1632 | content: " —"; 1633 | } 1634 | 1635 | blockquote:before, 1636 | blockquote:after { 1637 | content: ""; 1638 | } 1639 | 1640 | address { 1641 | margin-bottom: 20px; 1642 | font-style: normal; 1643 | line-height: 1.428571429; 1644 | } 1645 | 1646 | code, 1647 | kbd, 1648 | pre, 1649 | samp { 1650 | font-family: Menlo, Monaco, Consolas, "Courier New", monospace; 1651 | } 1652 | 1653 | code { 1654 | padding: 2px 4px; 1655 | font-size: 90%; 1656 | color: #c7254e; 1657 | background-color: var(--hbg); 1658 | border-radius: 0px; 1659 | } 1660 | 1661 | kbd { 1662 | padding: 2px 4px; 1663 | font-size: 90%; 1664 | color: var(--fg); 1665 | background-color: #333; 1666 | border-radius: 0px; 1667 | box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); 1668 | } 1669 | kbd kbd { 1670 | padding: 0; 1671 | font-size: 100%; 1672 | box-shadow: none; 1673 | } 1674 | 1675 | pre { 1676 | display: block; 1677 | padding: 9.5px; 1678 | margin: 0 0 10px; 1679 | font-size: 13px; 1680 | line-height: 1.428571429; 1681 | word-break: break-all; 1682 | word-wrap: break-word; 1683 | color: #333333; 1684 | background-color: var(--hbg); 1685 | border: 1px solid var(--hbg); 1686 | border-radius: 0px; 1687 | } 1688 | pre code { 1689 | padding: 0; 1690 | font-size: inherit; 1691 | color: inherit; 1692 | white-space: pre-wrap; 1693 | background-color: transparent; 1694 | border-radius: 0; 1695 | } 1696 | 1697 | .pre-scrollable { 1698 | max-height: 340px; 1699 | overflow-y: scroll; 1700 | } 1701 | 1702 | .container { 1703 | margin-right: auto; 1704 | margin-left: auto; 1705 | padding-left: 20px; 1706 | padding-right: 20px; 1707 | } 1708 | .container:before, .container:after { 1709 | content: " "; 1710 | display: table; 1711 | } 1712 | .container:after { 1713 | clear: both; 1714 | } 1715 | @media (min-width: 768px) { 1716 | .container { 1717 | width: 760px; 1718 | } 1719 | } 1720 | @media (min-width: 992px) { 1721 | .container { 1722 | width: 980px; 1723 | } 1724 | } 1725 | @media (min-width: 1200px) { 1726 | .container { 1727 | width: 1180px; 1728 | } 1729 | } 1730 | 1731 | .container-fluid { 1732 | margin-right: auto; 1733 | margin-left: auto; 1734 | padding-left: 20px; 1735 | padding-right: 20px; 1736 | } 1737 | .container-fluid:before, .container-fluid:after { 1738 | content: " "; 1739 | display: table; 1740 | } 1741 | .container-fluid:after { 1742 | clear: both; 1743 | } 1744 | 1745 | .row { 1746 | margin-left: -20px; 1747 | margin-right: -20px; 1748 | } 1749 | .row:before, .row:after { 1750 | content: " "; 1751 | display: table; 1752 | } 1753 | .row:after { 1754 | clear: both; 1755 | } 1756 | 1757 | .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { 1758 | position: relative; 1759 | min-height: 1px; 1760 | padding-left: 20px; 1761 | padding-right: 20px; 1762 | } 1763 | 1764 | .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { 1765 | float: left; 1766 | } 1767 | 1768 | .col-xs-1 { 1769 | width: 8.3333333333%; 1770 | } 1771 | 1772 | .col-xs-2 { 1773 | width: 16.6666666667%; 1774 | } 1775 | 1776 | .col-xs-3 { 1777 | width: 25%; 1778 | } 1779 | 1780 | .col-xs-4 { 1781 | width: 33.3333333333%; 1782 | } 1783 | 1784 | .col-xs-5 { 1785 | width: 41.6666666667%; 1786 | } 1787 | 1788 | .col-xs-6 { 1789 | width: 50%; 1790 | } 1791 | 1792 | .col-xs-7 { 1793 | width: 58.3333333333%; 1794 | } 1795 | 1796 | .col-xs-8 { 1797 | width: 66.6666666667%; 1798 | } 1799 | 1800 | .col-xs-9 { 1801 | width: 75%; 1802 | } 1803 | 1804 | .col-xs-10 { 1805 | width: 83.3333333333%; 1806 | } 1807 | 1808 | .col-xs-11 { 1809 | width: 91.6666666667%; 1810 | } 1811 | 1812 | .col-xs-12 { 1813 | width: 100%; 1814 | } 1815 | 1816 | .col-xs-pull-0 { 1817 | right: auto; 1818 | } 1819 | 1820 | .col-xs-pull-1 { 1821 | right: 8.3333333333%; 1822 | } 1823 | 1824 | .col-xs-pull-2 { 1825 | right: 16.6666666667%; 1826 | } 1827 | 1828 | .col-xs-pull-3 { 1829 | right: 25%; 1830 | } 1831 | 1832 | .col-xs-pull-4 { 1833 | right: 33.3333333333%; 1834 | } 1835 | 1836 | .col-xs-pull-5 { 1837 | right: 41.6666666667%; 1838 | } 1839 | 1840 | .col-xs-pull-6 { 1841 | right: 50%; 1842 | } 1843 | 1844 | .col-xs-pull-7 { 1845 | right: 58.3333333333%; 1846 | } 1847 | 1848 | .col-xs-pull-8 { 1849 | right: 66.6666666667%; 1850 | } 1851 | 1852 | .col-xs-pull-9 { 1853 | right: 75%; 1854 | } 1855 | 1856 | .col-xs-pull-10 { 1857 | right: 83.3333333333%; 1858 | } 1859 | 1860 | .col-xs-pull-11 { 1861 | right: 91.6666666667%; 1862 | } 1863 | 1864 | .col-xs-pull-12 { 1865 | right: 100%; 1866 | } 1867 | 1868 | .col-xs-push-0 { 1869 | left: auto; 1870 | } 1871 | 1872 | .col-xs-push-1 { 1873 | left: 8.3333333333%; 1874 | } 1875 | 1876 | .col-xs-push-2 { 1877 | left: 16.6666666667%; 1878 | } 1879 | 1880 | .col-xs-push-3 { 1881 | left: 25%; 1882 | } 1883 | 1884 | .col-xs-push-4 { 1885 | left: 33.3333333333%; 1886 | } 1887 | 1888 | .col-xs-push-5 { 1889 | left: 41.6666666667%; 1890 | } 1891 | 1892 | .col-xs-push-6 { 1893 | left: 50%; 1894 | } 1895 | 1896 | .col-xs-push-7 { 1897 | left: 58.3333333333%; 1898 | } 1899 | 1900 | .col-xs-push-8 { 1901 | left: 66.6666666667%; 1902 | } 1903 | 1904 | .col-xs-push-9 { 1905 | left: 75%; 1906 | } 1907 | 1908 | .col-xs-push-10 { 1909 | left: 83.3333333333%; 1910 | } 1911 | 1912 | .col-xs-push-11 { 1913 | left: 91.6666666667%; 1914 | } 1915 | 1916 | .col-xs-push-12 { 1917 | left: 100%; 1918 | } 1919 | 1920 | .col-xs-offset-0 { 1921 | margin-left: 0%; 1922 | } 1923 | 1924 | .col-xs-offset-1 { 1925 | margin-left: 8.3333333333%; 1926 | } 1927 | 1928 | .col-xs-offset-2 { 1929 | margin-left: 16.6666666667%; 1930 | } 1931 | 1932 | .col-xs-offset-3 { 1933 | margin-left: 25%; 1934 | } 1935 | 1936 | .col-xs-offset-4 { 1937 | margin-left: 33.3333333333%; 1938 | } 1939 | 1940 | .col-xs-offset-5 { 1941 | margin-left: 41.6666666667%; 1942 | } 1943 | 1944 | .col-xs-offset-6 { 1945 | margin-left: 50%; 1946 | } 1947 | 1948 | .col-xs-offset-7 { 1949 | margin-left: 58.3333333333%; 1950 | } 1951 | 1952 | .col-xs-offset-8 { 1953 | margin-left: 66.6666666667%; 1954 | } 1955 | 1956 | .col-xs-offset-9 { 1957 | margin-left: 75%; 1958 | } 1959 | 1960 | .col-xs-offset-10 { 1961 | margin-left: 83.3333333333%; 1962 | } 1963 | 1964 | .col-xs-offset-11 { 1965 | margin-left: 91.6666666667%; 1966 | } 1967 | 1968 | .col-xs-offset-12 { 1969 | margin-left: 100%; 1970 | } 1971 | 1972 | @media (min-width: 768px) { 1973 | .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 { 1974 | float: left; 1975 | } 1976 | 1977 | .col-sm-1 { 1978 | width: 8.3333333333%; 1979 | } 1980 | 1981 | .col-sm-2 { 1982 | width: 16.6666666667%; 1983 | } 1984 | 1985 | .col-sm-3 { 1986 | width: 25%; 1987 | } 1988 | 1989 | .col-sm-4 { 1990 | width: 33.3333333333%; 1991 | } 1992 | 1993 | .col-sm-5 { 1994 | width: 41.6666666667%; 1995 | } 1996 | 1997 | .col-sm-6 { 1998 | width: 50%; 1999 | } 2000 | 2001 | .col-sm-7 { 2002 | width: 58.3333333333%; 2003 | } 2004 | 2005 | .col-sm-8 { 2006 | width: 66.6666666667%; 2007 | } 2008 | 2009 | .col-sm-9 { 2010 | width: 75%; 2011 | } 2012 | 2013 | .col-sm-10 { 2014 | width: 83.3333333333%; 2015 | } 2016 | 2017 | .col-sm-11 { 2018 | width: 91.6666666667%; 2019 | } 2020 | 2021 | .col-sm-12 { 2022 | width: 100%; 2023 | } 2024 | 2025 | .col-sm-pull-0 { 2026 | right: auto; 2027 | } 2028 | 2029 | .col-sm-pull-1 { 2030 | right: 8.3333333333%; 2031 | } 2032 | 2033 | .col-sm-pull-2 { 2034 | right: 16.6666666667%; 2035 | } 2036 | 2037 | .col-sm-pull-3 { 2038 | right: 25%; 2039 | } 2040 | 2041 | .col-sm-pull-4 { 2042 | right: 33.3333333333%; 2043 | } 2044 | 2045 | .col-sm-pull-5 { 2046 | right: 41.6666666667%; 2047 | } 2048 | 2049 | .col-sm-pull-6 { 2050 | right: 50%; 2051 | } 2052 | 2053 | .col-sm-pull-7 { 2054 | right: 58.3333333333%; 2055 | } 2056 | 2057 | .col-sm-pull-8 { 2058 | right: 66.6666666667%; 2059 | } 2060 | 2061 | .col-sm-pull-9 { 2062 | right: 75%; 2063 | } 2064 | 2065 | .col-sm-pull-10 { 2066 | right: 83.3333333333%; 2067 | } 2068 | 2069 | .col-sm-pull-11 { 2070 | right: 91.6666666667%; 2071 | } 2072 | 2073 | .col-sm-pull-12 { 2074 | right: 100%; 2075 | } 2076 | 2077 | .col-sm-push-0 { 2078 | left: auto; 2079 | } 2080 | 2081 | .col-sm-push-1 { 2082 | left: 8.3333333333%; 2083 | } 2084 | 2085 | .col-sm-push-2 { 2086 | left: 16.6666666667%; 2087 | } 2088 | 2089 | .col-sm-push-3 { 2090 | left: 25%; 2091 | } 2092 | 2093 | .col-sm-push-4 { 2094 | left: 33.3333333333%; 2095 | } 2096 | 2097 | .col-sm-push-5 { 2098 | left: 41.6666666667%; 2099 | } 2100 | 2101 | .col-sm-push-6 { 2102 | left: 50%; 2103 | } 2104 | 2105 | .col-sm-push-7 { 2106 | left: 58.3333333333%; 2107 | } 2108 | 2109 | .col-sm-push-8 { 2110 | left: 66.6666666667%; 2111 | } 2112 | 2113 | .col-sm-push-9 { 2114 | left: 75%; 2115 | } 2116 | 2117 | .col-sm-push-10 { 2118 | left: 83.3333333333%; 2119 | } 2120 | 2121 | .col-sm-push-11 { 2122 | left: 91.6666666667%; 2123 | } 2124 | 2125 | .col-sm-push-12 { 2126 | left: 100%; 2127 | } 2128 | 2129 | .col-sm-offset-0 { 2130 | margin-left: 0%; 2131 | } 2132 | 2133 | .col-sm-offset-1 { 2134 | margin-left: 8.3333333333%; 2135 | } 2136 | 2137 | .col-sm-offset-2 { 2138 | margin-left: 16.6666666667%; 2139 | } 2140 | 2141 | .col-sm-offset-3 { 2142 | margin-left: 25%; 2143 | } 2144 | 2145 | .col-sm-offset-4 { 2146 | margin-left: 33.3333333333%; 2147 | } 2148 | 2149 | .col-sm-offset-5 { 2150 | margin-left: 41.6666666667%; 2151 | } 2152 | 2153 | .col-sm-offset-6 { 2154 | margin-left: 50%; 2155 | } 2156 | 2157 | .col-sm-offset-7 { 2158 | margin-left: 58.3333333333%; 2159 | } 2160 | 2161 | .col-sm-offset-8 { 2162 | margin-left: 66.6666666667%; 2163 | } 2164 | 2165 | .col-sm-offset-9 { 2166 | margin-left: 75%; 2167 | } 2168 | 2169 | .col-sm-offset-10 { 2170 | margin-left: 83.3333333333%; 2171 | } 2172 | 2173 | .col-sm-offset-11 { 2174 | margin-left: 91.6666666667%; 2175 | } 2176 | 2177 | .col-sm-offset-12 { 2178 | margin-left: 100%; 2179 | } 2180 | } 2181 | @media (min-width: 992px) { 2182 | .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 { 2183 | float: left; 2184 | } 2185 | 2186 | .col-md-1 { 2187 | width: 8.3333333333%; 2188 | } 2189 | 2190 | .col-md-2 { 2191 | width: 16.6666666667%; 2192 | } 2193 | 2194 | .col-md-3 { 2195 | width: 25%; 2196 | } 2197 | 2198 | .col-md-4 { 2199 | width: 33.3333333333%; 2200 | } 2201 | 2202 | .col-md-5 { 2203 | width: 41.6666666667%; 2204 | } 2205 | 2206 | .col-md-6 { 2207 | width: 50%; 2208 | } 2209 | 2210 | .col-md-7 { 2211 | width: 58.3333333333%; 2212 | } 2213 | 2214 | .col-md-8 { 2215 | width: 66.6666666667%; 2216 | } 2217 | 2218 | .col-md-9 { 2219 | width: 75%; 2220 | } 2221 | 2222 | .col-md-10 { 2223 | width: 83.3333333333%; 2224 | } 2225 | 2226 | .col-md-11 { 2227 | width: 91.6666666667%; 2228 | } 2229 | 2230 | .col-md-12 { 2231 | width: 100%; 2232 | } 2233 | 2234 | .col-md-pull-0 { 2235 | right: auto; 2236 | } 2237 | 2238 | .col-md-pull-1 { 2239 | right: 8.3333333333%; 2240 | } 2241 | 2242 | .col-md-pull-2 { 2243 | right: 16.6666666667%; 2244 | } 2245 | 2246 | .col-md-pull-3 { 2247 | right: 25%; 2248 | } 2249 | 2250 | .col-md-pull-4 { 2251 | right: 33.3333333333%; 2252 | } 2253 | 2254 | .col-md-pull-5 { 2255 | right: 41.6666666667%; 2256 | } 2257 | 2258 | .col-md-pull-6 { 2259 | right: 50%; 2260 | } 2261 | 2262 | .col-md-pull-7 { 2263 | right: 58.3333333333%; 2264 | } 2265 | 2266 | .col-md-pull-8 { 2267 | right: 66.6666666667%; 2268 | } 2269 | 2270 | .col-md-pull-9 { 2271 | right: 75%; 2272 | } 2273 | 2274 | .col-md-pull-10 { 2275 | right: 83.3333333333%; 2276 | } 2277 | 2278 | .col-md-pull-11 { 2279 | right: 91.6666666667%; 2280 | } 2281 | 2282 | .col-md-pull-12 { 2283 | right: 100%; 2284 | } 2285 | 2286 | .col-md-push-0 { 2287 | left: auto; 2288 | } 2289 | 2290 | .col-md-push-1 { 2291 | left: 8.3333333333%; 2292 | } 2293 | 2294 | .col-md-push-2 { 2295 | left: 16.6666666667%; 2296 | } 2297 | 2298 | .col-md-push-3 { 2299 | left: 25%; 2300 | } 2301 | 2302 | .col-md-push-4 { 2303 | left: 33.3333333333%; 2304 | } 2305 | 2306 | .col-md-push-5 { 2307 | left: 41.6666666667%; 2308 | } 2309 | 2310 | .col-md-push-6 { 2311 | left: 50%; 2312 | } 2313 | 2314 | .col-md-push-7 { 2315 | left: 58.3333333333%; 2316 | } 2317 | 2318 | .col-md-push-8 { 2319 | left: 66.6666666667%; 2320 | } 2321 | 2322 | .col-md-push-9 { 2323 | left: 75%; 2324 | } 2325 | 2326 | .col-md-push-10 { 2327 | left: 83.3333333333%; 2328 | } 2329 | 2330 | .col-md-push-11 { 2331 | left: 91.6666666667%; 2332 | } 2333 | 2334 | .col-md-push-12 { 2335 | left: 100%; 2336 | } 2337 | 2338 | .col-md-offset-0 { 2339 | margin-left: 0%; 2340 | } 2341 | 2342 | .col-md-offset-1 { 2343 | margin-left: 8.3333333333%; 2344 | } 2345 | 2346 | .col-md-offset-2 { 2347 | margin-left: 16.6666666667%; 2348 | } 2349 | 2350 | .col-md-offset-3 { 2351 | margin-left: 25%; 2352 | } 2353 | 2354 | .col-md-offset-4 { 2355 | margin-left: 33.3333333333%; 2356 | } 2357 | 2358 | .col-md-offset-5 { 2359 | margin-left: 41.6666666667%; 2360 | } 2361 | 2362 | .col-md-offset-6 { 2363 | margin-left: 50%; 2364 | } 2365 | 2366 | .col-md-offset-7 { 2367 | margin-left: 58.3333333333%; 2368 | } 2369 | 2370 | .col-md-offset-8 { 2371 | margin-left: 66.6666666667%; 2372 | } 2373 | 2374 | .col-md-offset-9 { 2375 | margin-left: 75%; 2376 | } 2377 | 2378 | .col-md-offset-10 { 2379 | margin-left: 83.3333333333%; 2380 | } 2381 | 2382 | .col-md-offset-11 { 2383 | margin-left: 91.6666666667%; 2384 | } 2385 | 2386 | .col-md-offset-12 { 2387 | margin-left: 100%; 2388 | } 2389 | } 2390 | @media (min-width: 1200px) { 2391 | .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 { 2392 | float: left; 2393 | } 2394 | 2395 | .col-lg-1 { 2396 | width: 8.3333333333%; 2397 | } 2398 | 2399 | .col-lg-2 { 2400 | width: 16.6666666667%; 2401 | } 2402 | 2403 | .col-lg-3 { 2404 | width: 25%; 2405 | } 2406 | 2407 | .col-lg-4 { 2408 | width: 33.3333333333%; 2409 | } 2410 | 2411 | .col-lg-5 { 2412 | width: 41.6666666667%; 2413 | } 2414 | 2415 | .col-lg-6 { 2416 | width: 50%; 2417 | } 2418 | 2419 | .col-lg-7 { 2420 | width: 58.3333333333%; 2421 | } 2422 | 2423 | .col-lg-8 { 2424 | width: 66.6666666667%; 2425 | } 2426 | 2427 | .col-lg-9 { 2428 | width: 75%; 2429 | } 2430 | 2431 | .col-lg-10 { 2432 | width: 83.3333333333%; 2433 | } 2434 | 2435 | .col-lg-11 { 2436 | width: 91.6666666667%; 2437 | } 2438 | 2439 | .col-lg-12 { 2440 | width: 100%; 2441 | } 2442 | 2443 | .col-lg-pull-0 { 2444 | right: auto; 2445 | } 2446 | 2447 | .col-lg-pull-1 { 2448 | right: 8.3333333333%; 2449 | } 2450 | 2451 | .col-lg-pull-2 { 2452 | right: 16.6666666667%; 2453 | } 2454 | 2455 | .col-lg-pull-3 { 2456 | right: 25%; 2457 | } 2458 | 2459 | .col-lg-pull-4 { 2460 | right: 33.3333333333%; 2461 | } 2462 | 2463 | .col-lg-pull-5 { 2464 | right: 41.6666666667%; 2465 | } 2466 | 2467 | .col-lg-pull-6 { 2468 | right: 50%; 2469 | } 2470 | 2471 | .col-lg-pull-7 { 2472 | right: 58.3333333333%; 2473 | } 2474 | 2475 | .col-lg-pull-8 { 2476 | right: 66.6666666667%; 2477 | } 2478 | 2479 | .col-lg-pull-9 { 2480 | right: 75%; 2481 | } 2482 | 2483 | .col-lg-pull-10 { 2484 | right: 83.3333333333%; 2485 | } 2486 | 2487 | .col-lg-pull-11 { 2488 | right: 91.6666666667%; 2489 | } 2490 | 2491 | .col-lg-pull-12 { 2492 | right: 100%; 2493 | } 2494 | 2495 | .col-lg-push-0 { 2496 | left: auto; 2497 | } 2498 | 2499 | .col-lg-push-1 { 2500 | left: 8.3333333333%; 2501 | } 2502 | 2503 | .col-lg-push-2 { 2504 | left: 16.6666666667%; 2505 | } 2506 | 2507 | .col-lg-push-3 { 2508 | left: 25%; 2509 | } 2510 | 2511 | .col-lg-push-4 { 2512 | left: 33.3333333333%; 2513 | } 2514 | 2515 | .col-lg-push-5 { 2516 | left: 41.6666666667%; 2517 | } 2518 | 2519 | .col-lg-push-6 { 2520 | left: 50%; 2521 | } 2522 | 2523 | .col-lg-push-7 { 2524 | left: 58.3333333333%; 2525 | } 2526 | 2527 | .col-lg-push-8 { 2528 | left: 66.6666666667%; 2529 | } 2530 | 2531 | .col-lg-push-9 { 2532 | left: 75%; 2533 | } 2534 | 2535 | .col-lg-push-10 { 2536 | left: 83.3333333333%; 2537 | } 2538 | 2539 | .col-lg-push-11 { 2540 | left: 91.6666666667%; 2541 | } 2542 | 2543 | .col-lg-push-12 { 2544 | left: 100%; 2545 | } 2546 | 2547 | .col-lg-offset-0 { 2548 | margin-left: 0%; 2549 | } 2550 | 2551 | .col-lg-offset-1 { 2552 | margin-left: 8.3333333333%; 2553 | } 2554 | 2555 | .col-lg-offset-2 { 2556 | margin-left: 16.6666666667%; 2557 | } 2558 | 2559 | .col-lg-offset-3 { 2560 | margin-left: 25%; 2561 | } 2562 | 2563 | .col-lg-offset-4 { 2564 | margin-left: 33.3333333333%; 2565 | } 2566 | 2567 | .col-lg-offset-5 { 2568 | margin-left: 41.6666666667%; 2569 | } 2570 | 2571 | .col-lg-offset-6 { 2572 | margin-left: 50%; 2573 | } 2574 | 2575 | .col-lg-offset-7 { 2576 | margin-left: 58.3333333333%; 2577 | } 2578 | 2579 | .col-lg-offset-8 { 2580 | margin-left: 66.6666666667%; 2581 | } 2582 | 2583 | .col-lg-offset-9 { 2584 | margin-left: 75%; 2585 | } 2586 | 2587 | .col-lg-offset-10 { 2588 | margin-left: 83.3333333333%; 2589 | } 2590 | 2591 | .col-lg-offset-11 { 2592 | margin-left: 91.6666666667%; 2593 | } 2594 | 2595 | .col-lg-offset-12 { 2596 | margin-left: 100%; 2597 | } 2598 | } 2599 | table { 2600 | background-color: transparent; 2601 | color: div(--fg); 2602 | } 2603 | 2604 | th { 2605 | text-align: left; 2606 | } 2607 | 2608 | .table { 2609 | width: 100%; 2610 | max-width: 100%; 2611 | margin-bottom: 20px; 2612 | } 2613 | .table > thead > tr > th, 2614 | .table > thead > tr > td, 2615 | .table > tbody > tr > th, 2616 | .table > tbody > tr > td, 2617 | .table > tfoot > tr > th, 2618 | .table > tfoot > tr > td { 2619 | padding: 10px 0px 10px 20px; 2620 | line-height: 1.428571429; 2621 | vertical-align: top; 2622 | border-top: 1px dotted var(--bg); 2623 | 2624 | } 2625 | .table > thead > tr > th { 2626 | vertical-align: bottom; 2627 | border-bottom: 1px dotted var(--bg); 2628 | } 2629 | .table > caption + thead > tr:first-child > th, 2630 | .table > caption + thead > tr:first-child > td, 2631 | .table > colgroup + thead > tr:first-child > th, 2632 | .table > colgroup + thead > tr:first-child > td, 2633 | .table > thead:first-child > tr:first-child > th, 2634 | .table > thead:first-child > tr:first-child > td { 2635 | border-top: 0; 2636 | font-family: SegoeUI, "Helvetica Neue", Helvetica, Arial, sans-serif; 2637 | font-weight: normal; 2638 | } 2639 | .table > tbody + tbody { 2640 | border-top: 2px solid #eee; 2641 | } 2642 | .table .table { 2643 | background-color: var(--hbg); 2644 | } 2645 | 2646 | .table-condensed > thead > tr > th, 2647 | .table-condensed > thead > tr > td, 2648 | .table-condensed > tbody > tr > th, 2649 | .table-condensed > tbody > tr > td, 2650 | .table-condensed > tfoot > tr > th, 2651 | .table-condensed > tfoot > tr > td { 2652 | padding: 5px; 2653 | } 2654 | 2655 | .table-bordered { 2656 | border: 1px solid #eee; 2657 | } 2658 | .table-bordered > thead > tr > th, 2659 | .table-bordered > thead > tr > td, 2660 | .table-bordered > tbody > tr > th, 2661 | .table-bordered > tbody > tr > td, 2662 | .table-bordered > tfoot > tr > th, 2663 | .table-bordered > tfoot > tr > td { 2664 | border: 1px solid #eee; 2665 | } 2666 | .table-bordered > thead > tr > th, 2667 | .table-bordered > thead > tr > td { 2668 | border-bottom-width: 2px; 2669 | } 2670 | 2671 | .table-striped > tbody > tr:nth-child(odd) > td, 2672 | .table-striped > tbody > tr:nth-child(odd) > th { 2673 | background-color: var(--hbg); 2674 | } 2675 | 2676 | .table-hover > tbody > tr:hover > td, 2677 | .table-hover > tbody > tr:hover > th { 2678 | background-color: var(--dbg); 2679 | } 2680 | 2681 | table col[class*=col-] { 2682 | position: static; 2683 | float: none; 2684 | display: table-column; 2685 | } 2686 | 2687 | table td[class*=col-], 2688 | table th[class*=col-] { 2689 | position: static; 2690 | float: none; 2691 | display: table-cell; 2692 | } 2693 | 2694 | .table > thead > tr > td.active, 2695 | .table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th, 2696 | .table > tbody > tr > td.active, 2697 | .table > tbody > tr > th.active, 2698 | .table > tbody > tr.active > td, 2699 | .table > tbody > tr.active > th, 2700 | .table > tfoot > tr > td.active, 2701 | .table > tfoot > tr > th.active, 2702 | .table > tfoot > tr.active > td, 2703 | .table > tfoot > tr.active > th { 2704 | background-color: var(--hbg); 2705 | } 2706 | 2707 | .table-hover > tbody > tr > td.active:hover, 2708 | .table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th { 2709 | background-color: var(--hbg); 2710 | } 2711 | 2712 | .table > thead > tr > td.success, 2713 | .table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th, 2714 | .table > tbody > tr > td.success, 2715 | .table > tbody > tr > th.success, 2716 | .table > tbody > tr.success > td, 2717 | .table > tbody > tr.success > th, 2718 | .table > tfoot > tr > td.success, 2719 | .table > tfoot > tr > th.success, 2720 | .table > tfoot > tr.success > td, 2721 | .table > tfoot > tr.success > th { 2722 | background-color: var(--grn); 2723 | } 2724 | 2725 | .table-hover > tbody > tr > td.success:hover, 2726 | .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th { 2727 | background-color: var(--grn); 2728 | } 2729 | 2730 | .table > thead > tr > td.info, 2731 | .table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th, 2732 | .table > tbody > tr > td.info, 2733 | .table > tbody > tr > th.info, 2734 | .table > tbody > tr.info > td, 2735 | .table > tbody > tr.info > th, 2736 | .table > tfoot > tr > td.info, 2737 | .table > tfoot > tr > th.info, 2738 | .table > tfoot > tr.info > td, 2739 | .table > tfoot > tr.info > th { 2740 | background-color: var(--hbg); 2741 | } 2742 | 2743 | .table-hover > tbody > tr > td.info:hover, 2744 | .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th { 2745 | background-color: var(--hbg); 2746 | } 2747 | 2748 | .table > thead > tr > td.warning, 2749 | .table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th, 2750 | .table > tbody > tr > td.warning, 2751 | .table > tbody > tr > th.warning, 2752 | .table > tbody > tr.warning > td, 2753 | .table > tbody > tr.warning > th, 2754 | .table > tfoot > tr > td.warning, 2755 | .table > tfoot > tr > th.warning, 2756 | .table > tfoot > tr.warning > td, 2757 | .table > tfoot > tr.warning > th { 2758 | background-color: var(--hbg); 2759 | } 2760 | 2761 | .table-hover > tbody > tr > td.warning:hover, 2762 | .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th { 2763 | background-color: var(--hbg); 2764 | } 2765 | 2766 | .table > thead > tr > td.danger, 2767 | .table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th, 2768 | .table > tbody > tr > td.danger, 2769 | .table > tbody > tr > th.danger, 2770 | .table > tbody > tr.danger > td, 2771 | .table > tbody > tr.danger > th, 2772 | .table > tfoot > tr > td.danger, 2773 | .table > tfoot > tr > th.danger, 2774 | .table > tfoot > tr.danger > td, 2775 | .table > tfoot > tr.danger > th { 2776 | background-color: var(--bbg); 2777 | } 2778 | 2779 | .table-hover > tbody > tr > td.danger:hover, 2780 | .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th { 2781 | background-color: var(--hbbg); 2782 | } 2783 | 2784 | @media screen and (max-width: 767px) { 2785 | .table-responsive { 2786 | width: 100%; 2787 | margin-bottom: 15px; 2788 | overflow-y: hidden; 2789 | overflow-x: auto; 2790 | -ms-overflow-style: -ms-autohiding-scrollbar; 2791 | /* border: 1px solid $table-border-color; */ 2792 | -webkit-overflow-scrolling: touch; 2793 | } 2794 | .table-responsive > .table { 2795 | margin-bottom: 0; 2796 | } 2797 | .table-responsive > .table > thead > tr > th, 2798 | .table-responsive > .table > thead > tr > td, 2799 | .table-responsive > .table > tbody > tr > th, 2800 | .table-responsive > .table > tbody > tr > td, 2801 | .table-responsive > .table > tfoot > tr > th, 2802 | .table-responsive > .table > tfoot > tr > td { 2803 | white-space: nowrap; 2804 | } 2805 | .table-responsive > .table-bordered { 2806 | border: 0; 2807 | } 2808 | .table-responsive > .table-bordered > thead > tr > th:first-child, 2809 | .table-responsive > .table-bordered > thead > tr > td:first-child, 2810 | .table-responsive > .table-bordered > tbody > tr > th:first-child, 2811 | .table-responsive > .table-bordered > tbody > tr > td:first-child, 2812 | .table-responsive > .table-bordered > tfoot > tr > th:first-child, 2813 | .table-responsive > .table-bordered > tfoot > tr > td:first-child { 2814 | border-left: 0; 2815 | } 2816 | .table-responsive > .table-bordered > thead > tr > th:last-child, 2817 | .table-responsive > .table-bordered > thead > tr > td:last-child, 2818 | .table-responsive > .table-bordered > tbody > tr > th:last-child, 2819 | .table-responsive > .table-bordered > tbody > tr > td:last-child, 2820 | .table-responsive > .table-bordered > tfoot > tr > th:last-child, 2821 | .table-responsive > .table-bordered > tfoot > tr > td:last-child { 2822 | border-right: 0; 2823 | } 2824 | .table-responsive > .table-bordered > tbody > tr:last-child > th, 2825 | .table-responsive > .table-bordered > tbody > tr:last-child > td, 2826 | .table-responsive > .table-bordered > tfoot > tr:last-child > th, 2827 | .table-responsive > .table-bordered > tfoot > tr:last-child > td { 2828 | border-bottom: 0; 2829 | } 2830 | } 2831 | 2832 | fieldset { 2833 | padding: 0; 2834 | margin: 0; 2835 | border: 0; 2836 | min-width: 0; 2837 | } 2838 | 2839 | legend { 2840 | display: block; 2841 | width: 100%; 2842 | padding: 0; 2843 | margin-bottom: 20px; 2844 | font-size: 21px; 2845 | line-height: inherit; 2846 | color: #333333; 2847 | border: 0; 2848 | border-bottom: 1px solid var(--bg); 2849 | } 2850 | 2851 | label { 2852 | display: inline-block; 2853 | max-width: 100%; 2854 | margin-bottom: 5px; 2855 | font-weight: normal; 2856 | } 2857 | 2858 | input[type=search] { 2859 | -webkit-box-sizing: border-box; 2860 | -moz-box-sizing: border-box; 2861 | box-sizing: border-box; 2862 | } 2863 | 2864 | input[type=radio], 2865 | input[type=checkbox] { 2866 | margin: 4px 0 0; 2867 | margin-top: 1px \9 ; 2868 | line-height: normal; 2869 | } 2870 | 2871 | input[type=file] { 2872 | display: block; 2873 | } 2874 | 2875 | input[type=range] { 2876 | display: block; 2877 | width: 100%; 2878 | } 2879 | 2880 | select[multiple], 2881 | select[size] { 2882 | height: auto; 2883 | } 2884 | 2885 | input[type=file]:focus, 2886 | input[type=radio]:focus, 2887 | input[type=checkbox]:focus { 2888 | outline: thin dotted; 2889 | outline: 5px auto -webkit-focus-ring-color; 2890 | outline-offset: -2px; 2891 | } 2892 | 2893 | output { 2894 | display: block; 2895 | padding-top: 7px; 2896 | font-size: 14px; 2897 | line-height: 1.428571429; 2898 | color: #555555; 2899 | } 2900 | 2901 | select, 2902 | textarea, 2903 | input[type=text], 2904 | input[type=password], 2905 | input[type=datetime], 2906 | input[type=datetime-local], 2907 | input[type=date], 2908 | input[type=month], 2909 | input[type=time], 2910 | input[type=week], 2911 | input[type=number], 2912 | input[type=email], 2913 | input[type=url], 2914 | input[type=search], 2915 | input[type=tel], 2916 | input[type=color] { 2917 | display: block; 2918 | width: 100%; 2919 | height: 34px; 2920 | padding: 6px 12px; 2921 | font-size: 14px; 2922 | line-height: 1.428571429; 2923 | color: var(--fg); 2924 | background-color: var(--bg); 2925 | background-image: none; 2926 | border: 1px solid var(--bg); 2927 | border-radius: 0px; 2928 | text-overflow: ellipsis; 2929 | max-width: 348px; 2930 | } 2931 | 2932 | select:hover, 2933 | textarea:hover, 2934 | input[type=text]:hover, 2935 | input[type=password]:hover, 2936 | input[type=datetime]:hover, 2937 | input[type=datetime-local]:hover, 2938 | input[type=date]:hover, 2939 | input[type=month]:hover, 2940 | input[type=time]:hover, 2941 | input[type=week]:hover, 2942 | input[type=number]:hover, 2943 | input[type=email]:hover, 2944 | input[type=url]:hover, 2945 | input[type=search]:hover, 2946 | input[type=tel]:hover, 2947 | input[type=color]:hover{ 2948 | background-color: var(--dbg); 2949 | } 2950 | 2951 | select:focus, 2952 | textarea:focus, 2953 | input[type=text]:focus, 2954 | input[type=password]:focus, 2955 | input[type=datetime]:focus, 2956 | input[type=datetime-local]:focus, 2957 | input[type=date]:focus, 2958 | input[type=month]:focus, 2959 | input[type=time]:focus, 2960 | input[type=week]:focus, 2961 | input[type=number]:focus, 2962 | input[type=email]:focus, 2963 | input[type=url]:focus, 2964 | input[type=search]:focus, 2965 | input[type=tel]:focus, 2966 | input[type=color]:focus { 2967 | background-color: var(--dbg); 2968 | color: var(--hfg); 2969 | outline: 0; 2970 | 2971 | } 2972 | select::-moz-placeholder, 2973 | textarea::-moz-placeholder, 2974 | input[type=text]::-moz-placeholder, 2975 | input[type=password]::-moz-placeholder, 2976 | input[type=datetime]::-moz-placeholder, 2977 | input[type=datetime-local]::-moz-placeholder, 2978 | input[type=date]::-moz-placeholder, 2979 | input[type=month]::-moz-placeholder, 2980 | input[type=time]::-moz-placeholder, 2981 | input[type=week]::-moz-placeholder, 2982 | input[type=number]::-moz-placeholder, 2983 | input[type=email]::-moz-placeholder, 2984 | input[type=url]::-moz-placeholder, 2985 | input[type=search]::-moz-placeholder, 2986 | input[type=tel]::-moz-placeholder, 2987 | input[type=color]::-moz-placeholder { 2988 | color: #777777; 2989 | opacity: 1; 2990 | } 2991 | select:-ms-input-placeholder, 2992 | textarea:-ms-input-placeholder, 2993 | input[type=text]:-ms-input-placeholder, 2994 | input[type=password]:-ms-input-placeholder, 2995 | input[type=datetime]:-ms-input-placeholder, 2996 | input[type=datetime-local]:-ms-input-placeholder, 2997 | input[type=date]:-ms-input-placeholder, 2998 | input[type=month]:-ms-input-placeholder, 2999 | input[type=time]:-ms-input-placeholder, 3000 | input[type=week]:-ms-input-placeholder, 3001 | input[type=number]:-ms-input-placeholder, 3002 | input[type=email]:-ms-input-placeholder, 3003 | input[type=url]:-ms-input-placeholder, 3004 | input[type=search]:-ms-input-placeholder, 3005 | input[type=tel]:-ms-input-placeholder, 3006 | input[type=color]:-ms-input-placeholder { 3007 | color: #777777; 3008 | } 3009 | select::-webkit-input-placeholder, 3010 | textarea::-webkit-input-placeholder, 3011 | input[type=text]::-webkit-input-placeholder, 3012 | input[type=password]::-webkit-input-placeholder, 3013 | input[type=datetime]::-webkit-input-placeholder, 3014 | input[type=datetime-local]::-webkit-input-placeholder, 3015 | input[type=date]::-webkit-input-placeholder, 3016 | input[type=month]::-webkit-input-placeholder, 3017 | input[type=time]::-webkit-input-placeholder, 3018 | input[type=week]::-webkit-input-placeholder, 3019 | input[type=number]::-webkit-input-placeholder, 3020 | input[type=email]::-webkit-input-placeholder, 3021 | input[type=url]::-webkit-input-placeholder, 3022 | input[type=search]::-webkit-input-placeholder, 3023 | input[type=tel]::-webkit-input-placeholder, 3024 | input[type=color]::-webkit-input-placeholder { 3025 | color: #777777; 3026 | } 3027 | select[disabled], select[readonly], fieldset[disabled] select, 3028 | textarea[disabled], 3029 | textarea[readonly], 3030 | fieldset[disabled] textarea, 3031 | input[type=text][disabled], 3032 | input[type=text][readonly], 3033 | fieldset[disabled] input[type=text], 3034 | input[type=password][disabled], 3035 | input[type=password][readonly], 3036 | fieldset[disabled] input[type=password], 3037 | input[type=datetime][disabled], 3038 | input[type=datetime][readonly], 3039 | fieldset[disabled] input[type=datetime], 3040 | input[type=datetime-local][disabled], 3041 | input[type=datetime-local][readonly], 3042 | fieldset[disabled] input[type=datetime-local], 3043 | input[type=date][disabled], 3044 | input[type=date][readonly], 3045 | fieldset[disabled] input[type=date], 3046 | input[type=month][disabled], 3047 | input[type=month][readonly], 3048 | fieldset[disabled] input[type=month], 3049 | input[type=time][disabled], 3050 | input[type=time][readonly], 3051 | fieldset[disabled] input[type=time], 3052 | input[type=week][disabled], 3053 | input[type=week][readonly], 3054 | fieldset[disabled] input[type=week], 3055 | input[type=number][disabled], 3056 | input[type=number][readonly], 3057 | fieldset[disabled] input[type=number], 3058 | input[type=email][disabled], 3059 | input[type=email][readonly], 3060 | fieldset[disabled] input[type=email], 3061 | input[type=url][disabled], 3062 | input[type=url][readonly], 3063 | fieldset[disabled] input[type=url], 3064 | input[type=search][disabled], 3065 | input[type=search][readonly], 3066 | fieldset[disabled] input[type=search], 3067 | input[type=tel][disabled], 3068 | input[type=tel][readonly], 3069 | fieldset[disabled] input[type=tel], 3070 | input[type=color][disabled], 3071 | input[type=color][readonly], 3072 | fieldset[disabled] input[type=color] { 3073 | cursor: not-allowed; 3074 | background-color: var(--bg); 3075 | opacity: 1; 3076 | } 3077 | 3078 | textarea { 3079 | height: auto; 3080 | } 3081 | 3082 | input[type=search] { 3083 | -webkit-appearance: none; 3084 | } 3085 | 3086 | input[type=date], 3087 | input[type=time], 3088 | input[type=datetime-local], 3089 | input[type=month] { 3090 | line-height: 34px; 3091 | line-height: 1.428571429 \0 ; 3092 | } 3093 | input[type=date].input-sm, .input-group-sm > input[type=date].form-control, 3094 | .input-group-sm > input[type=date].input-group-addon, 3095 | .input-group-sm > .input-group-btn > input[type=date].btn, .form-horizontal .form-group-sm input[type=date].form-control, 3096 | input[type=time].input-sm, 3097 | .input-group-sm > input[type=time].form-control, 3098 | .input-group-sm > input[type=time].input-group-addon, 3099 | .input-group-sm > .input-group-btn > input[type=time].btn, 3100 | .form-horizontal .form-group-sm input[type=time].form-control, 3101 | input[type=datetime-local].input-sm, 3102 | .input-group-sm > input[type=datetime-local].form-control, 3103 | .input-group-sm > input[type=datetime-local].input-group-addon, 3104 | .input-group-sm > .input-group-btn > input[type=datetime-local].btn, 3105 | .form-horizontal .form-group-sm input[type=datetime-local].form-control, 3106 | input[type=month].input-sm, 3107 | .input-group-sm > input[type=month].form-control, 3108 | .input-group-sm > input[type=month].input-group-addon, 3109 | .input-group-sm > .input-group-btn > input[type=month].btn, 3110 | .form-horizontal .form-group-sm input[type=month].form-control { 3111 | line-height: 30px; 3112 | } 3113 | input[type=date].input-lg, .input-group-lg > input[type=date].form-control, 3114 | .input-group-lg > input[type=date].input-group-addon, 3115 | .input-group-lg > .input-group-btn > input[type=date].btn, .form-horizontal .form-group-lg input[type=date].form-control, 3116 | input[type=time].input-lg, 3117 | .input-group-lg > input[type=time].form-control, 3118 | .input-group-lg > input[type=time].input-group-addon, 3119 | .input-group-lg > .input-group-btn > input[type=time].btn, 3120 | .form-horizontal .form-group-lg input[type=time].form-control, 3121 | input[type=datetime-local].input-lg, 3122 | .input-group-lg > input[type=datetime-local].form-control, 3123 | .input-group-lg > input[type=datetime-local].input-group-addon, 3124 | .input-group-lg > .input-group-btn > input[type=datetime-local].btn, 3125 | .form-horizontal .form-group-lg input[type=datetime-local].form-control, 3126 | input[type=month].input-lg, 3127 | .input-group-lg > input[type=month].form-control, 3128 | .input-group-lg > input[type=month].input-group-addon, 3129 | .input-group-lg > .input-group-btn > input[type=month].btn, 3130 | .form-horizontal .form-group-lg input[type=month].form-control { 3131 | line-height: 46px; 3132 | } 3133 | 3134 | .form-group { 3135 | margin-bottom: 15px; 3136 | } 3137 | 3138 | .radio, 3139 | .checkbox { 3140 | position: relative; 3141 | display: block; 3142 | min-height: 20px; 3143 | margin-top: 10px; 3144 | margin-bottom: 10px; 3145 | 3146 | } 3147 | .radio label, 3148 | .checkbox label { 3149 | padding-left: 20px; 3150 | margin-bottom: 0; 3151 | font-weight: normal; 3152 | cursor: pointer; 3153 | } 3154 | 3155 | .radio input[type=radio], 3156 | .radio-inline input[type=radio], 3157 | .checkbox input[type=checkbox], 3158 | .checkbox-inline input[type=checkbox] { 3159 | position: absolute; 3160 | margin-left: -20px; 3161 | margin-top: 4px \9 ; 3162 | 3163 | } 3164 | 3165 | .radio + .radio, 3166 | .checkbox + .checkbox { 3167 | margin-top: -5px; 3168 | } 3169 | 3170 | .radio-inline, 3171 | .checkbox-inline { 3172 | display: inline-block; 3173 | padding-left: 20px; 3174 | margin-bottom: 0; 3175 | vertical-align: middle; 3176 | font-weight: normal; 3177 | cursor: pointer; 3178 | } 3179 | 3180 | .radio-inline + .radio-inline, 3181 | .checkbox-inline + .checkbox-inline { 3182 | margin-top: 0; 3183 | margin-left: 10px; 3184 | } 3185 | 3186 | input[type=radio][disabled], input[type=radio].disabled, fieldset[disabled] input[type=radio], 3187 | input[type=checkbox][disabled], 3188 | input[type=checkbox].disabled, 3189 | fieldset[disabled] input[type=checkbox] { 3190 | cursor: not-allowed; 3191 | } 3192 | 3193 | .radio-inline.disabled, fieldset[disabled] .radio-inline, 3194 | .checkbox-inline.disabled, 3195 | fieldset[disabled] .checkbox-inline { 3196 | cursor: not-allowed; 3197 | } 3198 | 3199 | .radio.disabled label, fieldset[disabled] .radio label, 3200 | .checkbox.disabled label, 3201 | fieldset[disabled] .checkbox label { 3202 | cursor: not-allowed; 3203 | } 3204 | 3205 | .form-control-static { 3206 | padding-top: 7px; 3207 | padding-bottom: 7px; 3208 | margin-bottom: 0; 3209 | } 3210 | .form-control-static.input-lg, .input-group-lg > .form-control-static.form-control, 3211 | .input-group-lg > .form-control-static.input-group-addon, 3212 | .input-group-lg > .input-group-btn > .form-control-static.btn, .form-horizontal .form-group-lg .form-control-static.form-control, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control, 3213 | .input-group-sm > .form-control-static.input-group-addon, 3214 | .input-group-sm > .input-group-btn > .form-control-static.btn, .form-horizontal .form-group-sm .form-control-static.form-control { 3215 | padding-left: 0; 3216 | padding-right: 0; 3217 | } 3218 | 3219 | .input-sm, .input-group-sm > .form-control, 3220 | .input-group-sm > .input-group-addon, 3221 | .input-group-sm > .input-group-btn > .btn, .form-horizontal .form-group-sm .form-control { 3222 | height: 30px; 3223 | padding: 5px 10px; 3224 | font-size: 12px; 3225 | line-height: 1.5; 3226 | border-radius: 0px; 3227 | } 3228 | 3229 | select.input-sm, .input-group-sm > select.form-control, 3230 | .input-group-sm > select.input-group-addon, 3231 | .input-group-sm > .input-group-btn > select.btn, .form-horizontal .form-group-sm select.form-control { 3232 | height: 30px; 3233 | line-height: 30px; 3234 | } 3235 | 3236 | textarea.input-sm, .input-group-sm > textarea.form-control, 3237 | .input-group-sm > textarea.input-group-addon, 3238 | .input-group-sm > .input-group-btn > textarea.btn, .form-horizontal .form-group-sm textarea.form-control, 3239 | select[multiple].input-sm, 3240 | .input-group-sm > select[multiple].form-control, 3241 | .input-group-sm > select[multiple].input-group-addon, 3242 | .input-group-sm > .input-group-btn > select[multiple].btn, 3243 | .form-horizontal .form-group-sm select[multiple].form-control { 3244 | height: auto; 3245 | } 3246 | 3247 | .input-lg, .input-group-lg > .form-control, 3248 | .input-group-lg > .input-group-addon, 3249 | .input-group-lg > .input-group-btn > .btn, .form-horizontal .form-group-lg .form-control { 3250 | height: 46px; 3251 | padding: 10px 16px; 3252 | font-size: 18px; 3253 | line-height: 1.33; 3254 | border-radius: 0px; 3255 | } 3256 | 3257 | select.input-lg, .input-group-lg > select.form-control, 3258 | .input-group-lg > select.input-group-addon, 3259 | .input-group-lg > .input-group-btn > select.btn, .form-horizontal .form-group-lg select.form-control { 3260 | height: 46px; 3261 | line-height: 46px; 3262 | } 3263 | 3264 | textarea.input-lg, .input-group-lg > textarea.form-control, 3265 | .input-group-lg > textarea.input-group-addon, 3266 | .input-group-lg > .input-group-btn > textarea.btn, .form-horizontal .form-group-lg textarea.form-control, 3267 | select[multiple].input-lg, 3268 | .input-group-lg > select[multiple].form-control, 3269 | .input-group-lg > select[multiple].input-group-addon, 3270 | .input-group-lg > .input-group-btn > select[multiple].btn, 3271 | .form-horizontal .form-group-lg select[multiple].form-control { 3272 | height: auto; 3273 | } 3274 | 3275 | .has-feedback { 3276 | position: relative; 3277 | } 3278 | .has-feedback .form-control { 3279 | padding-right: 42.5px; 3280 | } 3281 | 3282 | .form-control-feedback { 3283 | position: absolute; 3284 | top: 25px; 3285 | right: 0; 3286 | z-index: 2; 3287 | display: block; 3288 | width: 34px; 3289 | height: 34px; 3290 | line-height: 34px; 3291 | text-align: center; 3292 | } 3293 | 3294 | .input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, 3295 | .input-group-lg > .input-group-addon + .form-control-feedback, 3296 | .input-group-lg > .input-group-btn > .btn + .form-control-feedback, .form-horizontal .form-group-lg .form-control + .form-control-feedback { 3297 | width: 46px; 3298 | height: 46px; 3299 | line-height: 46px; 3300 | } 3301 | 3302 | .input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, 3303 | .input-group-sm > .input-group-addon + .form-control-feedback, 3304 | .input-group-sm > .input-group-btn > .btn + .form-control-feedback, .form-horizontal .form-group-sm .form-control + .form-control-feedback { 3305 | width: 30px; 3306 | height: 30px; 3307 | line-height: 30px; 3308 | } 3309 | 3310 | .has-success .help-block, 3311 | .has-success .control-label, 3312 | .has-success .radio, 3313 | .has-success .checkbox, 3314 | .has-success .radio-inline, 3315 | .has-success .checkbox-inline { 3316 | color: var(--grn); 3317 | } 3318 | .has-success .form-control { 3319 | border-color: var(--grn); 3320 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 3321 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 3322 | } 3323 | .has-success .form-control:focus { 3324 | border-color: #7fc54f; 3325 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d3ebc2; 3326 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d3ebc2; 3327 | } 3328 | .has-success .input-group-addon { 3329 | color: var(--grn); 3330 | border-color: var(--grn); 3331 | background-color: var(--grn); 3332 | } 3333 | .has-success .form-control-feedback { 3334 | color: var(--grn); 3335 | } 3336 | 3337 | .has-warning .help-block, 3338 | .has-warning .control-label, 3339 | .has-warning .radio, 3340 | .has-warning .checkbox, 3341 | .has-warning .radio-inline, 3342 | .has-warning .checkbox-inline { 3343 | color: #f0ad4e; 3344 | } 3345 | .has-warning .form-control { 3346 | border-color: #f0ad4e; 3347 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 3348 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 3349 | } 3350 | .has-warning .form-control:focus { 3351 | border-color: #ec971f; 3352 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f8d9ac; 3353 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f8d9ac; 3354 | } 3355 | .has-warning .input-group-addon { 3356 | color: #f0ad4e; 3357 | border-color: #f0ad4e; 3358 | background-color: var(--hbg); 3359 | } 3360 | .has-warning .form-control-feedback { 3361 | color: #f0ad4e; 3362 | } 3363 | 3364 | .has-error .help-block, 3365 | .has-error .control-label, 3366 | .has-error .radio, 3367 | .has-error .checkbox, 3368 | .has-error .radio-inline, 3369 | .has-error .checkbox-inline { 3370 | color: var(--bbg); 3371 | } 3372 | .has-error .form-control { 3373 | border-color: var(--bbg); 3374 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 3375 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 3376 | } 3377 | .has-error .form-control:focus { 3378 | border-color: var(--hbbg); 3379 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f8aeae; 3380 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f8aeae; 3381 | } 3382 | .has-error .input-group-addon { 3383 | color: var(--red); 3384 | border-color: var(--red); 3385 | background-color: var(--red); 3386 | } 3387 | .has-error .form-control-feedback { 3388 | color: var(--bbg); 3389 | } 3390 | 3391 | .has-feedback label.sr-only ~ .form-control-feedback { 3392 | top: 0; 3393 | } 3394 | 3395 | .help-block { 3396 | display: block; 3397 | margin-top: 5px; 3398 | margin-bottom: 10px; 3399 | color: #7c7c7a; 3400 | } 3401 | 3402 | @media (min-width: 768px) { 3403 | .form-inline .form-group, .navbar-form .form-group { 3404 | display: inline-block; 3405 | margin-bottom: 0; 3406 | vertical-align: middle; 3407 | } 3408 | .form-inline .form-control, .navbar-form .form-control { 3409 | display: inline-block; 3410 | width: auto; 3411 | vertical-align: middle; 3412 | } 3413 | .form-inline .input-group, .navbar-form .input-group { 3414 | display: inline-table; 3415 | vertical-align: middle; 3416 | } 3417 | .form-inline .input-group .input-group-addon, .navbar-form .input-group .input-group-addon, 3418 | .form-inline .input-group .input-group-btn, 3419 | .navbar-form .input-group .input-group-btn, 3420 | .form-inline .input-group .form-control, 3421 | .navbar-form .input-group .form-control { 3422 | width: auto; 3423 | } 3424 | .form-inline .input-group > .form-control, .navbar-form .input-group > .form-control { 3425 | width: 100%; 3426 | } 3427 | .form-inline .control-label, .navbar-form .control-label { 3428 | margin-bottom: 0; 3429 | vertical-align: middle; 3430 | } 3431 | .form-inline .radio, .navbar-form .radio, 3432 | .form-inline .checkbox, 3433 | .navbar-form .checkbox { 3434 | display: inline-block; 3435 | margin-top: 0; 3436 | margin-bottom: 0; 3437 | vertical-align: middle; 3438 | } 3439 | .form-inline .radio label, .navbar-form .radio label, 3440 | .form-inline .checkbox label, 3441 | .navbar-form .checkbox label { 3442 | padding-left: 0; 3443 | } 3444 | .form-inline .radio input[type=radio], .navbar-form .radio input[type=radio], 3445 | .form-inline .checkbox input[type=checkbox], 3446 | .navbar-form .checkbox input[type=checkbox] { 3447 | position: relative; 3448 | margin-left: 0; 3449 | } 3450 | .form-inline .has-feedback .form-control-feedback, .navbar-form .has-feedback .form-control-feedback { 3451 | top: 0; 3452 | } 3453 | } 3454 | 3455 | .form-horizontal .radio, 3456 | .form-horizontal .checkbox, 3457 | .form-horizontal .radio-inline, 3458 | .form-horizontal .checkbox-inline { 3459 | margin-top: 0; 3460 | margin-bottom: 0; 3461 | padding-top: 7px; 3462 | } 3463 | .form-horizontal .radio, 3464 | .form-horizontal .checkbox { 3465 | min-height: 27px; 3466 | } 3467 | .form-horizontal .form-group { 3468 | margin-left: -20px; 3469 | margin-right: -20px; 3470 | } 3471 | .form-horizontal .form-group:before, .form-horizontal .form-group:after { 3472 | content: " "; 3473 | display: table; 3474 | } 3475 | .form-horizontal .form-group:after { 3476 | clear: both; 3477 | } 3478 | @media (min-width: 768px) { 3479 | .form-horizontal .control-label { 3480 | text-align: right; 3481 | margin-bottom: 0; 3482 | padding-top: 7px; 3483 | } 3484 | } 3485 | .form-horizontal .has-feedback control-feedback { 3486 | top: 0; 3487 | right: 20px; 3488 | } 3489 | @media (min-width: 768px) { 3490 | .form-horizontal .form-group-lg .control-label { 3491 | padding-top: 14.3px; 3492 | } 3493 | } 3494 | @media (min-width: 768px) { 3495 | .form-horizontal .form-group-sm .control-label { 3496 | padding-top: 6px; 3497 | } 3498 | } 3499 | .btn { 3500 | display: inline-block; 3501 | margin-bottom: 0; 3502 | font-weight: normal; 3503 | text-align: center; 3504 | vertical-align: middle; 3505 | cursor: pointer; 3506 | background-image: none; 3507 | border: 1px solid transparent; 3508 | white-space: nowrap; 3509 | padding: 6px 12px; 3510 | font-size: 14px; 3511 | line-height: 1.428571429; 3512 | border-radius: 0px; 3513 | -webkit-user-select: none; 3514 | -moz-user-select: none; 3515 | -ms-user-select: none; 3516 | user-select: none; 3517 | color: var(--fg); 3518 | background-color: var(--bg); 3519 | border-color: var(--bg); 3520 | } 3521 | .btn:hover { 3522 | background: var(--dbg); 3523 | } 3524 | .btn:hover, .btn:focus, .btn:active, .btn.active, .open > .btn.dropdown-toggle { 3525 | color: var(--hfg); 3526 | background: var(--dbg); 3527 | border-color: var(--sbg); 3528 | } 3529 | .btn:active, .btn.active, .open > .btn.dropdown-toggle { 3530 | background-image: none; 3531 | background-color: var(--sbg) 3532 | color: var(--hfg); 3533 | } 3534 | .btn.disabled, .btn.disabled:hover, .btn.disabled:focus, .btn.disabled:active, .btn.disabled.active, .btn[disabled], .btn[disabled]:hover, .btn[disabled]:focus, .btn[disabled]:active, .btn[disabled].active, fieldset[disabled] .btn, fieldset[disabled] .btn:hover, fieldset[disabled] .btn:focus, fieldset[disabled] .btn:active, fieldset[disabled] .btn.active { 3535 | background-color: var(--bg); 3536 | border-color: var(--bg); 3537 | } 3538 | .btn .badge { 3539 | color: var(--fg); 3540 | background-color: var(--dbg); 3541 | } 3542 | .btn:focus, .btn:active:focus, .btn.active:focus { 3543 | outline: thin dotted; 3544 | outline: 10px auto -webkit-focus-ring-color; 3545 | outline-offset: -2px; 3546 | } 3547 | .btn:hover, .btn:focus { 3548 | color: var(--fg); 3549 | text-decoration: none; 3550 | } 3551 | .btn:active, .btn.active { 3552 | outline: 0; 3553 | background-image: none; 3554 | -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); 3555 | box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); 3556 | } 3557 | .btn.disabled, .btn[disabled], fieldset[disabled] .btn { 3558 | cursor: not-allowed; 3559 | pointer-events: none; 3560 | opacity: 0.65; 3561 | filter: alpha(opacity=65); 3562 | -webkit-box-shadow: none; 3563 | box-shadow: none; 3564 | } 3565 | 3566 | .btn-default { 3567 | color: var(--fg); 3568 | background-color: var(--bg); 3569 | border-color: var(--bg); 3570 | } 3571 | 3572 | 3573 | .btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle { 3574 | color: var(--fg); 3575 | background-color: var(--dbg); 3576 | border-color: var(--dbg); 3577 | } 3578 | .btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle { 3579 | background-image: none; 3580 | } 3581 | .btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled]:active, .btn-default[disabled].active, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active { 3582 | background-color: var(--hbg); 3583 | } 3584 | .btn-default .badge { 3585 | color: var(--fg); 3586 | background-color: var(--hbg); 3587 | } 3588 | 3589 | .btn-primary { 3590 | color: var(--bfg); 3591 | background-color: var(--bbg); 3592 | border-color: var(--bbg); 3593 | } 3594 | .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle { 3595 | color: var(--bfg); 3596 | background-color: var(--hbbg); 3597 | border-color: var(--hbbg); 3598 | } 3599 | .btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle { 3600 | background-image: none; 3601 | } 3602 | .btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled]:active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active { 3603 | background-color: #D94F00; 3604 | border-color: #D95100; 3605 | } 3606 | .btn-primary .badge { 3607 | color: #D94F00; 3608 | background-color: var(--hbg); 3609 | } 3610 | 3611 | .btn-success { 3612 | color: var(--bg); 3613 | background-color: var(--grn); 3614 | border-color: var(--grn); 3615 | } 3616 | .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle { 3617 | color: var(--fg); 3618 | background-color: var(--grn); 3619 | border-color: var(--grn); 3620 | } 3621 | .btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle { 3622 | background-image: none; 3623 | } 3624 | .btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled]:active, .btn-success[disabled].active, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active { 3625 | background-color: var(--grn); 3626 | border-color: var(--grn); 3627 | } 3628 | .btn-success .badge { 3629 | color: var(--grn); 3630 | background-color: var(--hbg); 3631 | } 3632 | 3633 | .btn-info { 3634 | color: var(--fg); 3635 | background-color: var(--hbg); 3636 | border-color: #9ec2d3; 3637 | } 3638 | .btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle { 3639 | color: var(--fg); 3640 | background-color: var(--hbg); 3641 | border-color: var(--hbg); 3642 | } 3643 | .btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle { 3644 | background-image: none; 3645 | } 3646 | .btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled]:active, .btn-info[disabled].active, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active { 3647 | background-color: var(--hbg); 3648 | border-color: var(--hbg); 3649 | } 3650 | .btn-info .badge { 3651 | color: #B0CDDB; 3652 | background-color: var(--hbg); 3653 | } 3654 | 3655 | .btn-warning { 3656 | color: var(--fg); 3657 | background-color: var(--hbg); 3658 | border-color: var(--hbg); 3659 | } 3660 | .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle { 3661 | color: var(--fg); 3662 | background-color: var(--hbg); 3663 | border-color: var(--hbg); 3664 | } 3665 | .btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle { 3666 | background-image: none; 3667 | } 3668 | .btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled]:active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active { 3669 | background-color: var(--hbg); 3670 | border-color: var(--hbg); 3671 | } 3672 | .btn-warning .badge { 3673 | color: #f0ad4e; 3674 | background-color: var(--hbg); 3675 | } 3676 | 3677 | .btn-danger { 3678 | color: var(--fg); 3679 | background-color: var(--bbg); 3680 | border-color: var(--bbg); 3681 | } 3682 | .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle { 3683 | color: var(--fg); 3684 | background-color: var(--hbbg); 3685 | border-color: var(--hbbg); 3686 | } 3687 | .btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle { 3688 | background-image: none; 3689 | } 3690 | .btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled]:active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active { 3691 | background-color: var(--red); 3692 | border-color: #ee3939; 3693 | } 3694 | .btn-danger .badge { 3695 | color: var(--red); 3696 | background-color: var(--hbg); 3697 | } 3698 | 3699 | .btn-link { 3700 | color: #D94F00; 3701 | font-weight: normal; 3702 | cursor: pointer; 3703 | border-radius: 0; 3704 | } 3705 | .btn-link, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link { 3706 | background-color: transparent; 3707 | -webkit-box-shadow: none; 3708 | box-shadow: none; 3709 | } 3710 | .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { 3711 | border-color: transparent; 3712 | } 3713 | .btn-link:hover, .btn-link:focus { 3714 | color: #8d3300; 3715 | text-decoration: underline; 3716 | background-color: transparent; 3717 | } 3718 | .btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus { 3719 | color: #777777; 3720 | text-decoration: none; 3721 | } 3722 | 3723 | .btn-lg, .btn-group-lg > .btn { 3724 | padding: 10px 16px; 3725 | font-size: 18px; 3726 | line-height: 1.33; 3727 | border-radius: 0px; 3728 | } 3729 | 3730 | .btn-sm, .btn-group-sm > .btn { 3731 | padding: 5px 10px; 3732 | font-size: 12px; 3733 | line-height: 1.5; 3734 | border-radius: 0px; 3735 | } 3736 | 3737 | .btn-xs, .btn-group-xs > .btn { 3738 | padding: 1px 4px; 3739 | font-size: 12px; 3740 | line-height: 1; 3741 | border-radius: 0px; 3742 | } 3743 | 3744 | .btn-block { 3745 | display: block; 3746 | width: 100%; 3747 | } 3748 | 3749 | .btn-block + .btn-block { 3750 | margin-top: 5px; 3751 | } 3752 | 3753 | input[type=submit].btn-block, 3754 | input[type=reset].btn-block, 3755 | input[type=button].btn-block { 3756 | width: 100%; 3757 | } 3758 | 3759 | .fade { 3760 | opacity: 0; 3761 | -webkit-transition: opacity 0.15s linear; 3762 | -o-transition: opacity 0.15s linear; 3763 | transition: opacity 0.15s linear; 3764 | } 3765 | .fade.in { 3766 | opacity: 1; 3767 | } 3768 | 3769 | .collapse { 3770 | display: none; 3771 | } 3772 | .collapse.in { 3773 | display: block; 3774 | } 3775 | 3776 | tr.collapse.in { 3777 | display: table-row; 3778 | } 3779 | 3780 | tbody.collapse.in { 3781 | display: table-row-group; 3782 | } 3783 | 3784 | .collapsing { 3785 | position: relative; 3786 | height: 0; 3787 | overflow: hidden; 3788 | -webkit-transition: height 0.35s ease; 3789 | -o-transition: height 0.35s ease; 3790 | transition: height 0.35s ease; 3791 | } 3792 | 3793 | .caret { 3794 | display: inline-block; 3795 | width: 0; 3796 | height: 0; 3797 | margin-left: 2px; 3798 | vertical-align: middle; 3799 | border-top: 4px solid; 3800 | border-right: 4px solid transparent; 3801 | border-left: 4px solid transparent; 3802 | } 3803 | 3804 | .dropdown { 3805 | position: relative; 3806 | } 3807 | 3808 | .dropdown-toggle:focus { 3809 | outline: 0; 3810 | } 3811 | 3812 | .dropdown-menu { 3813 | position: absolute; 3814 | top: 100%; 3815 | left: 0; 3816 | z-index: 1000; 3817 | display: none; 3818 | float: left; 3819 | min-width: 160px; 3820 | padding: 5px 0; 3821 | margin: 2px 0 0; 3822 | list-style: none; 3823 | font-size: 14px; 3824 | text-align: left; 3825 | background-color: var(--bg); 3826 | color: var(--fg); 3827 | background-clip: padding-box; 3828 | } 3829 | .dropdown-menu.pull-right { 3830 | right: 0; 3831 | left: auto; 3832 | } 3833 | .dropdown-menu .divider { 3834 | height: 1px; 3835 | margin: 9px 0; 3836 | overflow: hidden; 3837 | background-color: var(--dbg); 3838 | } 3839 | .dropdown-menu > li > a { 3840 | display: block; 3841 | padding: 3px 20px; 3842 | clear: both; 3843 | font-weight: normal; 3844 | line-height: 1.428571429; 3845 | color: var(--fg); 3846 | white-space: nowrap; 3847 | } 3848 | 3849 | .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { 3850 | text-decoration: none; 3851 | color: var(--fg); 3852 | background-color: var(--dbg); 3853 | } 3854 | 3855 | .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus { 3856 | color: var(--hfg); 3857 | text-decoration: none; 3858 | outline: 0; 3859 | background-color: var(--sbg); 3860 | } 3861 | 3862 | .dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { 3863 | color: #777777; 3864 | } 3865 | 3866 | .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { 3867 | text-decoration: none; 3868 | background-color: transparent; 3869 | background-image: none; 3870 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); 3871 | cursor: not-allowed; 3872 | } 3873 | 3874 | .open > .dropdown-menu { 3875 | display: block; 3876 | } 3877 | .open > a { 3878 | outline: 0; 3879 | } 3880 | 3881 | .dropdown-menu-right { 3882 | left: auto; 3883 | right: 0; 3884 | } 3885 | 3886 | .dropdown-menu-left { 3887 | left: 0; 3888 | right: auto; 3889 | } 3890 | 3891 | .dropdown-header { 3892 | display: block; 3893 | padding: 3px 20px; 3894 | font-size: 12px; 3895 | line-height: 1.428571429; 3896 | color: #777777; 3897 | white-space: nowrap; 3898 | } 3899 | 3900 | .dropdown-backdrop { 3901 | position: fixed; 3902 | left: 0; 3903 | right: 0; 3904 | bottom: 0; 3905 | top: 0; 3906 | z-index: 990; 3907 | } 3908 | 3909 | .pull-right > .dropdown-menu { 3910 | right: 0; 3911 | left: auto; 3912 | } 3913 | 3914 | .dropup .caret, 3915 | .navbar-fixed-bottom .dropdown .caret { 3916 | border-top: 0; 3917 | border-bottom: 4px solid; 3918 | content: ""; 3919 | } 3920 | .dropup .dropdown-menu, 3921 | .navbar-fixed-bottom .dropdown .dropdown-menu { 3922 | top: auto; 3923 | bottom: 100%; 3924 | margin-bottom: 1px; 3925 | } 3926 | 3927 | @media (min-width: 768px) { 3928 | .navbar-right .dropdown-menu { 3929 | right: 0; 3930 | left: auto; 3931 | } 3932 | .navbar-right .dropdown-menu-left { 3933 | left: 0; 3934 | right: auto; 3935 | } 3936 | } 3937 | .btn-group, 3938 | .btn-group-vertical { 3939 | position: relative; 3940 | display: inline-block; 3941 | vertical-align: middle; 3942 | } 3943 | 3944 | .btn-group > .btn, 3945 | .btn-group-vertical > .btn { 3946 | position: relative; 3947 | float: left; 3948 | } 3949 | 3950 | .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, 3951 | .btn-group-vertical > .btn:hover, 3952 | .btn-group-vertical > .btn:focus, 3953 | .btn-group-vertical > .btn:active, 3954 | .btn-group-vertical > .btn.active { 3955 | z-index: 2; 3956 | background: var(--bbg); 3957 | border-color: var(--bbg); 3958 | } 3959 | 3960 | 3961 | .btn-group > .btn:focus, 3962 | .btn-group-vertical > .btn:focus { 3963 | outline: 0; 3964 | } 3965 | 3966 | .btn-group .btn + .btn, 3967 | .btn-group .btn + .btn-group, 3968 | .btn-group .btn-group + .btn, 3969 | .btn-group .btn-group + .btn-group { 3970 | margin-left: -1px; 3971 | } 3972 | 3973 | .btn-toolbar { 3974 | margin-left: -5px; 3975 | } 3976 | .btn-toolbar:before, .btn-toolbar:after { 3977 | content: " "; 3978 | display: table; 3979 | } 3980 | .btn-toolbar:after { 3981 | clear: both; 3982 | } 3983 | .btn-toolbar .btn-group, 3984 | .btn-toolbar .input-group { 3985 | float: left; 3986 | } 3987 | .btn-toolbar > .btn, 3988 | .btn-toolbar > .btn-group, 3989 | .btn-toolbar > .input-group { 3990 | margin-left: 5px; 3991 | } 3992 | 3993 | .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { 3994 | border-radius: 0; 3995 | } 3996 | 3997 | .btn-group > .btn:first-child { 3998 | margin-left: 0; 3999 | } 4000 | .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { 4001 | border-bottom-right-radius: 0; 4002 | border-top-right-radius: 0; 4003 | } 4004 | 4005 | .btn-group > .btn:last-child:not(:first-child), 4006 | .btn-group > .dropdown-toggle:not(:first-child) { 4007 | border-bottom-left-radius: 0; 4008 | border-top-left-radius: 0; 4009 | } 4010 | 4011 | .btn-group > .btn-group { 4012 | float: left; 4013 | } 4014 | 4015 | .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { 4016 | border-radius: 0; 4017 | } 4018 | 4019 | .btn-group > .btn-group:first-child > .btn:last-child, 4020 | .btn-group > .btn-group:first-child > .dropdown-toggle { 4021 | border-bottom-right-radius: 0; 4022 | border-top-right-radius: 0; 4023 | } 4024 | 4025 | .btn-group > .btn-group:last-child > .btn:first-child { 4026 | border-bottom-left-radius: 0; 4027 | border-top-left-radius: 0; 4028 | } 4029 | 4030 | .btn-group .dropdown-toggle:active, 4031 | .btn-group.open .dropdown-toggle { 4032 | outline: 0; 4033 | } 4034 | 4035 | .btn-group > .btn + .dropdown-toggle { 4036 | padding-left: 8px; 4037 | padding-right: 8px; 4038 | } 4039 | 4040 | .btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle { 4041 | padding-left: 12px; 4042 | padding-right: 12px; 4043 | } 4044 | 4045 | .btn-group.open .dropdown-toggle { 4046 | -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); 4047 | box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); 4048 | } 4049 | .btn-group.open .dropdown-toggle.btn-link { 4050 | -webkit-box-shadow: none; 4051 | box-shadow: none; 4052 | } 4053 | 4054 | .btn .caret { 4055 | margin-left: 0; 4056 | } 4057 | 4058 | .btn-lg .caret, .btn-group-lg > .btn .caret { 4059 | border-width: 5px 5px 0; 4060 | border-bottom-width: 0; 4061 | } 4062 | 4063 | .dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret { 4064 | border-width: 0 5px 5px; 4065 | } 4066 | 4067 | .btn-group-vertical > .btn, 4068 | .btn-group-vertical > .btn-group, 4069 | .btn-group-vertical > .btn-group > .btn { 4070 | display: block; 4071 | float: none; 4072 | width: 100%; 4073 | max-width: 100%; 4074 | } 4075 | .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after { 4076 | content: " "; 4077 | display: table; 4078 | } 4079 | .btn-group-vertical > .btn-group:after { 4080 | clear: both; 4081 | } 4082 | .btn-group-vertical > .btn-group > .btn { 4083 | float: none; 4084 | } 4085 | .btn-group-vertical > .btn + .btn, 4086 | .btn-group-vertical > .btn + .btn-group, 4087 | .btn-group-vertical > .btn-group + .btn, 4088 | .btn-group-vertical > .btn-group + .btn-group { 4089 | margin-top: -1px; 4090 | margin-left: 0; 4091 | } 4092 | 4093 | .btn-group-vertical > .btn:not(:first-child):not(:last-child) { 4094 | border-radius: 0; 4095 | } 4096 | .btn-group-vertical > .btn:first-child:not(:last-child) { 4097 | border-top-right-radius: 3px; 4098 | border-bottom-right-radius: 0; 4099 | border-bottom-left-radius: 0; 4100 | } 4101 | .btn-group-vertical > .btn:last-child:not(:first-child) { 4102 | border-bottom-left-radius: 3px; 4103 | border-top-right-radius: 0; 4104 | border-top-left-radius: 0; 4105 | } 4106 | 4107 | .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { 4108 | border-radius: 0; 4109 | } 4110 | 4111 | .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, 4112 | .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { 4113 | border-bottom-right-radius: 0; 4114 | border-bottom-left-radius: 0; 4115 | } 4116 | 4117 | .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { 4118 | border-top-right-radius: 0; 4119 | border-top-left-radius: 0; 4120 | } 4121 | 4122 | .btn-group-justified { 4123 | display: table; 4124 | width: 100%; 4125 | table-layout: fixed; 4126 | border-collapse: separate; 4127 | } 4128 | .btn-group-justified > .btn, 4129 | .btn-group-justified > .btn-group { 4130 | float: none; 4131 | display: table-cell; 4132 | width: 1%; 4133 | } 4134 | .btn-group-justified > .btn-group .btn { 4135 | width: 100%; 4136 | } 4137 | .btn-group-justified > .btn-group .dropdown-menu { 4138 | left: auto; 4139 | } 4140 | 4141 | [data-toggle=buttons] > .btn > input[type=radio], 4142 | [data-toggle=buttons] > .btn > input[type=checkbox] { 4143 | position: absolute; 4144 | z-index: -1; 4145 | opacity: 0; 4146 | filter: alpha(opacity=0); 4147 | } 4148 | 4149 | .input-group { 4150 | position: relative; 4151 | display: table; 4152 | border-collapse: separate; 4153 | } 4154 | .input-group[class*=col-] { 4155 | float: none; 4156 | padding-left: 0; 4157 | padding-right: 0; 4158 | } 4159 | .input-group .form-control { 4160 | position: relative; 4161 | z-index: 2; 4162 | float: left; 4163 | width: 100%; 4164 | margin-bottom: 0; 4165 | } 4166 | 4167 | .input-group-addon, 4168 | .input-group-btn, 4169 | .input-group .form-control { 4170 | display: table-cell; 4171 | } 4172 | .input-group-addon:not(:first-child):not(:last-child), 4173 | .input-group-btn:not(:first-child):not(:last-child), 4174 | .input-group .form-control:not(:first-child):not(:last-child) { 4175 | border-radius: 0; 4176 | } 4177 | 4178 | .input-group-addon, 4179 | .input-group-btn { 4180 | width: 1%; 4181 | white-space: nowrap; 4182 | vertical-align: middle; 4183 | } 4184 | 4185 | .input-group-addon { 4186 | padding: 6px 12px; 4187 | font-size: 14px; 4188 | font-weight: normal; 4189 | line-height: 1; 4190 | color: var(--fg); 4191 | text-align: center; 4192 | background-color: var(--bg); 4193 | border: 1px solid #ccc; 4194 | border-radius: 0px; 4195 | } 4196 | .input-group-addon.input-sm, .form-horizontal .form-group-sm .input-group-addon.form-control, 4197 | .input-group-sm > .input-group-addon, 4198 | .input-group-sm > .input-group-btn > .input-group-addon.btn { 4199 | padding: 5px 10px; 4200 | font-size: 12px; 4201 | border-radius: 0px; 4202 | } 4203 | .input-group-addon.input-lg, .form-horizontal .form-group-lg .input-group-addon.form-control, 4204 | .input-group-lg > .input-group-addon, 4205 | .input-group-lg > .input-group-btn > .input-group-addon.btn { 4206 | padding: 10px 16px; 4207 | font-size: 18px; 4208 | border-radius: 0px; 4209 | } 4210 | .input-group-addon input[type=radio], 4211 | .input-group-addon input[type=checkbox] { 4212 | margin-top: 0; 4213 | } 4214 | 4215 | .input-group .form-control:first-child, 4216 | .input-group-addon:first-child, 4217 | .input-group-btn:first-child > .btn, 4218 | .input-group-btn:first-child > .btn-group > .btn, 4219 | .input-group-btn:first-child > .dropdown-toggle, 4220 | .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), 4221 | .input-group-btn:last-child > .btn-group:not(:last-child) > .btn { 4222 | border-bottom-right-radius: 0; 4223 | border-top-right-radius: 0; 4224 | } 4225 | 4226 | .input-group-addon:first-child { 4227 | border-right: 0; 4228 | } 4229 | 4230 | .input-group .form-control:last-child, 4231 | .input-group-addon:last-child, 4232 | .input-group-btn:last-child > .btn, 4233 | .input-group-btn:last-child > .btn-group > .btn, 4234 | .input-group-btn:last-child > .dropdown-toggle, 4235 | .input-group-btn:first-child > .btn:not(:first-child), 4236 | .input-group-btn:first-child > .btn-group:not(:first-child) > .btn { 4237 | border-bottom-left-radius: 0; 4238 | border-top-left-radius: 0; 4239 | } 4240 | 4241 | .input-group-addon:last-child { 4242 | border-left: 0; 4243 | } 4244 | 4245 | #menu_search_box { 4246 | background-color: var(--dbg); 4247 | border-color: var(--dbg); 4248 | } 4249 | .input-group-addon { 4250 | background-color: var(--dbg); 4251 | border-color: var(--dbg); 4252 | } 4253 | 4254 | .input-group-btn { 4255 | position: relative; 4256 | font-size: 0; 4257 | white-space: nowrap; 4258 | } 4259 | .input-group-btn > .btn { 4260 | position: relative; 4261 | } 4262 | .input-group-btn > .btn + .btn { 4263 | margin-left: -1px; 4264 | } 4265 | .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active { 4266 | z-index: 2; 4267 | } 4268 | .input-group-btn:first-child > .btn, 4269 | .input-group-btn:first-child > .btn-group { 4270 | margin-right: -1px; 4271 | } 4272 | .input-group-btn:last-child > .btn, 4273 | .input-group-btn:last-child > .btn-group { 4274 | margin-left: -1px; 4275 | } 4276 | 4277 | .nav { 4278 | margin-bottom: 0; 4279 | padding-left: 0; 4280 | list-style: none; 4281 | } 4282 | .nav:before, .nav:after { 4283 | content: " "; 4284 | display: table; 4285 | } 4286 | .nav:after { 4287 | clear: both; 4288 | } 4289 | .nav > li { 4290 | position: relative; 4291 | display: block; 4292 | } 4293 | .nav > li > a { 4294 | position: relative; 4295 | display: block; 4296 | padding: 10px 15px; 4297 | } 4298 | .nav > li > a:hover, .nav > li > a:focus { 4299 | text-decoration: none; 4300 | background-color: var(--hbg); 4301 | } 4302 | .nav > li.disabled > a { 4303 | color: #777777; 4304 | } 4305 | .nav > li.disabled > a:hover, .nav > li.disabled > a:focus { 4306 | color: #777777; 4307 | text-decoration: none; 4308 | background-color: transparent; 4309 | cursor: not-allowed; 4310 | } 4311 | .nav .open > a, .nav .open > a:hover, .nav .open > a:focus { 4312 | background-color: var(--dbg); 4313 | border-color:var(--dbg); 4314 | } 4315 | .nav .nav-divider { 4316 | height: 1px; 4317 | margin: 9px 0; 4318 | overflow: hidden; 4319 | background-color: var(--hbg); 4320 | } 4321 | .nav > li > a > img { 4322 | max-width: none; 4323 | } 4324 | 4325 | .nav-tabs { 4326 | border-bottom: 1px solid nav(--hbg); 4327 | } 4328 | .nav-tabs > li { 4329 | float: left; 4330 | margin-bottom: -1px; 4331 | } 4332 | .nav-tabs > li > a { 4333 | margin-right: 2px; 4334 | line-height: 1.428571429; 4335 | border: 1px solid transparent; 4336 | border-radius: 0; 4337 | } 4338 | .nav-tabs > li > a:hover { 4339 | border-color: #eeeeee #eeeeee #E5E5E5; 4340 | } 4341 | .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { 4342 | color: var(--fg); 4343 | background-color: var(--dbg); 4344 | border: 1px solid var(--dbg); 4345 | border-bottom-color: transparent; 4346 | cursor: default; 4347 | } 4348 | .nav-pills > li { 4349 | float: left; 4350 | } 4351 | .nav-pills > li > a { 4352 | border-radius: 0; 4353 | } 4354 | .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { 4355 | color: var(--fg); 4356 | background-color: #D94F00; 4357 | } 4358 | 4359 | .nav-stacked > li { 4360 | float: none; 4361 | } 4362 | .nav-stacked > li + li { 4363 | margin-top: 2px; 4364 | margin-left: 0; 4365 | } 4366 | 4367 | .nav-justified, .nav-tabs.nav-justified { 4368 | width: 100%; 4369 | } 4370 | .nav-justified > li, .nav-tabs.nav-justified > li { 4371 | float: none; 4372 | } 4373 | .nav-justified > li > a, .nav-tabs.nav-justified > li > a { 4374 | text-align: left; 4375 | margin-bottom: 5px; 4376 | } 4377 | .nav-justified > .dropdown .dropdown-menu { 4378 | top: auto; 4379 | left: auto; 4380 | } 4381 | @media (min-width: 768px) { 4382 | .nav-justified > li, .nav-tabs.nav-justified > li { 4383 | display: table-cell; 4384 | width: 1%; 4385 | } 4386 | .nav-justified > li > a, .nav-tabs.nav-justified > li > a { 4387 | margin-bottom: 0; 4388 | } 4389 | } 4390 | 4391 | .nav-tabs-justified, .nav-tabs.nav-justified { 4392 | border-bottom: 0; 4393 | } 4394 | .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { 4395 | margin-right: 0; 4396 | border-radius: 0px; 4397 | } 4398 | .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, 4399 | .nav-tabs-justified > .active > a:hover, 4400 | .nav-tabs-justified > .active > a:focus { 4401 | border: 1px solid #ddd; 4402 | } 4403 | @media (min-width: 768px) { 4404 | .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { 4405 | border-bottom: 1px solid #ddd; 4406 | border-radius: 0; 4407 | } 4408 | .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, 4409 | .nav-tabs-justified > .active > a:hover, 4410 | .nav-tabs-justified > .active > a:focus { 4411 | border-bottom-color: #fff; 4412 | } 4413 | } 4414 | 4415 | .tab-content > .tab-pane { 4416 | display: none; 4417 | } 4418 | .tab-content > .active { 4419 | display: block; 4420 | } 4421 | 4422 | .nav-tabs .dropdown-menu { 4423 | margin-top: -1px; 4424 | border-top-right-radius: 0; 4425 | border-top-left-radius: 0; 4426 | } 4427 | 4428 | .navbar { 4429 | position: relative; 4430 | min-height: 50px; 4431 | margin-bottom: 0; 4432 | border: 1px solid transparent; 4433 | } 4434 | .navbar:before, .navbar:after { 4435 | content: " "; 4436 | display: table; 4437 | } 4438 | .navbar:after { 4439 | clear: both; 4440 | } 4441 | @media (min-width: 768px) { 4442 | .navbar { 4443 | border-radius: 0; 4444 | } 4445 | } 4446 | 4447 | .navbar-header:before, .navbar-header:after { 4448 | content: " "; 4449 | display: table; 4450 | } 4451 | .navbar-header:after { 4452 | clear: both; 4453 | } 4454 | @media (min-width: 768px) { 4455 | .navbar-header { 4456 | float: left; 4457 | } 4458 | } 4459 | 4460 | .navbar-collapse { 4461 | overflow-x: visible; 4462 | padding-right: 20px; 4463 | padding-left: 20px; 4464 | border-top: 1px solid transparent; 4465 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); 4466 | -webkit-overflow-scrolling: touch; 4467 | } 4468 | .navbar-collapse:before, .navbar-collapse:after { 4469 | content: " "; 4470 | display: table; 4471 | } 4472 | .navbar-collapse:after { 4473 | clear: both; 4474 | } 4475 | .navbar-collapse.in { 4476 | overflow-y: auto; 4477 | } 4478 | @media (min-width: 768px) { 4479 | .navbar-collapse { 4480 | width: auto; 4481 | border-top: 0; 4482 | box-shadow: none; 4483 | } 4484 | .navbar-collapse.collapse { 4485 | display: block !important; 4486 | height: auto !important; 4487 | padding-bottom: 0; 4488 | overflow: visible !important; 4489 | } 4490 | .navbar-collapse.in { 4491 | overflow-y: visible; 4492 | } 4493 | .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { 4494 | padding-left: 0; 4495 | padding-right: 0; 4496 | } 4497 | } 4498 | 4499 | .navbar-fixed-top .navbar-collapse, 4500 | .navbar-fixed-bottom .navbar-collapse { 4501 | max-height: 340px; 4502 | } 4503 | @media (max-width: 480px) and (orientation: landscape) { 4504 | .navbar-fixed-top .navbar-collapse, 4505 | .navbar-fixed-bottom .navbar-collapse { 4506 | max-height: 200px; 4507 | } 4508 | } 4509 | 4510 | .container > .navbar-header, 4511 | .container > .navbar-collapse, 4512 | .container-fluid > .navbar-header, 4513 | .container-fluid > .navbar-collapse { 4514 | margin-right: -20px; 4515 | margin-left: -20px; 4516 | } 4517 | @media (min-width: 768px) { 4518 | .container > .navbar-header, 4519 | .container > .navbar-collapse, 4520 | .container-fluid > .navbar-header, 4521 | .container-fluid > .navbar-collapse { 4522 | margin-right: 0; 4523 | margin-left: 0; 4524 | } 4525 | } 4526 | 4527 | .navbar-static-top { 4528 | z-index: 1000; 4529 | border-width: 0 0 1px; 4530 | } 4531 | @media (min-width: 768px) { 4532 | .navbar-static-top { 4533 | border-radius: 0; 4534 | } 4535 | } 4536 | 4537 | .navbar-fixed-top, 4538 | .navbar-fixed-bottom { 4539 | position: fixed; 4540 | right: 0; 4541 | left: 0; 4542 | z-index: 1030; 4543 | -webkit-transform: translate3d(0, 0, 0); 4544 | transform: translate3d(0, 0, 0); 4545 | } 4546 | @media (min-width: 768px) { 4547 | .navbar-fixed-top, 4548 | .navbar-fixed-bottom { 4549 | border-radius: 0; 4550 | } 4551 | } 4552 | 4553 | .navbar-fixed-top { 4554 | top: 0; 4555 | border-width: 0 0 1px; 4556 | } 4557 | 4558 | .navbar-fixed-bottom { 4559 | bottom: 0; 4560 | margin-bottom: 0; 4561 | border-width: 1px 0 0; 4562 | } 4563 | 4564 | .navbar-brand { 4565 | float: left; 4566 | padding: 15px 20px; 4567 | font-size: 18px; 4568 | height: 50px; 4569 | } 4570 | .navbar-brand:hover, .navbar-brand:focus { 4571 | text-decoration: none; 4572 | } 4573 | @media (min-width: 768px) { 4574 | .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand { 4575 | margin-left: -20px; 4576 | } 4577 | } 4578 | 4579 | .navbar-toggle { 4580 | position: relative; 4581 | float: left; 4582 | margin-right: 20px; 4583 | padding: 9px 10px; 4584 | margin-top: 8px; 4585 | margin-bottom: 8px; 4586 | background-color: transparent; 4587 | background-image: none; 4588 | border: 1px solid transparent; 4589 | border-radius: 0x; 4590 | } 4591 | .navbar-toggle:focus { 4592 | outline: 0; 4593 | } 4594 | .navbar-toggle .icon-bar { 4595 | display: block; 4596 | width: 22px; 4597 | height: 2px; 4598 | border-radius: 0; 4599 | } 4600 | .navbar-toggle .icon-bar + .icon-bar { 4601 | margin-top: 4px; 4602 | } 4603 | @media (min-width: 768px) { 4604 | .navbar-toggle { 4605 | display: none; 4606 | } 4607 | } 4608 | 4609 | .navbar-nav { 4610 | margin: 7.5px -20px; 4611 | } 4612 | .navbar-nav > li > a { 4613 | padding-top: 10px; 4614 | padding-bottom: 10px; 4615 | line-height: 20px; 4616 | } 4617 | @media (max-width: 767px) { 4618 | .navbar-nav .open .dropdown-menu { 4619 | position: static; 4620 | float: none; 4621 | width: auto; 4622 | margin-top: 0; 4623 | background-color: transparent; 4624 | border: 0; 4625 | box-shadow: none; 4626 | } 4627 | .navbar-nav .open .dropdown-menu > li > a, 4628 | .navbar-nav .open .dropdown-menu .dropdown-header { 4629 | padding: 5px 15px 5px 25px; 4630 | } 4631 | .navbar-nav .open .dropdown-menu > li > a { 4632 | line-height: 20px; 4633 | } 4634 | .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus { 4635 | background-image: none; 4636 | } 4637 | } 4638 | @media (min-width: 768px) { 4639 | .navbar-nav { 4640 | float: left; 4641 | margin: 0; 4642 | } 4643 | .navbar-nav > li { 4644 | float: left; 4645 | } 4646 | .navbar-nav > li > a { 4647 | padding-top: 15px; 4648 | padding-bottom: 15px; 4649 | } 4650 | .navbar-nav.navbar-right:last-child { 4651 | margin-right: -20px; 4652 | } 4653 | } 4654 | 4655 | @media (min-width: 768px) { 4656 | .navbar-left { 4657 | float: left !important; 4658 | } 4659 | 4660 | .navbar-right { 4661 | float: right !important; 4662 | } 4663 | } 4664 | .navbar-form { 4665 | margin-left: -20px; 4666 | margin-right: -20px; 4667 | padding: 10px 0px; 4668 | border-top: 1px solid transparent; 4669 | border-bottom: 1px solid transparent; 4670 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); 4671 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); 4672 | margin-top: 8px; 4673 | margin-bottom: 8px; 4674 | } 4675 | @media (max-width: 767px) { 4676 | .navbar-form .form-group { 4677 | margin-bottom: 5px; 4678 | } 4679 | } 4680 | @media (min-width: 768px) { 4681 | .navbar-form { 4682 | width: auto; 4683 | border: 0; 4684 | margin-left: 0; 4685 | margin-right: 0; 4686 | padding-top: 0; 4687 | padding-bottom: 0; 4688 | -webkit-box-shadow: none; 4689 | box-shadow: none; 4690 | } 4691 | .navbar-form.navbar-right:last-child { 4692 | margin-right: -20px; 4693 | } 4694 | } 4695 | 4696 | .navbar-nav > li > .dropdown-menu { 4697 | margin-top: 0; 4698 | border-top-right-radius: 0; 4699 | border-top-left-radius: 0; 4700 | } 4701 | 4702 | .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { 4703 | border-bottom-right-radius: 0; 4704 | border-bottom-left-radius: 0; 4705 | } 4706 | 4707 | .navbar-btn { 4708 | margin-top: 8px; 4709 | margin-bottom: 8px; 4710 | } 4711 | .navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn { 4712 | margin-top: 10px; 4713 | margin-bottom: 10px; 4714 | } 4715 | .navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn { 4716 | margin-top: 14px; 4717 | margin-bottom: 14px; 4718 | } 4719 | 4720 | .navbar-text { 4721 | margin-top: 19px; 4722 | margin-bottom: 15px; 4723 | } 4724 | @media (min-width: 768px) { 4725 | .navbar-text { 4726 | float: left; 4727 | margin-left: 20px; 4728 | margin-right: 20px; 4729 | } 4730 | .navbar-text.navbar-right:last-child { 4731 | margin-right: 0; 4732 | } 4733 | } 4734 | 4735 | .navbar-default { 4736 | background-color: var(--bg); 4737 | border-color: var(--dbg); 4738 | } 4739 | .navbar-default .navbar-brand { 4740 | color: var(--fg); 4741 | } 4742 | .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { 4743 | color: var(--fg); 4744 | background-color: transparent; 4745 | } 4746 | .navbar-default .navbar-text { 4747 | color: var(--fg); 4748 | } 4749 | .navbar-default .navbar-nav > li > a { 4750 | color: var(--fg); 4751 | } 4752 | .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { 4753 | color: #D94F00; 4754 | background-color: transparent; 4755 | } 4756 | .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { 4757 | color: #555; 4758 | background-color: #2b2b2b; 4759 | } 4760 | .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus { 4761 | color: #ccc; 4762 | background-color: transparent; 4763 | } 4764 | .navbar-default .navbar-toggle { 4765 | border-color: #FFF; 4766 | } 4767 | .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { 4768 | background-color: var(--hbg); 4769 | } 4770 | .navbar-default .navbar-toggle .icon-bar { 4771 | background-color: var(--hbg); 4772 | } 4773 | .navbar-default .navbar-collapse, 4774 | .navbar-default .navbar-form { 4775 | border-color: #2b2b2b; 4776 | } 4777 | .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { 4778 | background-color: #2b2b2b; 4779 | color: #555; 4780 | } 4781 | @media (max-width: 767px) { 4782 | .navbar-default .navbar-nav .open .dropdown-menu > li > a { 4783 | color: #F7F7F7; 4784 | } 4785 | .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { 4786 | color: #D94F00; 4787 | background-color: transparent; 4788 | } 4789 | .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { 4790 | color: #555; 4791 | background-color: #2b2b2b; 4792 | } 4793 | .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { 4794 | color: #ccc; 4795 | background-color: transparent; 4796 | } 4797 | } 4798 | .navbar-default .navbar-link { 4799 | color: #F7F7F7; 4800 | } 4801 | .navbar-default .navbar-link:hover { 4802 | color: #D94F00; 4803 | } 4804 | .navbar-default .btn-link { 4805 | color: #F7F7F7; 4806 | } 4807 | .navbar-default .btn-link:hover, .navbar-default .btn-link:focus { 4808 | color: #D94F00; 4809 | } 4810 | .navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus { 4811 | color: #ccc; 4812 | } 4813 | 4814 | .navbar-inverse { 4815 | background-color: #222; 4816 | border-color: #090909; 4817 | } 4818 | .navbar-inverse .navbar-brand { 4819 | color: #777777; 4820 | } 4821 | .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { 4822 | color: var(--fg); 4823 | background-color: transparent; 4824 | } 4825 | .navbar-inverse .navbar-text { 4826 | color: #777777; 4827 | } 4828 | .navbar-inverse .navbar-nav > li > a { 4829 | color: #777777; 4830 | } 4831 | .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { 4832 | color: var(--fg); 4833 | background-color: transparent; 4834 | } 4835 | .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { 4836 | color: var(--fg); 4837 | background-color: #090909; 4838 | } 4839 | .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus { 4840 | color: #444; 4841 | background-color: transparent; 4842 | } 4843 | .navbar-inverse .navbar-toggle { 4844 | border-color: #333; 4845 | } 4846 | .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { 4847 | background-color: #333; 4848 | } 4849 | .navbar-inverse .navbar-toggle .icon-bar { 4850 | background-color: var(--hbg); 4851 | } 4852 | .navbar-inverse .navbar-collapse, 4853 | .navbar-inverse .navbar-form { 4854 | border-color: #101010; 4855 | } 4856 | .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { 4857 | background-color: #090909; 4858 | color: var(--fg); 4859 | } 4860 | @media (max-width: 767px) { 4861 | .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { 4862 | border-color: #090909; 4863 | } 4864 | .navbar-inverse .navbar-nav .open .dropdown-menu .divider { 4865 | background-color: #090909; 4866 | } 4867 | .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { 4868 | color: #777777; 4869 | } 4870 | .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { 4871 | color: var(--fg); 4872 | background-color: transparent; 4873 | } 4874 | .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { 4875 | color: var(--fg); 4876 | background-color: #090909; 4877 | } 4878 | .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { 4879 | color: #444; 4880 | background-color: transparent; 4881 | } 4882 | } 4883 | .navbar-inverse .navbar-link { 4884 | color: #777777; 4885 | } 4886 | .navbar-inverse .navbar-link:hover { 4887 | color: var(--fg); 4888 | } 4889 | .navbar-inverse .btn-link { 4890 | color: #777777; 4891 | } 4892 | .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { 4893 | color: var(--fg); 4894 | } 4895 | .navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus { 4896 | color: #444; 4897 | } 4898 | 4899 | .breadcrumb { 4900 | padding: 8px 15px; 4901 | margin-bottom: 20px; 4902 | list-style: none; 4903 | background-color: var(--hbg); 4904 | border-radius: 0; 4905 | } 4906 | .breadcrumb > li { 4907 | display: inline-block; 4908 | } 4909 | .breadcrumb > li + li:before { 4910 | content: "/ "; 4911 | padding: 0 5px; 4912 | color: #ccc; 4913 | } 4914 | .breadcrumb > .active { 4915 | color: #777777; 4916 | } 4917 | 4918 | .pagination { 4919 | display: inline-block; 4920 | padding-left: 0; 4921 | margin: 20px 0; 4922 | border-radius: 0; 4923 | } 4924 | .pagination > li { 4925 | display: inline; 4926 | } 4927 | .pagination > li > a, 4928 | .pagination > li > span { 4929 | position: relative; 4930 | float: left; 4931 | padding: 6px 12px; 4932 | line-height: 1.428571429; 4933 | text-decoration: none; 4934 | color: var(--fg); 4935 | background-color: var(--bg); 4936 | border: 1px solid var(--bg); 4937 | margin-left: -1px; 4938 | } 4939 | .pagination > li:first-child > a, 4940 | .pagination > li:first-child > span { 4941 | margin-left: 0; 4942 | border-bottom-left-radius: 0; 4943 | border-top-left-radius: 0; 4944 | } 4945 | .pagination > li:last-child > a, 4946 | .pagination > li:last-child > span { 4947 | border-bottom-right-radius: 0; 4948 | border-top-right-radius: 0; 4949 | } 4950 | .pagination > li > a:hover, .pagination > li > a:focus, 4951 | .pagination > li > span:hover, 4952 | .pagination > li > span:focus { 4953 | color: var(--fg); 4954 | background-color: var(--dbg); 4955 | border-color: -dbg; 4956 | } 4957 | .pagination > .active > a, .pagination > .active > a:focus, 4958 | .pagination > .active > span, 4959 | .pagination > .active > span:focus { 4960 | z-index: 2; 4961 | color: var(--fg); 4962 | background-color: var(--bbg); 4963 | border-color: var(--bbg); 4964 | cursor: default; 4965 | } 4966 | 4967 | .pagination > .active > a:hover, 4968 | .pagination > .active > span:hover { 4969 | z-index: 2; 4970 | color: var(--fg); 4971 | background-color: var(--hbbg); 4972 | border-color: var(--hbbg); 4973 | cursor: default; 4974 | } 4975 | 4976 | .pagination > .disabled > span, 4977 | .pagination > .disabled > span:hover, 4978 | .pagination > .disabled > span:focus, 4979 | .pagination > .disabled > a, 4980 | .pagination > .disabled > a:hover, 4981 | .pagination > .disabled > a:focus { 4982 | color: var(--dbg); 4983 | background-color: var(--hbg); 4984 | border-color: var(--hbg); 4985 | cursor: not-allowed; 4986 | } 4987 | 4988 | .pagination-lg > li > a, 4989 | .pagination-lg > li > span { 4990 | padding: 10px 16px; 4991 | font-size: 18px; 4992 | } 4993 | .pagination-lg > li:first-child > a, 4994 | .pagination-lg > li:first-child > span { 4995 | border-bottom-left-radius: 6px; 4996 | border-top-left-radius: 6px; 4997 | } 4998 | .pagination-lg > li:last-child > a, 4999 | .pagination-lg > li:last-child > span { 5000 | border-bottom-right-radius: 6px; 5001 | border-top-right-radius: 6px; 5002 | } 5003 | 5004 | .pagination-sm > li > a, 5005 | .pagination-sm > li > span { 5006 | padding: 5px 10px; 5007 | font-size: 12px; 5008 | } 5009 | .pagination-sm > li:first-child > a, 5010 | .pagination-sm > li:first-child > span { 5011 | border-bottom-left-radius: 3px; 5012 | border-top-left-radius: 3px; 5013 | } 5014 | .pagination-sm > li:last-child > a, 5015 | .pagination-sm > li:last-child > span { 5016 | border-bottom-right-radius: 3px; 5017 | border-top-right-radius: 3px; 5018 | } 5019 | 5020 | .pager { 5021 | padding-left: 0; 5022 | margin: 20px 0; 5023 | list-style: none; 5024 | text-align: center; 5025 | } 5026 | .pager:before, .pager:after { 5027 | content: " "; 5028 | display: table; 5029 | } 5030 | .pager:after { 5031 | clear: both; 5032 | } 5033 | .pager li { 5034 | display: inline; 5035 | } 5036 | .pager li > a, 5037 | .pager li > span { 5038 | display: inline-block; 5039 | padding: 5px 14px; 5040 | background-color: var(--hbg); 5041 | border: 1px solid var(--hbg); 5042 | border-radius: 0; 5043 | } 5044 | .pager li > a:hover, 5045 | .pager li > a:focus { 5046 | text-decoration: none; 5047 | background-color: var(--hbg); 5048 | } 5049 | .pager .next > a, 5050 | .pager .next > span { 5051 | float: right; 5052 | } 5053 | .pager .previous > a, 5054 | .pager .previous > span { 5055 | float: left; 5056 | } 5057 | .pager .disabled > a, 5058 | .pager .disabled > a:hover, 5059 | .pager .disabled > a:focus, 5060 | .pager .disabled > span { 5061 | color: #777777; 5062 | background-color: var(--hbg); 5063 | cursor: not-allowed; 5064 | } 5065 | 5066 | .label { 5067 | display: inline; 5068 | padding: 0.2em 0.6em 0.3em; 5069 | font-size: 75%; 5070 | font-weight: bold; 5071 | line-height: 1; 5072 | color: var(--bg); 5073 | text-align: center; 5074 | white-space: nowrap; 5075 | vertical-align: baseline; 5076 | border-radius: 0; 5077 | } 5078 | .label:empty { 5079 | display: none; 5080 | } 5081 | .btn .label { 5082 | position: relative; 5083 | top: -1px; 5084 | } 5085 | 5086 | a.label:hover, a.label:focus { 5087 | color: var(--fg); 5088 | text-decoration: none; 5089 | cursor: pointer; 5090 | } 5091 | 5092 | .label-default { 5093 | background-color: #777777; 5094 | } 5095 | .label-default[href]:hover, .label-default[href]:focus { 5096 | background-color: #5e5e5e; 5097 | } 5098 | 5099 | .label-primary { 5100 | background-color: #D94F00; 5101 | } 5102 | .label-primary[href]:hover, .label-primary[href]:focus { 5103 | background-color: #a63c00; 5104 | } 5105 | 5106 | .label-success { 5107 | background-color: var(--grn); 5108 | } 5109 | .label-success[href]:hover, .label-success[href]:focus { 5110 | background-color: var(--hbg); 5111 | } 5112 | 5113 | .label-info { 5114 | background-color: var(--hbg); 5115 | } 5116 | .label-info[href]:hover, .label-info[href]:focus { 5117 | background-color: var(--hbg); 5118 | } 5119 | 5120 | .label-warning { 5121 | background-color: var(--hbg); 5122 | } 5123 | .label-warning[href]:hover, .label-warning[href]:focus { 5124 | background-color: var(--hbg); 5125 | } 5126 | 5127 | .label-danger { 5128 | background-color: var(--red); 5129 | } 5130 | .label-danger[href]:hover, .label-danger[href]:focus { 5131 | background-color: #ec2121; 5132 | } 5133 | 5134 | .badge { 5135 | display: inline-block; 5136 | min-width: 10px; 5137 | padding: 3px 7px; 5138 | font-size: 12px; 5139 | font-weight: bold; 5140 | color: var(--fg); 5141 | line-height: 1; 5142 | vertical-align: baseline; 5143 | white-space: nowrap; 5144 | text-align: center; 5145 | background-color: #777777; 5146 | border-radius: 0; 5147 | } 5148 | .badge:empty { 5149 | display: none; 5150 | } 5151 | .btn .badge { 5152 | position: relative; 5153 | top: -1px; 5154 | } 5155 | .btn-xs .badge, .btn-group-xs > .btn .badge { 5156 | top: 0; 5157 | padding: 1px 5px; 5158 | } 5159 | a.list-group-item.active > .badge, .nav-pills > .active > a > .badge { 5160 | color: var(--hfg); 5161 | background-color: var(--sbg); 5162 | } 5163 | .nav-pills > li > a > .badge { 5164 | margin-left: 5px; 5165 | } 5166 | 5167 | a.badge:hover, a.badge:focus { 5168 | color: var(--fg); 5169 | text-decoration: none; 5170 | cursor: pointer; 5171 | } 5172 | 5173 | .jumbotron { 5174 | padding: 30px; 5175 | margin-bottom: 30px; 5176 | color: inherit; 5177 | background-color: var(--hbg); 5178 | } 5179 | .jumbotron h1, 5180 | .jumbotron .h1 { 5181 | color: inherit; 5182 | } 5183 | .jumbotron p { 5184 | margin-bottom: 15px; 5185 | font-size: 21px; 5186 | font-weight: 200; 5187 | } 5188 | .jumbotron > hr { 5189 | border-top-color: #d5d5d5; 5190 | } 5191 | .container .jumbotron { 5192 | border-radius: 0; 5193 | } 5194 | .jumbotron .container { 5195 | max-width: 100%; 5196 | } 5197 | @media screen and (min-width: 768px) { 5198 | .jumbotron { 5199 | padding-top: 48px; 5200 | padding-bottom: 48px; 5201 | } 5202 | .container .jumbotron { 5203 | padding-left: 60px; 5204 | padding-right: 60px; 5205 | } 5206 | .jumbotron h1, 5207 | .jumbotron .h1 { 5208 | font-size: 63px; 5209 | } 5210 | } 5211 | 5212 | .thumbnail { 5213 | display: block; 5214 | padding: 4px; 5215 | margin-bottom: 20px; 5216 | line-height: 1.428571429; 5217 | background-color: var(--hbg); 5218 | border: 1px solid var(--hbg); 5219 | border-radius: 0; 5220 | -webkit-transition: all 0.2s ease-in-out; 5221 | -o-transition: all 0.2s ease-in-out; 5222 | transition: all 0.2s ease-in-out; 5223 | } 5224 | .thumbnail > img, 5225 | .thumbnail a > img { 5226 | display: block; 5227 | width: 100% \9 ; 5228 | max-width: 100%; 5229 | height: auto; 5230 | margin-left: auto; 5231 | margin-right: auto; 5232 | } 5233 | .thumbnail .caption { 5234 | padding: 9px; 5235 | color: #3C3C3B; 5236 | } 5237 | 5238 | a.thumbnail:hover, 5239 | a.thumbnail:focus, 5240 | a.thumbnail.active { 5241 | border-color: #D94F00; 5242 | } 5243 | 5244 | .alert { 5245 | padding: 15px; 5246 | margin-bottom: 20px; 5247 | border: 1px solid transparent; 5248 | border-radius: 0; 5249 | } 5250 | .alert h4 { 5251 | margin-top: 0; 5252 | color: inherit; 5253 | } 5254 | .alert .alert-link { 5255 | font-weight: bold; 5256 | } 5257 | .alert > p, 5258 | .alert > ul { 5259 | margin-bottom: 0; 5260 | } 5261 | .alert > p + p { 5262 | margin-top: 5px; 5263 | } 5264 | 5265 | .alert-dismissable, 5266 | .alert-dismissible { 5267 | padding-right: 35px; 5268 | } 5269 | .alert-dismissable .close, 5270 | .alert-dismissible .close { 5271 | position: relative; 5272 | top: -2px; 5273 | right: -21px; 5274 | color: inherit; 5275 | } 5276 | 5277 | .alert-success { 5278 | background-color: var(--grn); 5279 | border-color: var(--grn); 5280 | color: #66aa37; 5281 | } 5282 | .alert-success hr { 5283 | border-top-color: var(--bg); 5284 | } 5285 | .alert-success .alert-link { 5286 | color: var(--fb); 5287 | } 5288 | 5289 | .alert-info { 5290 | background-color: var(--bg); 5291 | border-color: var(--bg); 5292 | color: var(--fg); 5293 | } 5294 | .alert-info hr { 5295 | border-top-color: #a6e1ec; 5296 | } 5297 | .alert-info .alert-link { 5298 | color: #1d4356; 5299 | } 5300 | 5301 | .alert-warning { 5302 | background-color: var(--bg); 5303 | border-color: var(--dbg); 5304 | color: var(--fg); 5305 | } 5306 | .alert-warning hr { 5307 | border-top-color: #f7e1b5; 5308 | } 5309 | .alert-warning .alert-link { 5310 | color: #df8a13; 5311 | } 5312 | 5313 | .alert-danger { 5314 | background-color: var(--red); 5315 | border-color: var(--red); 5316 | color: #c91111; 5317 | } 5318 | .alert-danger hr { 5319 | border-top-color: #ee3939; 5320 | } 5321 | .alert-danger .alert-link { 5322 | color: #e01313; 5323 | } 5324 | 5325 | @-webkit-keyframes progress-bar-stripes { 5326 | from { 5327 | background-position: 40px 0; 5328 | } 5329 | to { 5330 | background-position: 0 0; 5331 | } 5332 | } 5333 | @keyframes progress-bar-stripes { 5334 | from { 5335 | background-position: 40px 0; 5336 | } 5337 | to { 5338 | background-position: 0 0; 5339 | } 5340 | } 5341 | .progress { 5342 | overflow: hidden; 5343 | height: 20px; 5344 | background-color: var(--bg); 5345 | border-radius: 0; 5346 | position: relative; 5347 | -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); 5348 | box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); 5349 | } 5350 | 5351 | .progress-bar { 5352 | float: left; 5353 | width: 0%; 5354 | height: 100%; 5355 | font-size: 12px; 5356 | line-height: 20px; 5357 | color: var(--fg); 5358 | text-align: center; 5359 | background-color: var(--bbg); 5360 | position: relative; 5361 | z-index: 2; 5362 | -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); 5363 | box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); 5364 | -webkit-transition: width 0.6s ease; 5365 | -o-transition: width 0.6s ease; 5366 | transition: width 0.6s ease; 5367 | } 5368 | 5369 | .progress-striped .progress-bar, 5370 | .progress-bar-striped { 5371 | background-image: -webkit-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); 5372 | background-image: -o-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); 5373 | 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); 5374 | background-size: 40px 40px; 5375 | } 5376 | 5377 | .progress.active .progress-bar, 5378 | .progress-bar.active { 5379 | -webkit-animation: progress-bar-stripes 2s linear infinite; 5380 | -o-animation: progress-bar-stripes 2s linear infinite; 5381 | animation: progress-bar-stripes 2s linear infinite; 5382 | } 5383 | 5384 | .progress-bar[aria-valuenow="1"], .progress-bar[aria-valuenow="2"] { 5385 | min-width: 30px; 5386 | } 5387 | .progress-bar[aria-valuenow="0"] { 5388 | color: #777777; 5389 | min-width: 30px; 5390 | background-color: transparent; 5391 | background-image: none; 5392 | box-shadow: none; 5393 | } 5394 | 5395 | .progress-bar-success { 5396 | background-color: var(--grn); 5397 | } 5398 | .progress-striped .progress-bar-success { 5399 | background-image: -webkit-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); 5400 | background-image: -o-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); 5401 | 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); 5402 | } 5403 | 5404 | .progress-bar-info { 5405 | background-color: var(--hbg); 5406 | } 5407 | .progress-striped .progress-bar-info { 5408 | background-image: -webkit-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); 5409 | background-image: -o-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); 5410 | 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); 5411 | } 5412 | 5413 | .progress-bar-warning { 5414 | background-color: var(--hbg); 5415 | } 5416 | .progress-striped .progress-bar-warning { 5417 | background-image: -webkit-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); 5418 | background-image: -o-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); 5419 | 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); 5420 | } 5421 | 5422 | .progress-bar-danger { 5423 | background-color: var(--bbg); 5424 | } 5425 | .progress-striped .progress-bar-danger { 5426 | background-image: -webkit-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); 5427 | background-image: -o-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); 5428 | 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); 5429 | } 5430 | 5431 | .media, 5432 | .media-body { 5433 | overflow: hidden; 5434 | zoom: 1; 5435 | } 5436 | 5437 | .media, 5438 | .media .media { 5439 | margin-top: 15px; 5440 | } 5441 | 5442 | .media:first-child { 5443 | margin-top: 0; 5444 | } 5445 | 5446 | .media-object { 5447 | display: block; 5448 | } 5449 | 5450 | .media-heading { 5451 | margin: 0 0 5px; 5452 | } 5453 | 5454 | .media > .pull-left { 5455 | margin-right: 10px; 5456 | } 5457 | .media > .pull-right { 5458 | margin-left: 10px; 5459 | } 5460 | 5461 | .media-list { 5462 | padding-left: 0; 5463 | list-style: none; 5464 | } 5465 | 5466 | .list-group { 5467 | margin-bottom: 20px; 5468 | padding-left: 0; 5469 | } 5470 | 5471 | .list-group-item { 5472 | position: relative; 5473 | display: block; 5474 | padding: 6px 8px; 5475 | margin-bottom: 0; 5476 | background-color: var(--bg); 5477 | } 5478 | .list-group-item:last-child { 5479 | margin-bottom: 0; 5480 | } 5481 | .list-group-item > .badge { 5482 | float: right; 5483 | } 5484 | .list-group-item > .badge + .badge { 5485 | margin-right: 5px; 5486 | } 5487 | 5488 | a.list-group-item { 5489 | color: var(--fg); 5490 | border-radius: 0; 5491 | } 5492 | a.list-group-item .list-group-item-heading { 5493 | color: var(--fg); 5494 | } 5495 | a.list-group-item:hover { 5496 | text-decoration: none; 5497 | color: var(--fg); 5498 | background-color: var(--dbg); 5499 | } 5500 | a.list-group-item:focus { 5501 | text-decoration: none; 5502 | color: var(--fg); 5503 | background-color: var(--dbg); 5504 | } 5505 | a.list-group-item:hover:before, a.list-group-item:focus:before { 5506 | background: var(--bg); 5507 | content: ""; 5508 | height: 42px; 5509 | left: 0; 5510 | position: absolute; 5511 | top: 0; 5512 | width: 3px; 5513 | } 5514 | 5515 | .list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus { 5516 | background-color: var(--hbg); 5517 | color: var(--hbg); 5518 | } 5519 | .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading { 5520 | color: inherit; 5521 | } 5522 | .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text { 5523 | color: var(--hbg); 5524 | } 5525 | .list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus { 5526 | z-index: 2; 5527 | } 5528 | .list-group-item.active:before, .list-group-item.active:hover:before, .list-group-item.active:focus:before { 5529 | background: var(--bg); 5530 | content: ""; 5531 | height: 42px; 5532 | left: 0; 5533 | position: absolute; 5534 | top: 0px; 5535 | width: 3px; 5536 | } 5537 | .list-group-item.active .list-group-item-heading, 5538 | .list-group-item.active .list-group-item-heading > small, 5539 | .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading, 5540 | .list-group-item.active:hover .list-group-item-heading > small, 5541 | .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading, 5542 | .list-group-item.active:focus .list-group-item-heading > small, 5543 | .list-group-item.active:focus .list-group-item-heading > .small { 5544 | color: inherit; 5545 | } 5546 | .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text { 5547 | color: var(--hfg); 5548 | } 5549 | .list-group-item.active + .collapse > .list-group-item:before, .list-group-item.active:hover + .collapse > .list-group-item:before, .list-group-item.active:focus + .collapse > .list-group-item:before { 5550 | background: var(--sbg); 5551 | content: ""; 5552 | height: 42px; 5553 | left: 0; 5554 | position: absolute; 5555 | top: 0px; 5556 | width: 3px; 5557 | } 5558 | 5559 | .list-group-item-success { 5560 | color: var(--grn); 5561 | background-color: var(--grn); 5562 | } 5563 | 5564 | a.list-group-item-success { 5565 | color: var(--grn); 5566 | } 5567 | a.list-group-item-success .list-group-item-heading { 5568 | color: inherit; 5569 | } 5570 | a.list-group-item-success:hover, a.list-group-item-success:focus { 5571 | color: var(--grn); 5572 | background-color: var(--grn); 5573 | } 5574 | a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus { 5575 | color: var(--fg); 5576 | background-color: var(--grn); 5577 | border-color: var(--grn); 5578 | } 5579 | 5580 | .list-group-item-info { 5581 | color: #31708f; 5582 | background-color: var(--hbg); 5583 | } 5584 | 5585 | a.list-group-item-info { 5586 | color: #31708f; 5587 | } 5588 | a.list-group-item-info .list-group-item-heading { 5589 | color: inherit; 5590 | } 5591 | a.list-group-item-info:hover, a.list-group-item-info:focus { 5592 | color: #31708f; 5593 | background-color: var(--hbg); 5594 | } 5595 | a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus { 5596 | color: var(--fg); 5597 | background-color: #31708f; 5598 | border-color: #31708f; 5599 | } 5600 | 5601 | .list-group-item-warning { 5602 | color: #f0ad4e; 5603 | background-color: var(--hbg); 5604 | } 5605 | 5606 | a.list-group-item-warning { 5607 | color: #f0ad4e; 5608 | } 5609 | a.list-group-item-warning .list-group-item-heading { 5610 | color: inherit; 5611 | } 5612 | a.list-group-item-warning:hover, a.list-group-item-warning:focus { 5613 | color: #f0ad4e; 5614 | background-color: var(--hbg); 5615 | } 5616 | a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus { 5617 | color: var(--fg); 5618 | background-color: var(--hbg); 5619 | border-color: var(--hbg); 5620 | } 5621 | 5622 | .list-group-item-danger { 5623 | color: var(--red); 5624 | background-color: var(--red); 5625 | } 5626 | 5627 | a.list-group-item-danger { 5628 | color: var(--red); 5629 | } 5630 | a.list-group-item-danger .list-group-item-heading { 5631 | color: inherit; 5632 | } 5633 | a.list-group-item-danger:hover, a.list-group-item-danger:focus { 5634 | color: var(--red); 5635 | background-color: #ee3939; 5636 | } 5637 | a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus { 5638 | color: var(--fg); 5639 | background-color: var(--red); 5640 | border-color: var(--red); 5641 | } 5642 | 5643 | .list-group-item-heading { 5644 | margin-top: 0; 5645 | margin-bottom: 5px; 5646 | } 5647 | 5648 | .list-group-item-text { 5649 | margin-bottom: 0; 5650 | line-height: 1.3; 5651 | } 5652 | 5653 | .panel { 5654 | margin-bottom: 20px; 5655 | background-color: var(--hbg); 5656 | border: 1px solid transparent; 5657 | border-radius: 0; 5658 | -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); 5659 | box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); 5660 | } 5661 | 5662 | .panel-body { 5663 | padding: 15px; 5664 | } 5665 | .panel-body:before, .panel-body:after { 5666 | content: " "; 5667 | display: table; 5668 | } 5669 | .panel-body:after { 5670 | clear: both; 5671 | } 5672 | 5673 | .panel-heading { 5674 | padding: 10px 15px; 5675 | border-bottom: 1px solid transparent; 5676 | border-top-right-radius: 2px0; 5677 | border-top-left-radius: 0; 5678 | } 5679 | .panel-heading > .dropdown .dropdown-toggle { 5680 | color: inherit; 5681 | } 5682 | 5683 | .panel-title { 5684 | margin-top: 0; 5685 | margin-bottom: 0; 5686 | font-size: 16px; 5687 | color: inherit; 5688 | } 5689 | .panel-title > a { 5690 | color: inherit; 5691 | } 5692 | 5693 | .panel-footer { 5694 | padding: 10px 15px; 5695 | background-color: var(--hbg); 5696 | border-top: 1px solid var(--hbg); 5697 | border-bottom-right-radius: 2px; 5698 | border-bottom-left-radius: 2px; 5699 | } 5700 | 5701 | .panel > .list-group { 5702 | margin-bottom: 0; 5703 | } 5704 | .panel > .list-group .list-group-item { 5705 | border-width: 1px 0; 5706 | border-radius: 0; 5707 | } 5708 | .panel > .list-group:first-child .list-group-item:first-child { 5709 | border-top: 0; 5710 | border-top-right-radius: 0px; 5711 | border-top-left-radius: 0px; 5712 | } 5713 | .panel > .list-group:last-child .list-group-item:last-child { 5714 | border-bottom: 0; 5715 | border-bottom-right-radius: 2px; 5716 | border-bottom-left-radius: 2px; 5717 | } 5718 | 5719 | .panel-heading + .list-group .list-group-item:first-child { 5720 | border-top-width: 0; 5721 | } 5722 | 5723 | .list-group + .panel-footer { 5724 | border-top-width: 0; 5725 | } 5726 | 5727 | .panel > .table, 5728 | .panel > .table-responsive > .table, 5729 | .panel > .panel-collapse > .table { 5730 | margin-bottom: 0; 5731 | } 5732 | .panel > .table:first-child, 5733 | .panel > .table-responsive:first-child > .table:first-child { 5734 | border-top-right-radius: 2px; 5735 | border-top-left-radius: 2px; 5736 | } 5737 | .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, 5738 | .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, 5739 | .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, 5740 | .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, 5741 | .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, 5742 | .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, 5743 | .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, 5744 | .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { 5745 | border-top-left-radius: 2px; 5746 | } 5747 | .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, 5748 | .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, 5749 | .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, 5750 | .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, 5751 | .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, 5752 | .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, 5753 | .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, 5754 | .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { 5755 | border-top-right-radius: 2px; 5756 | } 5757 | .panel > .table:last-child, 5758 | .panel > .table-responsive:last-child > .table:last-child { 5759 | border-bottom-right-radius: 2px; 5760 | border-bottom-left-radius: 2px; 5761 | } 5762 | .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, 5763 | .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, 5764 | .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, 5765 | .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, 5766 | .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, 5767 | .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, 5768 | .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, 5769 | .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { 5770 | border-bottom-left-radius: 2px; 5771 | } 5772 | .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, 5773 | .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, 5774 | .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, 5775 | .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, 5776 | .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, 5777 | .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, 5778 | .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, 5779 | .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { 5780 | border-bottom-right-radius: 2px; 5781 | } 5782 | .panel > .panel-body + .table, 5783 | .panel > .panel-body + .table-responsive { 5784 | border-top: 1px solid #eee; 5785 | } 5786 | .panel > .table > tbody:first-child > tr:first-child th, 5787 | .panel > .table > tbody:first-child > tr:first-child td { 5788 | border-top: 0; 5789 | } 5790 | .panel > .table-bordered, 5791 | .panel > .table-responsive > .table-bordered { 5792 | border: 0; 5793 | } 5794 | .panel > .table-bordered > thead > tr > th:first-child, 5795 | .panel > .table-bordered > thead > tr > td:first-child, 5796 | .panel > .table-bordered > tbody > tr > th:first-child, 5797 | .panel > .table-bordered > tbody > tr > td:first-child, 5798 | .panel > .table-bordered > tfoot > tr > th:first-child, 5799 | .panel > .table-bordered > tfoot > tr > td:first-child, 5800 | .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, 5801 | .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, 5802 | .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, 5803 | .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, 5804 | .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, 5805 | .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { 5806 | border-left: 0; 5807 | } 5808 | .panel > .table-bordered > thead > tr > th:last-child, 5809 | .panel > .table-bordered > thead > tr > td:last-child, 5810 | .panel > .table-bordered > tbody > tr > th:last-child, 5811 | .panel > .table-bordered > tbody > tr > td:last-child, 5812 | .panel > .table-bordered > tfoot > tr > th:last-child, 5813 | .panel > .table-bordered > tfoot > tr > td:last-child, 5814 | .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, 5815 | .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, 5816 | .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, 5817 | .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, 5818 | .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, 5819 | .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { 5820 | border-right: 0; 5821 | } 5822 | .panel > .table-bordered > thead > tr:first-child > td, 5823 | .panel > .table-bordered > thead > tr:first-child > th, 5824 | .panel > .table-bordered > tbody > tr:first-child > td, 5825 | .panel > .table-bordered > tbody > tr:first-child > th, 5826 | .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, 5827 | .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, 5828 | .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, 5829 | .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { 5830 | border-bottom: 0; 5831 | } 5832 | .panel > .table-bordered > tbody > tr:last-child > td, 5833 | .panel > .table-bordered > tbody > tr:last-child > th, 5834 | .panel > .table-bordered > tfoot > tr:last-child > td, 5835 | .panel > .table-bordered > tfoot > tr:last-child > th, 5836 | .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, 5837 | .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, 5838 | .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, 5839 | .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { 5840 | border-bottom: 0; 5841 | } 5842 | .panel > .table-responsive { 5843 | border: 0; 5844 | margin-bottom: 0; 5845 | } 5846 | 5847 | .panel-group { 5848 | margin-bottom: 20px; 5849 | } 5850 | .panel-group .panel { 5851 | margin-bottom: 0; 5852 | border-radius: 0; 5853 | } 5854 | .panel-group .panel + .panel { 5855 | margin-top: 5px; 5856 | } 5857 | .panel-group .panel-heading { 5858 | border-bottom: 0; 5859 | } 5860 | .panel-group .panel-heading + .panel-collapse > .panel-body { 5861 | border-top: 1px solid #ddd; 5862 | } 5863 | .panel-group .panel-footer { 5864 | border-top: 0; 5865 | } 5866 | .panel-group .panel-footer + .panel-collapse .panel-body { 5867 | border-bottom: 1px solid #ddd; 5868 | } 5869 | 5870 | .panel-default { 5871 | border-color: var(--hbg); 5872 | } 5873 | .panel-default > .panel-heading { 5874 | color: var(--fg); 5875 | background-color: var(--hbg); 5876 | border-color: var(--hbg); 5877 | } 5878 | .panel-default > .panel-heading + .panel-collapse > .panel-body { 5879 | border-top-color: #ddd; 5880 | } 5881 | .panel-default > .panel-heading .badge { 5882 | color: #f5f5f5; 5883 | background-color: #333333; 5884 | } 5885 | .panel-default > .panel-footer + .panel-collapse > .panel-body { 5886 | border-bottom-color: #ddd; 5887 | } 5888 | 5889 | .panel-primary { 5890 | border-color: var(--bg); 5891 | } 5892 | .panel-primary > .panel-heading { 5893 | color: var(--fg); 5894 | background-color: var(--bg); 5895 | border-color: var(--bg); 5896 | } 5897 | .panel-primary > .panel-heading + .panel-collapse > .panel-body { 5898 | border-top-color: var(--bg); 5899 | } 5900 | .panel-primary > .panel-heading .badge { 5901 | color: #D94F00; 5902 | background-color: var(--hbg); 5903 | } 5904 | .panel-primary > .panel-footer + .panel-collapse > .panel-body { 5905 | border-bottom-color: #D94F00; 5906 | } 5907 | 5908 | .panel-success { 5909 | border-color: var(--grn); 5910 | } 5911 | .panel-success > .panel-heading { 5912 | color: var(--grn); 5913 | background-color: var(--grn); 5914 | border-color: var(--grn); 5915 | } 5916 | .panel-success > .panel-heading + .panel-collapse > .panel-body { 5917 | border-top-color: var(--grn); 5918 | } 5919 | .panel-success > .panel-heading .badge { 5920 | color: var(--grn); 5921 | background-color: var(--grn); 5922 | } 5923 | .panel-success > .panel-footer + .panel-collapse > .panel-body { 5924 | border-bottom-color: var(--grn); 5925 | } 5926 | 5927 | .panel-info { 5928 | border-color: #bce8f1; 5929 | } 5930 | .panel-info > .panel-heading { 5931 | color: #31708f; 5932 | background-color: -HBG; 5933 | border-color: #bce8f1; 5934 | } 5935 | .panel-info > .panel-heading + .panel-collapse > .panel-body { 5936 | border-top-color: #bce8f1; 5937 | } 5938 | .panel-info > .panel-heading .badge { 5939 | color: #d9edf7; 5940 | background-color: var(--hbg); 5941 | } 5942 | .panel-info > .panel-footer + .panel-collapse > .panel-body { 5943 | border-bottom-color: #bce8f1; 5944 | } 5945 | 5946 | .panel-warning { 5947 | border-color: #faebcc; 5948 | } 5949 | .panel-warning > .panel-heading { 5950 | color: #f0ad4e; 5951 | background-color: var(--hbg); 5952 | border-color: #faebcc; 5953 | } 5954 | .panel-warning > .panel-heading + .panel-collapse > .panel-body { 5955 | border-top-color: #faebcc; 5956 | } 5957 | .panel-warning > .panel-heading .badge { 5958 | color: #fcf8e3; 5959 | background-color: var(--hbg); 5960 | } 5961 | .panel-warning > .panel-footer + .panel-collapse > .panel-body { 5962 | border-bottom-color: #faebcc; 5963 | } 5964 | 5965 | .panel-danger { 5966 | border-color: var(--red); 5967 | } 5968 | .panel-danger > .panel-heading { 5969 | color: var(--red); 5970 | background-color: var(--red); 5971 | border-color: var(--red); 5972 | } 5973 | .panel-danger > .panel-heading + .panel-collapse > .panel-body { 5974 | border-top-color: var(--red); 5975 | } 5976 | .panel-danger > .panel-heading .badge { 5977 | color: var(--red); 5978 | background-color: var(--red); 5979 | } 5980 | .panel-danger > .panel-footer + .panel-collapse > .panel-body { 5981 | border-bottom-color: var(--red); 5982 | } 5983 | 5984 | .embed-responsive { 5985 | position: relative; 5986 | display: block; 5987 | height: 0; 5988 | padding: 0; 5989 | overflow: hidden; 5990 | } 5991 | .embed-responsive .embed-responsive-item, 5992 | .embed-responsive iframe, 5993 | .embed-responsive embed, 5994 | .embed-responsive object { 5995 | position: absolute; 5996 | top: 0; 5997 | left: 0; 5998 | bottom: 0; 5999 | height: 100%; 6000 | width: 100%; 6001 | border: 0; 6002 | } 6003 | .embed-responsive.embed-responsive-16by9 { 6004 | padding-bottom: 56.25%; 6005 | } 6006 | .embed-responsive.embed-responsive-4by3 { 6007 | padding-bottom: 75%; 6008 | } 6009 | 6010 | .well { 6011 | min-height: 20px; 6012 | padding: 19px; 6013 | margin-bottom: 20px; 6014 | background-color: var(--hbg); 6015 | border: 1px solid var(--hbg); 6016 | border-radius: 0; 6017 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); 6018 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); 6019 | } 6020 | .well blockquote { 6021 | border-color: var(--hbg); 6022 | border-color: rgba(0, 0, 0, 0.15); 6023 | } 6024 | 6025 | .well-lg { 6026 | padding: 24px; 6027 | border-radius: 0; 6028 | } 6029 | 6030 | .well-sm { 6031 | padding: 9px; 6032 | border-radius: 0; 6033 | } 6034 | 6035 | .close { 6036 | float: right; 6037 | font-size: 21px; 6038 | font-weight: bold; 6039 | line-height: 1; 6040 | color: var(--fg) ; 6041 | text-shadow: 0 1px 0 #fff; 6042 | opacity: 0.2; 6043 | filter: alpha(opacity=20); 6044 | } 6045 | .close:hover, .close:focus { 6046 | color: var(--fg) ; 6047 | text-decoration: none; 6048 | cursor: pointer; 6049 | opacity: 0.5; 6050 | filter: alpha(opacity=50); 6051 | } 6052 | 6053 | button.close { 6054 | padding: 0; 6055 | cursor: pointer; 6056 | background: transparent; 6057 | border: 0; 6058 | -webkit-appearance: none; 6059 | } 6060 | 6061 | .modal-open { 6062 | overflow: hidden; 6063 | } 6064 | 6065 | .modal { 6066 | display: none; 6067 | overflow: hidden; 6068 | position: fixed; 6069 | top: 0; 6070 | right: 0; 6071 | bottom: 0; 6072 | left: 0; 6073 | z-index: 1050; 6074 | -webkit-overflow-scrolling: touch; 6075 | outline: 0; 6076 | } 6077 | .modal.fade .modal-dialog { 6078 | -webkit-transform: translate3d(0, -25%, 0); 6079 | transform: translate3d(0, -25%, 0); 6080 | -webkit-transition: -webkit-transform 0.3s ease-out; 6081 | -moz-transition: -moz-transform 0.3s ease-out; 6082 | -o-transition: -o-transform 0.3s ease-out; 6083 | transition: transform 0.3s ease-out; 6084 | } 6085 | .modal.in .modal-dialog { 6086 | -webkit-transform: translate3d(0, 0, 0); 6087 | transform: translate3d(0, 0, 0); 6088 | } 6089 | 6090 | .modal-open .modal { 6091 | overflow-x: hidden; 6092 | overflow-y: auto; 6093 | } 6094 | 6095 | .modal-dialog { 6096 | position: relative; 6097 | width: auto; 6098 | margin: 62px 10px 10px 10px; 6099 | } 6100 | 6101 | .modal-content { 6102 | position: relative; 6103 | background-color: var(--hbg); 6104 | border: 1px solid var(--hbg); 6105 | border-radius: 0; 6106 | 6107 | background-clip: padding-box; 6108 | outline: 0; 6109 | } 6110 | 6111 | .modal-backdrop { 6112 | position: fixed; 6113 | top: 0; 6114 | right: 0; 6115 | bottom: 0; 6116 | left: 0; 6117 | z-index: 1040; 6118 | background-color: #000; 6119 | } 6120 | .modal-backdrop.fade { 6121 | opacity: 0; 6122 | filter: alpha(opacity=0); 6123 | } 6124 | .modal-backdrop.in { 6125 | opacity: 0.5; 6126 | filter: alpha(opacity=50); 6127 | } 6128 | 6129 | .modal-header { 6130 | padding: 15px; 6131 | border-bottom: 1px solid #e5e5e5; 6132 | min-height: 16.428571429px; 6133 | } 6134 | 6135 | .modal-header .close { 6136 | margin-top: -2px; 6137 | } 6138 | 6139 | .modal-title { 6140 | margin: 0; 6141 | line-height: 1.428571429; 6142 | color: var(--fg); 6143 | } 6144 | 6145 | .modal-body { 6146 | position: relative; 6147 | padding: 15px; 6148 | } 6149 | 6150 | .modal-footer { 6151 | padding: 15px; 6152 | text-align: right; 6153 | border-top: 1px solid #e5e5e5; 6154 | } 6155 | .modal-footer:before, .modal-footer:after { 6156 | content: " "; 6157 | display: table; 6158 | } 6159 | .modal-footer:after { 6160 | clear: both; 6161 | } 6162 | .modal-footer .btn + .btn { 6163 | margin-left: 5px; 6164 | margin-bottom: 0; 6165 | } 6166 | .modal-footer .btn-group .btn + .btn { 6167 | margin-left: -1px; 6168 | } 6169 | .modal-footer .btn-block + .btn-block { 6170 | margin-left: 0; 6171 | } 6172 | 6173 | .modal-scrollbar-measure { 6174 | position: absolute; 6175 | top: -9999px; 6176 | width: 50px; 6177 | height: 50px; 6178 | overflow: scroll; 6179 | } 6180 | 6181 | @media (min-width: 768px) { 6182 | .modal-dialog { 6183 | width: 600px; 6184 | margin: 82px auto 30px auto; 6185 | } 6186 | 6187 | .modal-content { 6188 | -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); 6189 | box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); 6190 | } 6191 | 6192 | .modal-sm { 6193 | width: 300px; 6194 | } 6195 | } 6196 | @media (min-width: 992px) { 6197 | .modal-lg { 6198 | width: 900px; 6199 | } 6200 | } 6201 | .tooltip { 6202 | position: absolute; 6203 | z-index: 1070; 6204 | display: block; 6205 | visibility: visible; 6206 | font-size: 12px; 6207 | line-height: 1.4; 6208 | opacity: 0; 6209 | filter: alpha(opacity=0); 6210 | } 6211 | .tooltip.in { 6212 | opacity: 0.9; 6213 | filter: alpha(opacity=90); 6214 | } 6215 | .tooltip.top { 6216 | margin-top: -3px; 6217 | padding: 5px 0; 6218 | } 6219 | .tooltip.right { 6220 | margin-left: 3px; 6221 | padding: 0 5px; 6222 | } 6223 | .tooltip.bottom { 6224 | margin-top: 3px; 6225 | padding: 5px 0; 6226 | } 6227 | .tooltip.left { 6228 | margin-left: -3px; 6229 | padding: 0 5px; 6230 | } 6231 | 6232 | .tooltip-inner { 6233 | max-width: 200px; 6234 | padding: 3px 8px; 6235 | color: var(--fg); 6236 | text-align: center; 6237 | text-decoration: none; 6238 | background-color: #000; 6239 | border-radius: 0; 6240 | } 6241 | 6242 | .tooltip-arrow { 6243 | position: absolute; 6244 | width: 0; 6245 | height: 0; 6246 | border-color: transparent; 6247 | border-style: solid; 6248 | } 6249 | 6250 | .tooltip.top .tooltip-arrow { 6251 | bottom: 0; 6252 | left: 50%; 6253 | margin-left: -5px; 6254 | border-width: 5px 5px 0; 6255 | border-top-color: #000; 6256 | } 6257 | .tooltip.top-left .tooltip-arrow { 6258 | bottom: 0; 6259 | left: 5px; 6260 | border-width: 5px 5px 0; 6261 | border-top-color: #000; 6262 | } 6263 | .tooltip.top-right .tooltip-arrow { 6264 | bottom: 0; 6265 | right: 5px; 6266 | border-width: 5px 5px 0; 6267 | border-top-color: #000; 6268 | } 6269 | .tooltip.right .tooltip-arrow { 6270 | top: 50%; 6271 | left: 0; 6272 | margin-top: -5px; 6273 | border-width: 5px 5px 5px 0; 6274 | border-right-color: #000; 6275 | } 6276 | .tooltip.left .tooltip-arrow { 6277 | top: 50%; 6278 | right: 0; 6279 | margin-top: -5px; 6280 | border-width: 5px 0 5px 5px; 6281 | border-left-color: #000; 6282 | } 6283 | .tooltip.bottom .tooltip-arrow { 6284 | top: 0; 6285 | left: 50%; 6286 | margin-left: -5px; 6287 | border-width: 0 5px 5px; 6288 | border-bottom-color: #000; 6289 | } 6290 | .tooltip.bottom-left .tooltip-arrow { 6291 | top: 0; 6292 | left: 5px; 6293 | border-width: 0 5px 5px; 6294 | border-bottom-color: #000; 6295 | } 6296 | .tooltip.bottom-right .tooltip-arrow { 6297 | top: 0; 6298 | right: 5px; 6299 | border-width: 0 5px 5px; 6300 | border-bottom-color: #000; 6301 | } 6302 | 6303 | .popover { 6304 | position: absolute; 6305 | top: 0; 6306 | left: 0; 6307 | z-index: 1060; 6308 | display: none; 6309 | max-width: 276px; 6310 | padding: 1px; 6311 | text-align: left; 6312 | background-color: var(--hbg); 6313 | background-clip: padding-box; 6314 | border: 1px solid var(--hbg); 6315 | border: 1px solid var(--hbg); 6316 | border-radius: 0; 6317 | -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); 6318 | box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); 6319 | white-space: normal; 6320 | } 6321 | .popover.top { 6322 | margin-top: -10px; 6323 | } 6324 | .popover.right { 6325 | margin-left: 10px; 6326 | } 6327 | .popover.bottom { 6328 | margin-top: 10px; 6329 | } 6330 | .popover.left { 6331 | margin-left: -10px; 6332 | } 6333 | 6334 | .popover-title { 6335 | margin: 0; 6336 | padding: 8px 14px; 6337 | font-size: 14px; 6338 | font-weight: normal; 6339 | line-height: 18px; 6340 | background-color: var(--hbg); 6341 | border-bottom: 1px solid var(--hbg); 6342 | border-radius: 0; 6343 | } 6344 | 6345 | .popover-content { 6346 | padding: 9px 14px; 6347 | } 6348 | 6349 | .popover > .arrow, .popover > .arrow:after { 6350 | position: absolute; 6351 | display: block; 6352 | width: 0; 6353 | height: 0; 6354 | border-color: transparent; 6355 | border-style: solid; 6356 | } 6357 | 6358 | .popover > .arrow { 6359 | border-width: 11px; 6360 | } 6361 | 6362 | .popover > .arrow:after { 6363 | border-width: 10px; 6364 | content: ""; 6365 | } 6366 | 6367 | .popover.top > .arrow { 6368 | left: 50%; 6369 | margin-left: -11px; 6370 | border-bottom-width: 0; 6371 | border-top-color: #999999; 6372 | border-top-color: rgba(0, 0, 0, 0.25); 6373 | bottom: -11px; 6374 | } 6375 | .popover.top > .arrow:after { 6376 | content: " "; 6377 | bottom: 1px; 6378 | margin-left: -10px; 6379 | border-bottom-width: 0; 6380 | border-top-color: #fff; 6381 | } 6382 | .popover.right > .arrow { 6383 | top: 50%; 6384 | left: -11px; 6385 | margin-top: -11px; 6386 | border-left-width: 0; 6387 | border-right-color: #999999; 6388 | border-right-color: rgba(0, 0, 0, 0.25); 6389 | } 6390 | .popover.right > .arrow:after { 6391 | content: " "; 6392 | left: 1px; 6393 | bottom: -10px; 6394 | border-left-width: 0; 6395 | border-right-color: #fff; 6396 | } 6397 | .popover.bottom > .arrow { 6398 | left: 50%; 6399 | margin-left: -11px; 6400 | border-top-width: 0; 6401 | border-bottom-color: #999999; 6402 | border-bottom-color: rgba(0, 0, 0, 0.25); 6403 | top: -11px; 6404 | } 6405 | .popover.bottom > .arrow:after { 6406 | content: " "; 6407 | top: 1px; 6408 | margin-left: -10px; 6409 | border-top-width: 0; 6410 | border-bottom-color: #fff; 6411 | } 6412 | .popover.left > .arrow { 6413 | top: 50%; 6414 | right: -11px; 6415 | margin-top: -11px; 6416 | border-right-width: 0; 6417 | border-left-color: #999999; 6418 | border-left-color: rgba(0, 0, 0, 0.25); 6419 | } 6420 | .popover.left > .arrow:after { 6421 | content: " "; 6422 | right: 1px; 6423 | border-right-width: 0; 6424 | border-left-color: #fff; 6425 | bottom: -10px; 6426 | } 6427 | 6428 | .carousel { 6429 | position: relative; 6430 | } 6431 | 6432 | .carousel-inner { 6433 | position: relative; 6434 | overflow: hidden; 6435 | width: 100%; 6436 | } 6437 | .carousel-inner > .item { 6438 | display: none; 6439 | position: relative; 6440 | -webkit-transition: 0.6s ease-in-out left; 6441 | -o-transition: 0.6s ease-in-out left; 6442 | transition: 0.6s ease-in-out left; 6443 | } 6444 | .carousel-inner > .item > img, 6445 | .carousel-inner > .item > a > img { 6446 | display: block; 6447 | width: 100% \9 ; 6448 | max-width: 100%; 6449 | height: auto; 6450 | line-height: 1; 6451 | } 6452 | .carousel-inner > .active, 6453 | .carousel-inner > .next, 6454 | .carousel-inner > .prev { 6455 | display: block; 6456 | } 6457 | .carousel-inner > .active { 6458 | left: 0; 6459 | } 6460 | .carousel-inner > .next, 6461 | .carousel-inner > .prev { 6462 | position: absolute; 6463 | top: 0; 6464 | width: 100%; 6465 | } 6466 | .carousel-inner > .next { 6467 | left: 100%; 6468 | } 6469 | .carousel-inner > .prev { 6470 | left: -100%; 6471 | } 6472 | .carousel-inner > .next.left, 6473 | .carousel-inner > .prev.right { 6474 | left: 0; 6475 | } 6476 | .carousel-inner > .active.left { 6477 | left: -100%; 6478 | } 6479 | .carousel-inner > .active.right { 6480 | left: 100%; 6481 | } 6482 | 6483 | .carousel-control { 6484 | position: absolute; 6485 | top: 0; 6486 | left: 0; 6487 | bottom: 0; 6488 | width: 15%; 6489 | opacity: 0.5; 6490 | filter: alpha(opacity=50); 6491 | font-size: 20px; 6492 | color: var(--fg); 6493 | text-align: center; 6494 | text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); 6495 | } 6496 | .carousel-control.left { 6497 | background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); 6498 | background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); 6499 | background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); 6500 | background-repeat: repeat-x; 6501 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#80000000", endColorstr="#00000000", GradientType=1); 6502 | } 6503 | .carousel-control.right { 6504 | left: auto; 6505 | right: 0; 6506 | background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); 6507 | background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); 6508 | background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); 6509 | background-repeat: repeat-x; 6510 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#80000000", GradientType=1); 6511 | } 6512 | .carousel-control:hover, .carousel-control:focus { 6513 | outline: 0; 6514 | color: var(--fg); 6515 | text-decoration: none; 6516 | opacity: 0.9; 6517 | filter: alpha(opacity=90); 6518 | } 6519 | .carousel-control .icon-prev, 6520 | .carousel-control .icon-next, 6521 | .carousel-control .glyphicon-chevron-left, 6522 | .carousel-control .glyphicon-chevron-right { 6523 | position: absolute; 6524 | top: 50%; 6525 | z-index: 5; 6526 | display: inline-block; 6527 | } 6528 | .carousel-control .icon-prev, 6529 | .carousel-control .glyphicon-chevron-left { 6530 | left: 50%; 6531 | margin-left: -10px; 6532 | } 6533 | .carousel-control .icon-next, 6534 | .carousel-control .glyphicon-chevron-right { 6535 | right: 50%; 6536 | margin-right: -10px; 6537 | } 6538 | .carousel-control .icon-prev, 6539 | .carousel-control .icon-next { 6540 | width: 20px; 6541 | height: 20px; 6542 | margin-top: -10px; 6543 | font-family: serif; 6544 | } 6545 | .carousel-control .icon-prev:before { 6546 | content: "‹"; 6547 | } 6548 | .carousel-control .icon-next:before { 6549 | content: "›"; 6550 | } 6551 | 6552 | .carousel-indicators { 6553 | position: absolute; 6554 | bottom: 10px; 6555 | left: 50%; 6556 | z-index: 15; 6557 | width: 60%; 6558 | margin-left: -30%; 6559 | padding-left: 0; 6560 | list-style: none; 6561 | text-align: center; 6562 | } 6563 | .carousel-indicators li { 6564 | display: inline-block; 6565 | width: 10px; 6566 | height: 10px; 6567 | margin: 1px; 6568 | text-indent: -999px; 6569 | border: 1px solid #fff; 6570 | border-radius: 0; 6571 | cursor: pointer; 6572 | background-color: #000 \9 ; 6573 | background-color: rgba(0, 0, 0, 0); 6574 | } 6575 | .carousel-indicators .active { 6576 | margin: 0; 6577 | width: 12px; 6578 | height: 12px; 6579 | background-color: var(--hbg); 6580 | } 6581 | 6582 | .carousel-caption { 6583 | position: absolute; 6584 | left: 15%; 6585 | right: 15%; 6586 | bottom: 20px; 6587 | z-index: 10; 6588 | padding-top: 20px; 6589 | padding-bottom: 20px; 6590 | color: var(--fg); 6591 | text-align: center; 6592 | text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); 6593 | } 6594 | .carousel-caption .btn { 6595 | text-shadow: none; 6596 | } 6597 | 6598 | @media screen and (min-width: 768px) { 6599 | .carousel-control .glyphicon-chevron-left, 6600 | .carousel-control .glyphicon-chevron-right, 6601 | .carousel-control .icon-prev, 6602 | .carousel-control .icon-next { 6603 | width: 30px; 6604 | height: 30px; 6605 | margin-top: -15px; 6606 | font-size: 30px; 6607 | } 6608 | .carousel-control .glyphicon-chevron-left, 6609 | .carousel-control .icon-prev { 6610 | margin-left: -15px; 6611 | } 6612 | .carousel-control .glyphicon-chevron-right, 6613 | .carousel-control .icon-next { 6614 | margin-right: -15px; 6615 | } 6616 | 6617 | .carousel-caption { 6618 | left: 20%; 6619 | right: 20%; 6620 | padding-bottom: 30px; 6621 | } 6622 | 6623 | .carousel-indicators { 6624 | bottom: 20px; 6625 | } 6626 | } 6627 | .clearfix:before, .content-box:before, .clearfix:after, .content-box:after { 6628 | content: " "; 6629 | display: table; 6630 | } 6631 | .clearfix:after, .content-box:after { 6632 | clear: both; 6633 | } 6634 | 6635 | .center-block { 6636 | display: block; 6637 | margin-left: auto; 6638 | margin-right: auto; 6639 | } 6640 | 6641 | .pull-right { 6642 | float: right !important; 6643 | } 6644 | 6645 | .pull-left { 6646 | float: left !important; 6647 | } 6648 | 6649 | .hide { 6650 | display: none !important; 6651 | } 6652 | 6653 | .show { 6654 | display: block !important; 6655 | } 6656 | 6657 | .invisible { 6658 | visibility: hidden; 6659 | } 6660 | 6661 | .text-hide { 6662 | font: 0/0 a; 6663 | color: transparent; 6664 | text-shadow: none; 6665 | background-color: transparent; 6666 | border: 0; 6667 | } 6668 | 6669 | .hidden { 6670 | display: none !important; 6671 | visibility: hidden !important; 6672 | } 6673 | 6674 | .affix { 6675 | position: fixed; 6676 | -webkit-transform: translate3d(0, 0, 0); 6677 | transform: translate3d(0, 0, 0); 6678 | } 6679 | 6680 | @-ms-viewport { 6681 | width: device-width; 6682 | } 6683 | .visible-xs, .visible-sm, .visible-md, .visible-lg { 6684 | display: none !important; 6685 | } 6686 | 6687 | .visible-xs-block, 6688 | .visible-xs-inline, 6689 | .visible-xs-inline-block, 6690 | .visible-sm-block, 6691 | .visible-sm-inline, 6692 | .visible-sm-inline-block, 6693 | .visible-md-block, 6694 | .visible-md-inline, 6695 | .visible-md-inline-block, 6696 | .visible-lg-block, 6697 | .visible-lg-inline, 6698 | .visible-lg-inline-block { 6699 | display: none !important; 6700 | } 6701 | 6702 | @media (max-width: 767px) { 6703 | .visible-xs { 6704 | display: block !important; 6705 | } 6706 | 6707 | table.visible-xs { 6708 | display: table; 6709 | } 6710 | 6711 | tr.visible-xs { 6712 | display: table-row !important; 6713 | } 6714 | 6715 | th.visible-xs, 6716 | td.visible-xs { 6717 | display: table-cell !important; 6718 | } 6719 | } 6720 | @media (max-width: 767px) { 6721 | .visible-xs-block { 6722 | display: block !important; 6723 | } 6724 | } 6725 | 6726 | @media (max-width: 767px) { 6727 | .visible-xs-inline { 6728 | display: inline !important; 6729 | } 6730 | } 6731 | 6732 | @media (max-width: 767px) { 6733 | .visible-xs-inline-block { 6734 | display: inline-block !important; 6735 | } 6736 | } 6737 | 6738 | @media (min-width: 768px) and (max-width: 991px) { 6739 | .visible-sm { 6740 | display: block !important; 6741 | } 6742 | 6743 | table.visible-sm { 6744 | display: table; 6745 | } 6746 | 6747 | tr.visible-sm { 6748 | display: table-row !important; 6749 | } 6750 | 6751 | th.visible-sm, 6752 | td.visible-sm { 6753 | display: table-cell !important; 6754 | } 6755 | } 6756 | @media (min-width: 768px) and (max-width: 991px) { 6757 | .visible-sm-block { 6758 | display: block !important; 6759 | } 6760 | } 6761 | 6762 | @media (min-width: 768px) and (max-width: 991px) { 6763 | .visible-sm-inline { 6764 | display: inline !important; 6765 | } 6766 | } 6767 | 6768 | @media (min-width: 768px) and (max-width: 991px) { 6769 | .visible-sm-inline-block { 6770 | display: inline-block !important; 6771 | } 6772 | } 6773 | 6774 | @media (min-width: 992px) and (max-width: 1199px) { 6775 | .visible-md { 6776 | display: block !important; 6777 | } 6778 | 6779 | table.visible-md { 6780 | display: table; 6781 | } 6782 | 6783 | tr.visible-md { 6784 | display: table-row !important; 6785 | } 6786 | 6787 | th.visible-md, 6788 | td.visible-md { 6789 | display: table-cell !important; 6790 | } 6791 | } 6792 | @media (min-width: 992px) and (max-width: 1199px) { 6793 | .visible-md-block { 6794 | display: block !important; 6795 | } 6796 | } 6797 | 6798 | @media (min-width: 992px) and (max-width: 1199px) { 6799 | .visible-md-inline { 6800 | display: inline !important; 6801 | } 6802 | } 6803 | 6804 | @media (min-width: 992px) and (max-width: 1199px) { 6805 | .visible-md-inline-block { 6806 | display: inline-block !important; 6807 | } 6808 | } 6809 | 6810 | @media (min-width: 1200px) { 6811 | .visible-lg { 6812 | display: block !important; 6813 | } 6814 | 6815 | table.visible-lg { 6816 | display: table; 6817 | } 6818 | 6819 | tr.visible-lg { 6820 | display: table-row !important; 6821 | } 6822 | 6823 | th.visible-lg, 6824 | td.visible-lg { 6825 | display: table-cell !important; 6826 | } 6827 | } 6828 | @media (min-width: 1200px) { 6829 | .visible-lg-block { 6830 | display: block !important; 6831 | } 6832 | } 6833 | 6834 | @media (min-width: 1200px) { 6835 | .visible-lg-inline { 6836 | display: inline !important; 6837 | } 6838 | } 6839 | 6840 | @media (min-width: 1200px) { 6841 | .visible-lg-inline-block { 6842 | display: inline-block !important; 6843 | } 6844 | } 6845 | 6846 | @media (max-width: 767px) { 6847 | .hidden-xs, .page-side { 6848 | display: none !important; 6849 | } 6850 | } 6851 | @media (min-width: 768px) and (max-width: 991px) { 6852 | .hidden-sm { 6853 | display: none !important; 6854 | } 6855 | } 6856 | @media (max-width: 768px), (max-height: 669px) { 6857 | .toggle-sidebar { 6858 | display: none !important; 6859 | } 6860 | } 6861 | @media (min-width: 992px) and (max-width: 1199px) { 6862 | .hidden-md { 6863 | display: none !important; 6864 | } 6865 | } 6866 | @media (min-width: 1200px) { 6867 | .hidden-lg { 6868 | display: none !important; 6869 | } 6870 | } 6871 | .visible-print { 6872 | display: none !important; 6873 | } 6874 | 6875 | @media print { 6876 | .visible-print { 6877 | display: block !important; 6878 | } 6879 | 6880 | table.visible-print { 6881 | display: table; 6882 | } 6883 | 6884 | tr.visible-print { 6885 | display: table-row !important; 6886 | } 6887 | 6888 | th.visible-print, 6889 | td.visible-print { 6890 | display: table-cell !important; 6891 | } 6892 | } 6893 | .visible-print-block { 6894 | display: none !important; 6895 | } 6896 | @media print { 6897 | .visible-print-block { 6898 | display: block !important; 6899 | } 6900 | } 6901 | 6902 | .visible-print-inline { 6903 | display: none !important; 6904 | } 6905 | @media print { 6906 | .visible-print-inline { 6907 | display: inline !important; 6908 | } 6909 | } 6910 | 6911 | .visible-print-inline-block { 6912 | display: none !important; 6913 | } 6914 | @media print { 6915 | .visible-print-inline-block { 6916 | display: inline-block !important; 6917 | } 6918 | } 6919 | 6920 | @media print { 6921 | .hidden-print { 6922 | display: none !important; 6923 | } 6924 | } 6925 | * { 6926 | -webkit-font-smoothing: antialiased; 6927 | } 6928 | 6929 | html, body { 6930 | height: 100%; 6931 | font-family: SegoeUI, "Helvetica Neue", Helvetica, Arial, sans-serif; 6932 | background-color: var(--bg); 6933 | } 6934 | 6935 | body { 6936 | touch-action: manipulation; 6937 | min-width: 320px; 6938 | } 6939 | 6940 | .widget-sort-handle { 6941 | touch-action: none; 6942 | } 6943 | 6944 | .page-head { 6945 | background: #3C3C3B; 6946 | top: 0; 6947 | left: 0; 6948 | position: fixed; 6949 | width: 100%; 6950 | z-index: 2; 6951 | } 6952 | 6953 | .page-content { 6954 | height: calc(100% - 52px); 6955 | padding-top: 52px; 6956 | position: relative; 6957 | z-index: 1; 6958 | } 6959 | .page-content > .row { 6960 | height: 100%; 6961 | } 6962 | 6963 | .page-content-head, .content-box-head { 6964 | background: var(--bg); 6965 | 6966 | padding-bottom: 5px; 6967 | padding-top: 5px; 6968 | } 6969 | .page-content-head .navbar-nav, .content-box-head .navbar-nav { 6970 | width: 100%; 6971 | } 6972 | .page-content-head h1, .content-box-head h1, .page-content-head h2, .content-box-head h2, .page-content-head h3, .content-box-head h3 { 6973 | line-height: 1; 6974 | margin: 0; 6975 | } 6976 | 6977 | .page-content-main { 6978 | background: var(--hbg); 6979 | min-height: calc(100% - 64px); 6980 | padding: 15px 0 73px; 6981 | } 6982 | 6983 | .page-side { 6984 | background: var(--bg); 6985 | border-right: 1px solid var(--dbg); 6986 | height: 100% !important; 6987 | height: calc(100% - 52px) !important; 6988 | left: 0; 6989 | overflow: auto; 6990 | margin-top: 52px; 6991 | position: fixed; 6992 | top: 0; 6993 | z-index: 3; 6994 | } 6995 | 6996 | .page-side-nav--active { 6997 | background: var(--bg); 6998 | border-left: 3px solid var(--bg); 6999 | } 7000 | 7001 | .page-foot { 7002 | background: var(--bg); 7003 | bottom: 0; 7004 | 7005 | font-size: 10px; 7006 | padding: 5px 0; 7007 | position: fixed; 7008 | width: 100%; 7009 | z-index: 2; 7010 | } 7011 | 7012 | .content-box { 7013 | background: var(--hbg); 7014 | border: 1px solid var(-bg); 7015 | } 7016 | .content-box-main { 7017 | padding-bottom: 15px; 7018 | padding-top: 15px; 7019 | } 7020 | 7021 | div.content-box.wizard div img { 7022 | filter: invert(25%); 7023 | } 7024 | 7025 | .tab-content { 7026 | border-top: 0px; 7027 | padding: 0px 0; 7028 | } 7029 | .tab-content > .tab-content { 7030 | margin-bottom: 0; 7031 | padding: 0 15px; 7032 | } 7033 | .tab-content .tab-content:last-child { 7034 | margin-bottom: 0; 7035 | } 7036 | 7037 | .page-content-main section[class^=col-] + section[class^=col-] { 7038 | padding-top: 20px; 7039 | } 7040 | 7041 | .brand-logo { 7042 | display: none; 7043 | } 7044 | @media (min-width: 768px) { 7045 | .brand-logo { 7046 | display: inline-block; 7047 | } 7048 | } 7049 | 7050 | .brand-icon { 7051 | display: inline-block; 7052 | } 7053 | @media (min-width: 768px) { 7054 | .brand-icon { 7055 | display: none; 7056 | } 7057 | } 7058 | 7059 | @media (min-width: 768px) { 7060 | .col-sm-disable-spacer { 7061 | padding-top: 0 !important; 7062 | } 7063 | } 7064 | 7065 | @media (min-width: 992px) { 7066 | .col-md-disable-spacer { 7067 | padding-top: 0 !important; 7068 | } 7069 | } 7070 | 7071 | @media (min-width: 1200px) { 7072 | .col-lg-disable-spacer { 7073 | padding-top: 0 !important; 7074 | } 7075 | } 7076 | 7077 | .page-login { 7078 | background: var(--bg); 7079 | } 7080 | .page-login .container { 7081 | min-height: 100%; 7082 | margin-bottom: -60px; 7083 | } 7084 | .page-login .container:after { 7085 | height: 60px; 7086 | } 7087 | 7088 | .login-foot { 7089 | font-size: 12px; 7090 | } 7091 | 7092 | .login-modal-container { 7093 | background: var(--hbg); 7094 | border: 1px solid var(-bg); 7095 | max-width: 400px; 7096 | margin: 100px auto 15px auto; 7097 | } 7098 | .login-modal-head { 7099 | background: var(--hbg); 7100 | height: 75px; 7101 | padding: 0 20px; 7102 | } 7103 | .login-modal-content { 7104 | padding: 20px 20px 20px 20px; 7105 | } 7106 | .login-modal-foot { 7107 | background: #F7F7F7; 7108 | border-top: 1px solid #E5E5E5; 7109 | height: 60px; 7110 | padding: 20px 20px 0 20px; 7111 | } 7112 | .login-modal-foot a { 7113 | color: #7D7D7D; 7114 | text-decoration: none; 7115 | } 7116 | .login-modal-foot a:hover { 7117 | color: #646464; 7118 | text-decoration: underline; 7119 | } 7120 | 7121 | @media (min-width: 768px) { 7122 | .list-inline .btn-group-container { 7123 | float: right; 7124 | } 7125 | } 7126 | 7127 | .btn.btn-fixed { 7128 | max-width: 174px; 7129 | width: 100%; 7130 | } 7131 | 7132 | .progress-bar-placeholder { 7133 | font-size: 12px; 7134 | position: absolute; 7135 | text-align: center; 7136 | width: 100%; 7137 | z-index: 1; 7138 | } 7139 | 7140 | /* BOOTSTRAP EDIT */ 7141 | .list-group-item { 7142 | border-left: none; 7143 | border-right: none; 7144 | } 7145 | .list-group-item.collapsed .caret { 7146 | border-bottom: 4px solid green; 7147 | border-top: 0; 7148 | } 7149 | 7150 | /* COLLAPSE SIDEBAR */ 7151 | main.page-content.col-lg-12 { 7152 | padding-left: 90px; 7153 | } 7154 | 7155 | #navigation.col-sidebar-left { 7156 | width: 70px; 7157 | overflow: hidden; 7158 | background-color: transparent !important; 7159 | border: none !important; 7160 | } 7161 | #navigation.col-sidebar-left > div.row { 7162 | height: 100% !important; 7163 | } 7164 | #navigation.col-sidebar-left > div.row > nav.page-side-nav { 7165 | width: 70px; 7166 | height: 100% !important; 7167 | border-right: 1px solid #D9D9D9; 7168 | } 7169 | #navigation.col-sidebar-left > div > nav > #mainmenu > div > a.list-group-item { 7170 | font-size: 14px; 7171 | text-align: center; 7172 | width: 70px; 7173 | height: 70px; 7174 | padding-left: 0px; 7175 | padding-right: 0px; 7176 | padding-top: 12px; 7177 | border-bottom: 2px solid var(--bg); 7178 | 7179 | } 7180 | #navigation.col-sidebar-left > div > nav > #mainmenu > div > a.list-group-item > span.fa, #navigation.col-sidebar-left > div > nav > #mainmenu > div > a.list-group-item > span.glyphicon { 7181 | visibility: visible; 7182 | font-size: 20px; 7183 | } 7184 | #navigation.col-sidebar-left > div > nav > #mainmenu > div > a.list-group-item > span.__iconspacer { 7185 | width: 50px; 7186 | height: 30px; 7187 | padding: 0px; 7188 | } 7189 | #navigation.col-sidebar-left > div > nav > #mainmenu > div > div.collapsing > a.list-group-item { 7190 | padding-left: 10px !important; 7191 | font-size: 14px !important; 7192 | display: block !important; 7193 | position: absolute !important; 7194 | left: 70px !important; 7195 | } 7196 | #navigation.col-sidebar-left > div > nav > #mainmenu > div > div.collapse.in > div.collapsing > a.list-group-item { 7197 | padding-left: 10px !important; 7198 | font-size: 14px !important; 7199 | display: block !important; 7200 | position: absolute !important; 7201 | left: 166px !important; 7202 | } 7203 | #navigation.col-sidebar-left > div > nav > #mainmenu > div > div.collapse.in > a.list-group-item, #navigation.col-sidebar-left > div > nav > #mainmenu > div > div.collapse.in > div.collapse.in > a.list-group-item { 7204 | background-color: var(--hbg); !important; 7205 | } 7206 | #navigation.col-sidebar-left > div > nav > #mainmenu > div > div.collapse.in > div.collapse.in > a.list-group-item { 7207 | padding-left: 10px !important; 7208 | font-size: 14px !important; 7209 | } 7210 | #navigation.col-sidebar-left > div > nav > #mainmenu > div > div.collapse > div.collapse > a.list-group-item, #navigation.col-sidebar-left > div > nav > #mainmenu > div > div.collapse > a.list-group-item { 7211 | padding-left: 10px !important; 7212 | font-size: 14px !important; 7213 | } 7214 | #navigation.col-sidebar-left > div > nav > #mainmenu > div > div.collapsed > a.list-group-item { 7215 | padding-left: 10px !important; 7216 | font-size: 14px !important; 7217 | } 7218 | #navigation.col-sidebar-left > div > nav > #mainmenu > div > div.collapse > a.list-group-item, #navigation.col-sidebar-left > div > nav > #mainmenu > div > div.collapse > div.collapse > a.list-group-item { 7219 | padding: 3px 8px !important; 7220 | } 7221 | #navigation.col-sidebar-left > div > nav > #mainmenu > div > div.collapse.in { 7222 | width: 168px; 7223 | font-size: 14px; 7224 | z-index: 10; 7225 | position: absolute; 7226 | left: 70px; 7227 | margin-top: -70px; 7228 | border: 1px solid #eaeaea; 7229 | -webkit-box-shadow: 2px 2px 1px 0px rgba(234, 234, 234, 0.5); 7230 | -moz-box-shadow: 2px 2px 1px 0px rgba(234, 234, 234, 0.5); 7231 | box-shadow: 2px 2px 1px 0px rgba(234, 234, 234, 0.5); 7232 | } 7233 | #navigation.col-sidebar-left > div > nav > #mainmenu > div > div.collapse.in > div.collapse.in { 7234 | width: 168px; 7235 | font-size: 14px; 7236 | z-index: 10; 7237 | position: absolute; 7238 | left: 166px; 7239 | margin-top: -26px; 7240 | border: 1px solid #eaeaea; 7241 | -webkit-box-shadow: 2px 2px 1px 0px rgba(234, 234, 234, 0.5); 7242 | -moz-box-shadow: 2px 2px 1px 0px rgba(234, 234, 234, 0.5); 7243 | box-shadow: 2px 2px 1px 0px rgba(234, 234, 234, 0.5); 7244 | } 7245 | #navigation.col-sidebar-left > div > nav > #mainmenu > div > div.collapsing, #navigation.col-sidebar-left > div > nav > #mainmenu > div > div.collapse.in > div.collapsing { 7246 | display: none; 7247 | } 7248 | 7249 | button.toggle-sidebar { 7250 | color: var(--fg); 7251 | background-color: transparent; 7252 | font-size: 14px; 7253 | border: none; 7254 | margin-top: 18px; 7255 | float: left; 7256 | outline: none; 7257 | } 7258 | 7259 | /* COLLAPSE SIDEBAR END*/ 7260 | #navigation.collapse.in { 7261 | display: block !important; 7262 | } 7263 | 7264 | .list-group-submenu .list-group-item:last-child, 7265 | .collapse .list-group-item:last-child { 7266 | border-bottom: none; 7267 | } 7268 | 7269 | ul.nav > li.dropdown > ul.dropdown-menu > li > a { 7270 | padding: 3px 10px; 7271 | } 7272 | 7273 | .nav-tabs { 7274 | margin-right: 1px; 7275 | border-bottom: 1px solid nav(--bg); 7276 | } 7277 | 7278 | .nav-tabs > li { 7279 | border-radius: 0px; 7280 | border-top-right-radius: 0px; 7281 | margin-right: 2px; 7282 | } 7283 | 7284 | .nav-tabs > li > a { 7285 | background: var(--bg); 7286 | color: var(--fg); 7287 | border-radius: 0px; 7288 | border-top-right-radius: 0px; 7289 | margin-right: 0px; 7290 | } 7291 | 7292 | .nav-tabs > li > a, 7293 | .nav-tabs > li > a:hover, 7294 | .nav-tabs > li > a:focus { 7295 | border-right: 1px solid var(--bg); 7296 | border-top: 1px solid var(--bg); 7297 | border-left: 1px solid var(--bg); 7298 | border-bottom: 1px solid var(--bg); 7299 | 7300 | } 7301 | 7302 | .nav-tabs > li > a:hover { 7303 | background: var(--dbg); 7304 | } 7305 | 7306 | .nav-tabs > li.active > a { 7307 | background: var(--sbg) !important; 7308 | color: var(--fg) 7309 | } 7310 | 7311 | .nav-tabs > li.active > a:hover { 7312 | background: var(--hbbg) !important; 7313 | border-right: 1px solid var(--hbbg) !important; 7314 | border-top: 1px solid var(--hbbg) !important; 7315 | border-left: 1px solid var(--hbbg) !important; 7316 | color: var(--fg) 7317 | } 7318 | 7319 | .nav-tabs > li.active > a, 7320 | .nav-tabs > li.active > a:hover, 7321 | .nav-tabs > li.active > a:focus { 7322 | background: var(--dbg); 7323 | border-right: 1px solid var(--sbg); 7324 | border-top: 1px solid var(--sbg); 7325 | border-left: 1px solid var(--sbg); 7326 | } 7327 | 7328 | .nav-tabs > li > a.visible-lg-inline-block:not(.pull-right) { 7329 | border-top-right-radius: 0px !important; 7330 | padding-left: 10px !important; 7331 | padding-right: 5px !important; 7332 | } 7333 | 7334 | .nav-tabs > li > a.visible-lg-inline-block.pull-right { 7335 | border-left: 0px !important; 7336 | padding-left: 5px !important; 7337 | padding-right: 10px !important; 7338 | } 7339 | 7340 | .nav-tabs.nav-justified { 7341 | border-right: 1px solid #E5E5E5; 7342 | } 7343 | .nav-tabs.nav-justified > li { 7344 | border-bottom: 1px solid #E5E5E5; 7345 | border-top: 1px solid #E5E5E5; 7346 | border-left: 1px solid #E5E5E5; 7347 | border-radius: 0; 7348 | background: #F7F7F7; 7349 | } 7350 | .nav-tabs.nav-justified > li > a { 7351 | color: #3C3C3B; 7352 | font-family: SegoeUI, "Helvetica Neue", Helvetica, Arial, sans-serif; 7353 | } 7354 | @media (min-width: 768px) { 7355 | .nav-tabs.nav-justified > li > a { 7356 | border-bottom: 1px solid transparent; 7357 | } 7358 | } 7359 | @media (max-width: 767px) { 7360 | .nav-tabs.nav-justified > li.active > a { 7361 | border-right: 0 !important; 7362 | } 7363 | } 7364 | 7365 | @media (min-width: 768px) { 7366 | > li.active + li > a { 7367 | border-left: 1px solid transparent; 7368 | } 7369 | } 7370 | 7371 | > li:last-child > a { 7372 | border-right: 1px solid transparent !important; 7373 | } 7374 | @media (max-width: 767px) { 7375 | > li:last-child > a { 7376 | margin-bottom: 0; 7377 | } 7378 | } 7379 | 7380 | .btn .glyphicon { 7381 | vertical-align: -1px; 7382 | } 7383 | 7384 | .btn-default .glyphicon { 7385 | color: #757575; 7386 | } 7387 | 7388 | table { 7389 | width: 100%; 7390 | } 7391 | 7392 | .table { 7393 | margin-bottom: 0px !important; 7394 | } 7395 | 7396 | .nav-tabs-justified .nav-tabs.nav-justified > .active > a:focus, .nav-tabs.nav-justified .nav-tabs.nav-justified > .active > a:focus { 7397 | border: 0px !important; 7398 | } 7399 | 7400 | .table th, strong, b { 7401 | font-family: SegoeUI, "Helvetica Neue", Helvetica, Arial, sans-serif; 7402 | font-weight: normal; 7403 | } 7404 | 7405 | .table > tbody > tr > td:last-child { 7406 | padding-right: 15px; 7407 | } 7408 | 7409 | /* helpers */ 7410 | .__nowrap { 7411 | white-space: nowrap; 7412 | } 7413 | 7414 | .__nomb { 7415 | margin-bottom: 0; 7416 | } 7417 | 7418 | .__mb { 7419 | margin-bottom: 15px; 7420 | } 7421 | 7422 | .__mt { 7423 | margin-top: 15px; 7424 | } 7425 | 7426 | .__ml { 7427 | margin-left: 15px; 7428 | } 7429 | 7430 | .__mr { 7431 | margin-right: 15px; 7432 | } 7433 | 7434 | .__iconspacer { 7435 | padding-right: 10px; 7436 | } 7437 | 7438 | #mainmenu .glyphicon { 7439 | vertical-align: -2px; 7440 | } 7441 | 7442 | .list-group-item { 7443 | overflow: hidden; 7444 | text-overflow: ellipsis; 7445 | } 7446 | .list-group-item + div.collapse { 7447 | margin-bottom: -1px; 7448 | } 7449 | .list-group-item + div > a { 7450 | padding-left: 44px; 7451 | } 7452 | .list-group-item:before { 7453 | background: var(--bg); 7454 | content: ""; 7455 | height: 42px; 7456 | min-height: 100%; 7457 | left: 0; 7458 | position: absolute; 7459 | top: 0px; 7460 | width: 0; 7461 | -webkit-transition: width 0.2s; 7462 | -moz-transition: width 0.2s; 7463 | -o-transition: width 0.2s; 7464 | transition: width 0.2s; 7465 | } 7466 | 7467 | .list-group-submenu a { 7468 | padding-left: 56px; 7469 | } 7470 | 7471 | .active-menu-title, .active-menu a { 7472 | text-decoration: none; 7473 | position: relative; 7474 | background-color: var(--bg); 7475 | } 7476 | .active-menu-title:before, .active-menu a:before { 7477 | width: 3px; 7478 | } 7479 | .active-menu-title.active { 7480 | background-color: var(--bg); 7481 | } 7482 | 7483 | .active-menu a.active { 7484 | background-color: var(--sbg); 7485 | color: var(--hfg); 7486 | } 7487 | 7488 | .active-menu a.active:hover { 7489 | background-color: var(--hbbg); 7490 | color: var(--hfg); 7491 | } 7492 | 7493 | .active-menu a:before { 7494 | background: var(--bg); 7495 | } 7496 | 7497 | .alert.alert-danger { 7498 | color: #FFF !important; 7499 | } 7500 | 7501 | .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { 7502 | border-radius: 0 !important; 7503 | } 7504 | 7505 | .navbar-brand { 7506 | padding: 10px 20px; 7507 | } 7508 | 7509 | .label-opnsense { 7510 | /* emulates btn */ 7511 | border: 1px solid transparent; 7512 | display: inline-block; 7513 | vertical-align: middle; 7514 | font-size: 12px; 7515 | /*line-height: 1.5;*/ 7516 | border-radius: 0; 7517 | } 7518 | 7519 | .label-opnsense-sm { 7520 | /* emulates btn-sm */ 7521 | padding: 5px 10px; 7522 | } 7523 | 7524 | .label-opnsense-xs, 7525 | .btn-xs, 7526 | .btn-group-xs > .btn { 7527 | /* emulates btn-xs */ 7528 | padding: 4px 3px; 7529 | } 7530 | 7531 | ::-webkit-scrollbar { 7532 | width: 8px; 7533 | } 7534 | 7535 | ::-webkit-scrollbar-button { 7536 | width: 8px; 7537 | height: 5px; 7538 | } 7539 | 7540 | ::-webkit-scrollbar-track { 7541 | background: #f7f7f7; 7542 | box-shadow: 0px 0px 0px; 7543 | border-radius: 0; 7544 | } 7545 | 7546 | ::-webkit-scrollbar-thumb { 7547 | background: #e5e5e5; 7548 | border: thin solid #e5e5e5; 7549 | border-radius: 0px; 7550 | } 7551 | 7552 | ::-webkit-scrollbar-thumb:hover { 7553 | background: #e5e5e5; 7554 | } 7555 | 7556 | .widgetdiv { 7557 | padding-top: 0px !important; 7558 | padding-bottom: 20px; 7559 | } 7560 | 7561 | select { 7562 | overflow: hidden; 7563 | border: 1px solid var(--dbg); 7564 | -webkit-appearance: none; 7565 | -moz-appearance: none; 7566 | appearance: none; 7567 | cursor: pointer; 7568 | background-repeat: no-repeat; 7569 | background-position: right; 7570 | background-image: url(/ui/themes/opnsense/build/images/caret.png) !important; 7571 | } 7572 | 7573 | #grid-log th[data-column-id=__timestamp__], 7574 | #filter-log-entries th[data-column-id=__timestamp__] { 7575 | min-width: 3.5em; 7576 | } 7577 | 7578 | @media screen and (max-width: 767px) { 7579 | .table-responsive { 7580 | margin-bottom: 0; 7581 | } 7582 | .table-responsive > .table > thead > tr > th, 7583 | .table-responsive > .table > thead > tr > td, 7584 | .table-responsive > .table > tbody > tr > th, 7585 | .table-responsive > .table > tbody > tr > td, 7586 | .table-responsive > .table > tfoot > tr > th, 7587 | .table-responsive > .table > tfoot > tr > td { 7588 | white-space: normal; 7589 | } 7590 | } 7591 | 7592 | label > input[type=checkbox], 7593 | label > input[type=radio] { 7594 | margin-right: 0.4em; 7595 | float: left; 7596 | 7597 | } 7598 | 7599 | div[data-for*=help_for] { 7600 | padding-top: 0.4em; 7601 | } 7602 | 7603 | #log-settings label[for^=act] { 7604 | margin-right: 1.5em; 7605 | } 7606 | 7607 | #log-settings table > tbody > tr > td { 7608 | vertical-align: middle; 7609 | } 7610 | 7611 | #log-settings select#filterlogentries, 7612 | #log-settings select#filterlogentriesupdateinterval { 7613 | width: 5em; 7614 | } 7615 | 7616 | #log-settings select#filterlogentriesinterfaces { 7617 | min-width: 100%; 7618 | max-width: 100%; 7619 | } 7620 | 7621 | /* fields in firewall schedule */ 7622 | [data-state=lightcoral] { 7623 | background-color: lightcoral; 7624 | } 7625 | 7626 | [data-state=white] { 7627 | background-color: white; 7628 | } 7629 | 7630 | [data-state=red] { 7631 | background-color: red; 7632 | } 7633 | 7634 | .tokens-container { 7635 | margin-top: 0px; 7636 | margin-bottom: 0px; 7637 | } 7638 | 7639 | .fa-toggle-on { color: var(--bbg) !important;} 7640 | .fa-toggle-on:hover { color: var(--hbbg) !important;} 7641 | 7642 | .fa-toggle-off { color: var(--bbg) !important;} 7643 | .fa-toggle-off:hover { color: var(--hbbg) !important;} 7644 | 7645 | .fa-info-circle { color: var(--bbg) !important;} 7646 | .fa-info-circle:hover { color: var(--hbbg) !important;} 7647 | 7648 | .fa-info-circle.text-muted { color: var(--bg) !important;} 7649 | .fa-info-circle.text-muted:hover { color: var(--bg) !important;} 7650 | 7651 | .btn.btn-default.btn-xs:hover { background: var(--dbg) !important; } 7652 | 7653 | .modal-header {background: var(--hbg) !important;} 7654 | .bootstrap-dialog-title {font-size: 150% !important;} 7655 | #update_status.form-control {background: var(--hbg);} 7656 | 7657 | tr.phase1_tr >td {background-color:var(--hbg) !important;} 7658 | 7659 | .tokenize > .tokens-container > .token { 7660 | background-color: var(--bbg) !important; 7661 | color: var(--fg) !important; 7662 | } 7663 | .tokenize.focus > .tokens-container { 7664 | border-color: var(--bbg) !important; 7665 | box-shadow: none !important; 7666 | } 7667 | .tokenize > .tokens-container > .token, 7668 | .tokenize > .tokens-container > .placeholder, 7669 | .tokenize > .tokens-container > .token-search { 7670 | border: 1px solid var(---bbg) !important; 7671 | } 7672 | .tokenize > .tokens-container > .token > .dismiss { 7673 | color: var(--fg) !important; 7674 | } --------------------------------------------------------------------------------