├── .gitignore ├── app └── app.tsx ├── .vscode ├── settings.json └── tasks.json ├── public ├── index.html └── css │ └── bootstrap.css ├── tsconfig.json ├── webpack.config.js ├── package.json ├── README.md └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | public/js/app/ 3 | temp/ 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /app/app.tsx: -------------------------------------------------------------------------------- 1 | import * as React from "react"; 2 | import * as ReactDOM from "react-dom"; 3 | 4 | const Demo = ({name} : {name: string}) =>
Hello {name}!
; 5 | 6 | ReactDOM.render( 7 | , 8 | document.getElementById("app") 9 | ); 10 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | // Place your settings in this file to overwrite default and user settings. 2 | { 3 | "editor.tabSize": 2, 4 | "editor.insertSpaces": true, 5 | "typescript.tsdk": "node_modules/typescript/lib", 6 | "files.exclude": { 7 | "temp/": true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | My First React App 7 | 8 | 9 | 10 | 11 |
12 |

My First React App

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