praxis 0.13.0 → 0.14.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (135) hide show
  1. checksums.yaml +4 -4
  2. data/.ruby-version +1 -1
  3. data/.travis.yml +15 -2
  4. data/CHANGELOG.md +54 -1
  5. data/bin/praxis +49 -2
  6. data/lib/api_browser/Gruntfile.js +247 -90
  7. data/lib/api_browser/app/bower_components/angular-mocks/.bower.json +19 -0
  8. data/lib/api_browser/app/bower_components/angular-mocks/README.md +57 -0
  9. data/lib/api_browser/app/bower_components/angular-mocks/angular-mocks.js +2193 -0
  10. data/lib/api_browser/app/bower_components/angular-mocks/bower.json +9 -0
  11. data/lib/api_browser/app/bower_components/angular-mocks/package.json +27 -0
  12. data/lib/api_browser/app/bower_components/angular/.bower.json +6 -5
  13. data/lib/api_browser/app/bower_components/angular/README.md +23 -4
  14. data/lib/api_browser/app/bower_components/angular/angular-csp.css +6 -0
  15. data/lib/api_browser/app/bower_components/angular/angular.js +2287 -1597
  16. data/lib/api_browser/app/bower_components/angular/angular.min.js +212 -205
  17. data/lib/api_browser/app/bower_components/angular/angular.min.js.gzip +0 -0
  18. data/lib/api_browser/app/bower_components/angular/angular.min.js.map +3 -3
  19. data/lib/api_browser/app/bower_components/angular/bower.json +2 -1
  20. data/lib/api_browser/app/bower_components/angular/package.json +25 -0
  21. data/lib/api_browser/app/bower_components/showdown/.bower.json +39 -0
  22. data/lib/api_browser/app/bower_components/showdown/.jshintignore +2 -0
  23. data/lib/api_browser/app/bower_components/showdown/.travis.yml +8 -0
  24. data/lib/api_browser/app/bower_components/showdown/Gruntfile.js +100 -0
  25. data/lib/api_browser/app/bower_components/showdown/README.md +317 -0
  26. data/lib/api_browser/app/bower_components/showdown/bower.json +26 -0
  27. data/lib/api_browser/app/bower_components/showdown/compressed/Showdown.js +1606 -0
  28. data/lib/api_browser/app/bower_components/showdown/compressed/Showdown.js.map +1 -0
  29. data/lib/api_browser/app/bower_components/showdown/compressed/Showdown.min.js +2 -0
  30. data/lib/api_browser/app/bower_components/showdown/compressed/extensions/github.min.js +2 -0
  31. data/lib/api_browser/app/bower_components/showdown/compressed/extensions/github.min.js.map +1 -0
  32. data/lib/api_browser/app/bower_components/showdown/compressed/extensions/prettify.min.js +2 -0
  33. data/lib/api_browser/app/bower_components/showdown/compressed/extensions/prettify.min.js.map +1 -0
  34. data/lib/api_browser/app/bower_components/showdown/compressed/extensions/table.min.js +2 -0
  35. data/lib/api_browser/app/bower_components/showdown/compressed/extensions/table.min.js.map +1 -0
  36. data/lib/api_browser/app/bower_components/showdown/compressed/extensions/twitter.min.js +2 -0
  37. data/lib/api_browser/app/bower_components/showdown/compressed/extensions/twitter.min.js.map +1 -0
  38. data/lib/api_browser/app/bower_components/showdown/license.txt +34 -0
  39. data/lib/api_browser/app/bower_components/showdown/package.json +47 -0
  40. data/lib/api_browser/app/bower_components/showdown/src/extensions/github.js +25 -0
  41. data/lib/api_browser/app/bower_components/showdown/src/extensions/prettify.js +29 -0
  42. data/lib/api_browser/app/bower_components/showdown/src/extensions/table.js +106 -0
  43. data/lib/api_browser/app/bower_components/showdown/src/extensions/twitter.js +42 -0
  44. data/lib/api_browser/app/bower_components/showdown/src/ng-showdown.js +150 -0
  45. data/lib/api_browser/app/bower_components/showdown/src/showdown.js +1454 -0
  46. data/lib/api_browser/app/index.html +6 -4
  47. data/lib/api_browser/app/js/app.js +1 -2
  48. data/lib/api_browser/app/js/controllers/action.js +4 -4
  49. data/lib/api_browser/app/js/controllers/controller.js +1 -1
  50. data/lib/api_browser/app/js/controllers/menu.js +5 -3
  51. data/lib/api_browser/app/js/controllers/type.js +5 -5
  52. data/lib/api_browser/app/js/directives/attribute_description.js +5 -5
  53. data/lib/api_browser/app/js/directives/attribute_table.js +1 -1
  54. data/lib/api_browser/app/js/directives/attribute_table_row.js +2 -2
  55. data/lib/api_browser/app/js/directives/no_container.js +1 -1
  56. data/lib/api_browser/app/js/directives/request_body.js +5 -5
  57. data/lib/api_browser/app/js/directives/request_headers.js +3 -6
  58. data/lib/api_browser/app/js/directives/request_parameters.js +3 -6
  59. data/lib/api_browser/app/js/directives/type_label.js +4 -5
  60. data/lib/api_browser/app/js/factories/Documentation.js +4 -4
  61. data/lib/api_browser/app/js/factories/PayloadTemplates.js +2 -2
  62. data/lib/api_browser/app/js/factories/TypeTemplates.js +3 -3
  63. data/lib/api_browser/app/js/filters/markdown.js +6 -0
  64. data/lib/api_browser/app/js/filters/resource_name.js +2 -2
  65. data/lib/api_browser/app/sass/modules/_header.scss +2 -7
  66. data/lib/api_browser/app/sass/{main.scss → praxis.scss} +0 -0
  67. data/lib/api_browser/app/sass/variables/_bootstrap-variables.scss +370 -367
  68. data/lib/api_browser/app/views/action.html +2 -2
  69. data/lib/api_browser/app/views/controller.html +2 -2
  70. data/lib/api_browser/app/views/directives/attribute_description.html +1 -1
  71. data/lib/api_browser/app/views/layout.html +2 -11
  72. data/lib/api_browser/app/views/navbar.html +9 -0
  73. data/lib/api_browser/app/views/resource/_actions.html +1 -1
  74. data/lib/api_browser/app/views/type.html +2 -2
  75. data/lib/api_browser/app/views/type/_details.html +2 -1
  76. data/lib/api_browser/bower.json +5 -0
  77. data/lib/api_browser/package.json +18 -7
  78. data/lib/praxis.rb +8 -3
  79. data/lib/praxis/action_definition.rb +28 -6
  80. data/lib/praxis/api_definition.rb +30 -2
  81. data/lib/praxis/api_general_info.rb +36 -0
  82. data/lib/praxis/bootloader.rb +1 -0
  83. data/lib/praxis/collection.rb +34 -0
  84. data/lib/praxis/controller.rb +7 -0
  85. data/lib/praxis/dispatcher.rb +3 -0
  86. data/lib/praxis/links.rb +2 -8
  87. data/lib/praxis/media_type.rb +6 -24
  88. data/lib/praxis/media_type_collection.rb +6 -2
  89. data/lib/praxis/plugin_concern.rb +2 -1
  90. data/lib/praxis/request.rb +24 -15
  91. data/lib/praxis/request_stages/request_stage.rb +19 -4
  92. data/lib/praxis/request_stages/validate_params_and_headers.rb +1 -1
  93. data/lib/praxis/request_stages/validate_payload.rb +1 -1
  94. data/lib/praxis/resource_definition.rb +45 -10
  95. data/lib/praxis/response_definition.rb +46 -27
  96. data/lib/praxis/restful_doc_generator.rb +94 -7
  97. data/lib/praxis/simple_media_type.rb +2 -9
  98. data/lib/praxis/stage.rb +1 -4
  99. data/lib/praxis/tasks/api_docs.rb +51 -19
  100. data/lib/praxis/tasks/routes.rb +19 -15
  101. data/lib/praxis/types/media_type_common.rb +31 -0
  102. data/lib/praxis/types/multipart.rb +4 -4
  103. data/lib/praxis/version.rb +1 -1
  104. data/praxis.gemspec +2 -2
  105. data/spec/api_browser/factories/documentation_spec.js +50 -0
  106. data/spec/api_browser/filters/attribute_name_spec.js +23 -0
  107. data/spec/functional_spec.rb +62 -10
  108. data/spec/praxis/action_definition_spec.rb +12 -4
  109. data/spec/praxis/api_definition_spec.rb +159 -0
  110. data/spec/praxis/api_general_info_spec.rb +36 -0
  111. data/spec/praxis/bootloader_spec.rb +10 -1
  112. data/spec/praxis/media_type_collection_spec.rb +46 -53
  113. data/spec/praxis/media_type_spec.rb +6 -6
  114. data/spec/praxis/request_stage_spec.rb +7 -2
  115. data/spec/praxis/request_stages_validate_spec.rb +12 -7
  116. data/spec/praxis/resource_definition_spec.rb +62 -0
  117. data/spec/praxis/response_definition_spec.rb +26 -16
  118. data/spec/praxis/stage_spec.rb +4 -8
  119. data/spec/praxis/types/collection_spec.rb +144 -0
  120. data/spec/spec_app/app/controllers/instances.rb +8 -2
  121. data/spec/spec_app/design/api.rb +11 -0
  122. data/spec/spec_app/design/media_types/instance.rb +12 -0
  123. data/spec/spec_app/design/media_types/volume.rb +9 -2
  124. data/spec/spec_app/design/media_types/volume_snapshot.rb +9 -6
  125. data/spec/spec_app/design/resources/instances.rb +25 -10
  126. data/spec/support/spec_media_types.rb +1 -1
  127. data/spec/support/spec_resource_definitions.rb +2 -0
  128. data/tasks/thor/app.rb +15 -10
  129. data/tasks/thor/example.rb +115 -115
  130. data/tasks/thor/templates/generator/empty_app/.gitignore +2 -0
  131. data/tasks/thor/templates/generator/empty_app/docs/app.js +1 -0
  132. data/tasks/thor/templates/generator/empty_app/docs/styles.scss +3 -0
  133. metadata +50 -9
  134. data/lib/api_browser/app/css/main.css +0 -4511
  135. data/lib/praxis/types/collection.rb +0 -17
@@ -1,3 +1,5 @@
1
1
  log
2
2
  .bundle
3
3
  api_docs
4
+ docs/output
5
+ docs/json
@@ -0,0 +1 @@
1
+ angular.module('DocBrowser', ['PraxisDocBrowser']);
@@ -0,0 +1,3 @@
1
+ // Customise variables here
2
+ @import "praxis.scss";
3
+ // Override styles here
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: praxis
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.0
4
+ version: 0.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josep M. Blanquer
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-02-11 00:00:00.000000000 Z
12
+ date: 2015-03-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rack
@@ -87,28 +87,28 @@ dependencies:
87
87
  requirements:
88
88
  - - "~>"
89
89
  - !ruby/object:Gem::Version
90
- version: '1.2'
90
+ version: '1.3'
91
91
  type: :runtime
92
92
  prerelease: false
93
93
  version_requirements: !ruby/object:Gem::Requirement
94
94
  requirements:
95
95
  - - "~>"
96
96
  - !ruby/object:Gem::Version
97
- version: '1.2'
97
+ version: '1.3'
98
98
  - !ruby/object:Gem::Dependency
99
99
  name: attributor
100
100
  requirement: !ruby/object:Gem::Requirement
101
101
  requirements:
102
102
  - - "~>"
103
103
  - !ruby/object:Gem::Version
104
- version: 2.5.0
104
+ version: 2.6.0
105
105
  type: :runtime
106
106
  prerelease: false
107
107
  version_requirements: !ruby/object:Gem::Requirement
108
108
  requirements:
109
109
  - - "~>"
110
110
  - !ruby/object:Gem::Version
111
- version: 2.5.0
111
+ version: 2.6.0
112
112
  - !ruby/object:Gem::Dependency
113
113
  name: thor
114
114
  requirement: !ruby/object:Gem::Requirement
@@ -416,6 +416,11 @@ files:
416
416
  - lib/api_browser/.bowerrc
417
417
  - lib/api_browser/.editorconfig
418
418
  - lib/api_browser/Gruntfile.js
419
+ - lib/api_browser/app/bower_components/angular-mocks/.bower.json
420
+ - lib/api_browser/app/bower_components/angular-mocks/README.md
421
+ - lib/api_browser/app/bower_components/angular-mocks/angular-mocks.js
422
+ - lib/api_browser/app/bower_components/angular-mocks/bower.json
423
+ - lib/api_browser/app/bower_components/angular-mocks/package.json
419
424
  - lib/api_browser/app/bower_components/angular-sanitize/.bower.json
420
425
  - lib/api_browser/app/bower_components/angular-sanitize/README.md
421
426
  - lib/api_browser/app/bower_components/angular-sanitize/angular-sanitize.js
@@ -455,6 +460,7 @@ files:
455
460
  - lib/api_browser/app/bower_components/angular/angular.min.js.gzip
456
461
  - lib/api_browser/app/bower_components/angular/angular.min.js.map
457
462
  - lib/api_browser/app/bower_components/angular/bower.json
463
+ - lib/api_browser/app/bower_components/angular/package.json
458
464
  - lib/api_browser/app/bower_components/bootstrap-sass/.bower.json
459
465
  - lib/api_browser/app/bower_components/bootstrap-sass/CNAME
460
466
  - lib/api_browser/app/bower_components/bootstrap-sass/CONTRIBUTING.md
@@ -732,7 +738,31 @@ files:
732
738
  - lib/api_browser/app/bower_components/lodash/dist/lodash.min.js
733
739
  - lib/api_browser/app/bower_components/lodash/dist/lodash.underscore.js
734
740
  - lib/api_browser/app/bower_components/lodash/dist/lodash.underscore.min.js
735
- - lib/api_browser/app/css/main.css
741
+ - lib/api_browser/app/bower_components/showdown/.bower.json
742
+ - lib/api_browser/app/bower_components/showdown/.jshintignore
743
+ - lib/api_browser/app/bower_components/showdown/.travis.yml
744
+ - lib/api_browser/app/bower_components/showdown/Gruntfile.js
745
+ - lib/api_browser/app/bower_components/showdown/README.md
746
+ - lib/api_browser/app/bower_components/showdown/bower.json
747
+ - lib/api_browser/app/bower_components/showdown/compressed/Showdown.js
748
+ - lib/api_browser/app/bower_components/showdown/compressed/Showdown.js.map
749
+ - lib/api_browser/app/bower_components/showdown/compressed/Showdown.min.js
750
+ - lib/api_browser/app/bower_components/showdown/compressed/extensions/github.min.js
751
+ - lib/api_browser/app/bower_components/showdown/compressed/extensions/github.min.js.map
752
+ - lib/api_browser/app/bower_components/showdown/compressed/extensions/prettify.min.js
753
+ - lib/api_browser/app/bower_components/showdown/compressed/extensions/prettify.min.js.map
754
+ - lib/api_browser/app/bower_components/showdown/compressed/extensions/table.min.js
755
+ - lib/api_browser/app/bower_components/showdown/compressed/extensions/table.min.js.map
756
+ - lib/api_browser/app/bower_components/showdown/compressed/extensions/twitter.min.js
757
+ - lib/api_browser/app/bower_components/showdown/compressed/extensions/twitter.min.js.map
758
+ - lib/api_browser/app/bower_components/showdown/license.txt
759
+ - lib/api_browser/app/bower_components/showdown/package.json
760
+ - lib/api_browser/app/bower_components/showdown/src/extensions/github.js
761
+ - lib/api_browser/app/bower_components/showdown/src/extensions/prettify.js
762
+ - lib/api_browser/app/bower_components/showdown/src/extensions/table.js
763
+ - lib/api_browser/app/bower_components/showdown/src/extensions/twitter.js
764
+ - lib/api_browser/app/bower_components/showdown/src/ng-showdown.js
765
+ - lib/api_browser/app/bower_components/showdown/src/showdown.js
736
766
  - lib/api_browser/app/index.html
737
767
  - lib/api_browser/app/js/app.js
738
768
  - lib/api_browser/app/js/controllers/action.js
@@ -754,8 +784,8 @@ files:
754
784
  - lib/api_browser/app/js/filters/attribute_name.js
755
785
  - lib/api_browser/app/js/filters/friendly_json.js
756
786
  - lib/api_browser/app/js/filters/is_empty.js
787
+ - lib/api_browser/app/js/filters/markdown.js
757
788
  - lib/api_browser/app/js/filters/resource_name.js
758
- - lib/api_browser/app/sass/main.scss
759
789
  - lib/api_browser/app/sass/modules/_body.scss
760
790
  - lib/api_browser/app/sass/modules/_cloke.scss
761
791
  - lib/api_browser/app/sass/modules/_header.scss
@@ -763,6 +793,7 @@ files:
763
793
  - lib/api_browser/app/sass/modules/_sidebar.scss
764
794
  - lib/api_browser/app/sass/modules/_switch.scss
765
795
  - lib/api_browser/app/sass/modules/_table.scss
796
+ - lib/api_browser/app/sass/praxis.scss
766
797
  - lib/api_browser/app/sass/variables/_bootstrap-variables.scss
767
798
  - lib/api_browser/app/views/action.html
768
799
  - lib/api_browser/app/views/controller.html
@@ -778,6 +809,7 @@ files:
778
809
  - lib/api_browser/app/views/directives/request_body/_struct.html
779
810
  - lib/api_browser/app/views/home.html
780
811
  - lib/api_browser/app/views/layout.html
812
+ - lib/api_browser/app/views/navbar.html
781
813
  - lib/api_browser/app/views/resource/_actions.html
782
814
  - lib/api_browser/app/views/type.html
783
815
  - lib/api_browser/app/views/type/_details.html
@@ -787,6 +819,7 @@ files:
787
819
  - lib/praxis/action_definition.rb
788
820
  - lib/praxis/action_definition/headers_dsl_compiler.rb
789
821
  - lib/praxis/api_definition.rb
822
+ - lib/praxis/api_general_info.rb
790
823
  - lib/praxis/application.rb
791
824
  - lib/praxis/bootloader.rb
792
825
  - lib/praxis/bootloader_stages/environment.rb
@@ -799,6 +832,7 @@ files:
799
832
  - lib/praxis/bootloader_stages/subgroup_loader.rb
800
833
  - lib/praxis/bootloader_stages/warn_unloaded_files.rb
801
834
  - lib/praxis/callbacks.rb
835
+ - lib/praxis/collection.rb
802
836
  - lib/praxis/config.rb
803
837
  - lib/praxis/content_type_parser.rb
804
838
  - lib/praxis/controller.rb
@@ -850,12 +884,16 @@ files:
850
884
  - lib/praxis/tasks/console.rb
851
885
  - lib/praxis/tasks/environment.rb
852
886
  - lib/praxis/tasks/routes.rb
853
- - lib/praxis/types/collection.rb
887
+ - lib/praxis/types/media_type_common.rb
854
888
  - lib/praxis/types/multipart.rb
855
889
  - lib/praxis/version.rb
856
890
  - praxis.gemspec
891
+ - spec/api_browser/factories/documentation_spec.js
892
+ - spec/api_browser/filters/attribute_name_spec.js
857
893
  - spec/functional_spec.rb
858
894
  - spec/praxis/action_definition_spec.rb
895
+ - spec/praxis/api_definition_spec.rb
896
+ - spec/praxis/api_general_info_spec.rb
859
897
  - spec/praxis/api_resource_spec.rb
860
898
  - spec/praxis/application_spec.rb
861
899
  - spec/praxis/bootloader_spec.rb
@@ -886,6 +924,7 @@ files:
886
924
  - spec/praxis/router_spec.rb
887
925
  - spec/praxis/stage_spec.rb
888
926
  - spec/praxis/stats_spec.rb
927
+ - spec/praxis/types/collection_spec.rb
889
928
  - spec/praxis/types/multipart_spec.rb
890
929
  - spec/spec_app/app/concerns/authenticated.rb
891
930
  - spec/spec_app/app/concerns/basic_api.rb
@@ -944,6 +983,8 @@ files:
944
983
  - tasks/thor/templates/generator/empty_app/design/v1/media_types/.gitkeep
945
984
  - tasks/thor/templates/generator/empty_app/design/v1/resources/.empty_directory
946
985
  - tasks/thor/templates/generator/empty_app/design/v1/resources/.gitkeep
986
+ - tasks/thor/templates/generator/empty_app/docs/app.js
987
+ - tasks/thor/templates/generator/empty_app/docs/styles.scss
947
988
  - tasks/thor/templates/generator/empty_app/spec/spec_helper.rb
948
989
  homepage: https://github.com/rightscale/praxis
949
990
  licenses:
@@ -1,4511 +0,0 @@
1
- /*! normalize.css v2.1.3 | MIT License | git.io/normalize */
2
- article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
3
- display: block; }
4
-
5
- audio, canvas, video {
6
- display: inline-block; }
7
-
8
- audio:not([controls]) {
9
- display: none;
10
- height: 0; }
11
-
12
- [hidden], template {
13
- display: none; }
14
-
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
- a {
24
- background: transparent; }
25
-
26
- a:focus {
27
- outline: thin dotted; }
28
-
29
- a:active, a:hover {
30
- outline: 0; }
31
-
32
- h1 {
33
- font-size: 2em;
34
- margin: 0.67em 0; }
35
-
36
- abbr[title] {
37
- border-bottom: 1px dotted; }
38
-
39
- b, strong {
40
- font-weight: bold; }
41
-
42
- dfn {
43
- font-style: italic; }
44
-
45
- hr {
46
- -moz-box-sizing: content-box;
47
- box-sizing: content-box;
48
- height: 0; }
49
-
50
- mark {
51
- background: #ff0;
52
- color: #000; }
53
-
54
- code, kbd, pre, samp {
55
- font-family: monospace, serif;
56
- font-size: 1em; }
57
-
58
- pre {
59
- white-space: pre-wrap; }
60
-
61
- q {
62
- quotes: "\201C" "\201D" "\2018" "\2019"; }
63
-
64
- small {
65
- font-size: 80%; }
66
-
67
- sub, sup {
68
- font-size: 75%;
69
- line-height: 0;
70
- position: relative;
71
- vertical-align: baseline; }
72
-
73
- sup {
74
- top: -0.5em; }
75
-
76
- sub {
77
- bottom: -0.25em; }
78
-
79
- img {
80
- border: 0; }
81
-
82
- svg:not(:root) {
83
- overflow: hidden; }
84
-
85
- figure {
86
- margin: 0; }
87
-
88
- fieldset {
89
- border: 1px solid #c0c0c0;
90
- margin: 0 2px;
91
- padding: 0.35em 0.625em 0.75em; }
92
-
93
- legend {
94
- border: 0;
95
- padding: 0; }
96
-
97
- button, input, select, textarea {
98
- font-family: inherit;
99
- font-size: 100%;
100
- margin: 0; }
101
-
102
- button, input {
103
- line-height: normal; }
104
-
105
- button, select {
106
- text-transform: none; }
107
-
108
- button, html input[type="button"], input[type="reset"], input[type="submit"] {
109
- -webkit-appearance: button;
110
- cursor: pointer; }
111
-
112
- button[disabled], html input[disabled] {
113
- cursor: default; }
114
-
115
- input[type="checkbox"], input[type="radio"] {
116
- box-sizing: border-box;
117
- padding: 0; }
118
-
119
- input[type="search"] {
120
- -webkit-appearance: textfield;
121
- -moz-box-sizing: content-box;
122
- -webkit-box-sizing: content-box;
123
- box-sizing: content-box; }
124
-
125
- input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
126
- -webkit-appearance: none; }
127
-
128
- button::-moz-focus-inner, input::-moz-focus-inner {
129
- border: 0;
130
- padding: 0; }
131
-
132
- textarea {
133
- overflow: auto;
134
- vertical-align: top; }
135
-
136
- table {
137
- border-collapse: collapse;
138
- border-spacing: 0; }
139
-
140
- @media print {
141
- @page {
142
- margin: 2cm 0.5cm; }
143
-
144
- * {
145
- text-shadow: none !important;
146
- color: #000 !important;
147
- background: transparent !important;
148
- box-shadow: none !important; }
149
- a, a:visited {
150
- text-decoration: underline; }
151
- a[href]:after {
152
- content: " (" attr(href) ")"; }
153
- abbr[title]:after {
154
- content: " (" attr(title) ")"; }
155
- a[href^="javascript:"]:after, a[href^="#"]:after {
156
- content: ""; }
157
- pre, blockquote {
158
- border: 1px solid #999;
159
- page-break-inside: avoid; }
160
- thead {
161
- display: table-header-group; }
162
- tr, img {
163
- page-break-inside: avoid; }
164
- img {
165
- max-width: 100% !important; }
166
- p, h2, h3 {
167
- orphans: 3;
168
- widows: 3; }
169
- h2, h3 {
170
- page-break-after: avoid; }
171
- select {
172
- background: #fff !important; }
173
- .navbar {
174
- display: none; }
175
- .table td, .table th {
176
- background-color: #fff !important; }
177
- .btn > .caret, .dropup > .btn > .caret {
178
- border-top-color: #000 !important; }
179
- .label {
180
- border: 1px solid #000; }
181
- .table {
182
- border-collapse: collapse !important; }
183
- .table-bordered th, .table-bordered td {
184
- border: 1px solid #ddd !important; } }
185
-
186
- *, *:before, *:after {
187
- -webkit-box-sizing: border-box;
188
- -moz-box-sizing: border-box;
189
- box-sizing: border-box; }
190
-
191
- html {
192
- font-size: 62.5%;
193
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
194
-
195
- body {
196
- font-family: Helvetica, arial, freesans, clean, sans-serif;
197
- font-size: 13px;
198
- line-height: 1.42857;
199
- color: #333333;
200
- background-color: #fff; }
201
-
202
- input, button, select, textarea {
203
- font-family: inherit;
204
- font-size: inherit;
205
- line-height: inherit; }
206
-
207
- a {
208
- color: #0069CC;
209
- text-decoration: none; }
210
- a:hover, a:focus {
211
- color: #004280;
212
- text-decoration: underline; }
213
- a:focus {
214
- outline: thin dotted #333;
215
- outline: 5px auto-webkit-focus-ring-color;
216
- outline-offset: -2px; }
217
-
218
- img {
219
- vertical-align: middle; }
220
-
221
- .img-responsive {
222
- display: block;
223
- max-width: 100%;
224
- height: auto; }
225
-
226
- .img-rounded {
227
- border-radius: 6px; }
228
-
229
- .img-thumbnail, .thumbnail {
230
- padding: 4px;
231
- line-height: 1.42857;
232
- background-color: #fff;
233
- border: 1px solid #ddd;
234
- border-radius: 4px;
235
- -webkit-transition: all 0.2s ease-in-out;
236
- transition: all 0.2s ease-in-out;
237
- display: inline-block;
238
- max-width: 100%;
239
- height: auto; }
240
-
241
- .img-circle {
242
- border-radius: 50%; }
243
-
244
- hr {
245
- margin-top: 18px;
246
- margin-bottom: 18px;
247
- border: 0;
248
- border-top: 1px solid #eeeeee; }
249
-
250
- .sr-only {
251
- position: absolute;
252
- width: 1px;
253
- height: 1px;
254
- margin: -1px;
255
- padding: 0;
256
- overflow: hidden;
257
- clip: rect(0, 0, 0, 0);
258
- border: 0; }
259
-
260
- p {
261
- margin: 0 0 9px; }
262
-
263
- .lead {
264
- margin-bottom: 18px;
265
- font-size: 14px;
266
- font-weight: 200;
267
- line-height: 1.4; }
268
- @media (min-width: 768px) {
269
- .lead {
270
- font-size: 19.5px; } }
271
-
272
- small, .small {
273
- font-size: 85%; }
274
-
275
- cite {
276
- font-style: normal; }
277
-
278
- .text-muted {
279
- color: #999999; }
280
-
281
- .text-primary {
282
- color: #0069CC; }
283
- .text-primary:hover {
284
- color: #004f99; }
285
-
286
- .text-warning {
287
- color: #8a6d3b; }
288
- .text-warning:hover {
289
- color: #66502c; }
290
-
291
- .text-danger {
292
- color: #a94442; }
293
- .text-danger:hover {
294
- color: #843534; }
295
-
296
- .text-success {
297
- color: #3c763d; }
298
- .text-success:hover {
299
- color: #2b542b; }
300
-
301
- .text-info {
302
- color: #31708f; }
303
- .text-info:hover {
304
- color: #245369; }
305
-
306
- .text-left {
307
- text-align: left; }
308
-
309
- .text-right {
310
- text-align: right; }
311
-
312
- .text-center {
313
- text-align: center; }
314
-
315
- h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
316
- font-family: inherit;
317
- font-weight: 500;
318
- line-height: 1.1;
319
- color: inherit; }
320
- h1 small, h1 .small, h2 small, h2 .small, h3 small, h3 .small, h4 small, h4 .small, h5 small, h5 .small, h6 small, h6 .small, .h1 small, .h1 .small, .h2 small, .h2 .small, .h3 small, .h3 .small, .h4 small, .h4 .small, .h5 small, .h5 .small, .h6 small, .h6 .small {
321
- font-weight: normal;
322
- line-height: 1;
323
- color: #999999; }
324
-
325
- h1, h2, h3 {
326
- margin-top: 18px;
327
- margin-bottom: 9px; }
328
- h1 small, h1 .small, h2 small, h2 .small, h3 small, h3 .small {
329
- font-size: 65%; }
330
-
331
- h4, h5, h6 {
332
- margin-top: 9px;
333
- margin-bottom: 9px; }
334
- h4 small, h4 .small, h5 small, h5 .small, h6 small, h6 .small {
335
- font-size: 75%; }
336
-
337
- h1, .h1 {
338
- font-size: 33px; }
339
-
340
- h2, .h2 {
341
- font-size: 27px; }
342
-
343
- h3, .h3 {
344
- font-size: 23px; }
345
-
346
- h4, .h4 {
347
- font-size: 17px; }
348
-
349
- h5, .h5 {
350
- font-size: 13px; }
351
-
352
- h6, .h6 {
353
- font-size: 12px; }
354
-
355
- .page-header {
356
- padding-bottom: 8px;
357
- margin: 36px 0 18px;
358
- border-bottom: 1px solid #eeeeee; }
359
-
360
- ul, ol {
361
- margin-top: 0;
362
- margin-bottom: 9px; }
363
- ul ul, ul ol, ol ul, ol ol {
364
- margin-bottom: 0; }
365
-
366
- .list-unstyled, .list-inline {
367
- padding-left: 0;
368
- list-style: none; }
369
-
370
- .list-inline > li {
371
- display: inline-block;
372
- padding-left: 5px;
373
- padding-right: 5px; }
374
- .list-inline > li:first-child {
375
- padding-left: 0; }
376
-
377
- dl {
378
- margin-bottom: 18px; }
379
-
380
- dt, dd {
381
- line-height: 1.42857; }
382
-
383
- dt {
384
- font-weight: bold; }
385
-
386
- dd {
387
- margin-left: 0; }
388
-
389
- @media (min-width: 768px) {
390
- .dl-horizontal dt {
391
- float: left;
392
- width: 160px;
393
- clear: left;
394
- text-align: right;
395
- overflow: hidden;
396
- text-overflow: ellipsis;
397
- white-space: nowrap; }
398
- .dl-horizontal dd {
399
- margin-left: 180px; }
400
- .dl-horizontal dd:before, .dl-horizontal dd:after {
401
- content: " ";
402
- /* 1 */
403
- display: table;
404
- /* 2 */ }
405
- .dl-horizontal dd:after {
406
- clear: both; } }
407
-
408
- abbr[title], abbr[data-original-title] {
409
- cursor: help;
410
- border-bottom: 1px dotted #999999; }
411
-
412
- abbr.initialism {
413
- font-size: 90%;
414
- text-transform: uppercase; }
415
-
416
- blockquote {
417
- padding: 9px 18px;
418
- margin: 0 0 18px;
419
- border-left: 5px solid #eeeeee; }
420
- blockquote p {
421
- font-size: 16.25px;
422
- font-weight: 300;
423
- line-height: 1.25; }
424
- blockquote p:last-child {
425
- margin-bottom: 0; }
426
- blockquote small {
427
- display: block;
428
- line-height: 1.42857;
429
- color: #999999; }
430
- blockquote small:before {
431
- content: '\2014 \00A0'; }
432
- blockquote.pull-right {
433
- padding-right: 15px;
434
- padding-left: 0;
435
- border-right: 5px solid #eeeeee;
436
- border-left: 0; }
437
- blockquote.pull-right p, blockquote.pull-right small, blockquote.pull-right .small {
438
- text-align: right; }
439
- blockquote.pull-right small:before, blockquote.pull-right .small:before {
440
- content: ''; }
441
- blockquote.pull-right small:after, blockquote.pull-right .small:after {
442
- content: '\00A0 \2014'; }
443
-
444
- blockquote:before, blockquote:after {
445
- content: ""; }
446
-
447
- address {
448
- margin-bottom: 18px;
449
- font-style: normal;
450
- line-height: 1.42857; }
451
-
452
- code, kbd, pre, samp {
453
- font-family: Menlo, Monaco, Consolas, "Courier New", monospace; }
454
-
455
- code {
456
- padding: 2px 4px;
457
- font-size: 90%;
458
- color: #c7254e;
459
- background-color: #f9f2f4;
460
- white-space: nowrap;
461
- border-radius: 4px; }
462
-
463
- pre {
464
- display: block;
465
- padding: 8.5px;
466
- margin: 0 0 9px;
467
- font-size: 12px;
468
- line-height: 1.42857;
469
- word-break: break-all;
470
- word-wrap: break-word;
471
- color: #333333;
472
- background-color: #f5f5f5;
473
- border: 1px solid #ccc;
474
- border-radius: 4px; }
475
- pre code {
476
- padding: 0;
477
- font-size: inherit;
478
- color: inherit;
479
- white-space: pre-wrap;
480
- background-color: transparent;
481
- border-radius: 0; }
482
-
483
- .pre-scrollable {
484
- max-height: 340px;
485
- overflow-y: scroll; }
486
-
487
- .container {
488
- margin-right: auto;
489
- margin-left: auto;
490
- padding-left: 15px;
491
- padding-right: 15px; }
492
- .container:before, .container:after {
493
- content: " ";
494
- /* 1 */
495
- display: table;
496
- /* 2 */ }
497
- .container:after {
498
- clear: both; }
499
-
500
- .row {
501
- margin-left: -15px;
502
- margin-right: -15px; }
503
- .row:before, .row:after {
504
- content: " ";
505
- /* 1 */
506
- display: table;
507
- /* 2 */ }
508
- .row:after {
509
- clear: both; }
510
-
511
- .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1 {
512
- position: relative;
513
- min-height: 1px;
514
- padding-left: 15px;
515
- padding-right: 15px; }
516
-
517
- .col-xs-12, .col-xs-11, .col-xs-10, .col-xs-9, .col-xs-8, .col-xs-7, .col-xs-6, .col-xs-5, .col-xs-4, .col-xs-3, .col-xs-2, .col-xs-1 {
518
- float: left; }
519
-
520
- .col-xs-1 {
521
- width: 8.33333%; }
522
-
523
- .col-xs-2 {
524
- width: 16.66667%; }
525
-
526
- .col-xs-3 {
527
- width: 25%; }
528
-
529
- .col-xs-4 {
530
- width: 33.33333%; }
531
-
532
- .col-xs-5 {
533
- width: 41.66667%; }
534
-
535
- .col-xs-6 {
536
- width: 50%; }
537
-
538
- .col-xs-7 {
539
- width: 58.33333%; }
540
-
541
- .col-xs-8 {
542
- width: 66.66667%; }
543
-
544
- .col-xs-9 {
545
- width: 75%; }
546
-
547
- .col-xs-10 {
548
- width: 83.33333%; }
549
-
550
- .col-xs-11 {
551
- width: 91.66667%; }
552
-
553
- .col-xs-12 {
554
- width: 100%; }
555
-
556
- .col-xs-pull-0 {
557
- right: 0%; }
558
-
559
- .col-xs-pull-1 {
560
- right: 8.33333%; }
561
-
562
- .col-xs-pull-2 {
563
- right: 16.66667%; }
564
-
565
- .col-xs-pull-3 {
566
- right: 25%; }
567
-
568
- .col-xs-pull-4 {
569
- right: 33.33333%; }
570
-
571
- .col-xs-pull-5 {
572
- right: 41.66667%; }
573
-
574
- .col-xs-pull-6 {
575
- right: 50%; }
576
-
577
- .col-xs-pull-7 {
578
- right: 58.33333%; }
579
-
580
- .col-xs-pull-8 {
581
- right: 66.66667%; }
582
-
583
- .col-xs-pull-9 {
584
- right: 75%; }
585
-
586
- .col-xs-pull-10 {
587
- right: 83.33333%; }
588
-
589
- .col-xs-pull-11 {
590
- right: 91.66667%; }
591
-
592
- .col-xs-pull-12 {
593
- right: 100%; }
594
-
595
- .col-xs-push-0 {
596
- left: 0%; }
597
-
598
- .col-xs-push-1 {
599
- left: 8.33333%; }
600
-
601
- .col-xs-push-2 {
602
- left: 16.66667%; }
603
-
604
- .col-xs-push-3 {
605
- left: 25%; }
606
-
607
- .col-xs-push-4 {
608
- left: 33.33333%; }
609
-
610
- .col-xs-push-5 {
611
- left: 41.66667%; }
612
-
613
- .col-xs-push-6 {
614
- left: 50%; }
615
-
616
- .col-xs-push-7 {
617
- left: 58.33333%; }
618
-
619
- .col-xs-push-8 {
620
- left: 66.66667%; }
621
-
622
- .col-xs-push-9 {
623
- left: 75%; }
624
-
625
- .col-xs-push-10 {
626
- left: 83.33333%; }
627
-
628
- .col-xs-push-11 {
629
- left: 91.66667%; }
630
-
631
- .col-xs-push-12 {
632
- left: 100%; }
633
-
634
- .col-xs-offset-0 {
635
- margin-left: 0%; }
636
-
637
- .col-xs-offset-1 {
638
- margin-left: 8.33333%; }
639
-
640
- .col-xs-offset-2 {
641
- margin-left: 16.66667%; }
642
-
643
- .col-xs-offset-3 {
644
- margin-left: 25%; }
645
-
646
- .col-xs-offset-4 {
647
- margin-left: 33.33333%; }
648
-
649
- .col-xs-offset-5 {
650
- margin-left: 41.66667%; }
651
-
652
- .col-xs-offset-6 {
653
- margin-left: 50%; }
654
-
655
- .col-xs-offset-7 {
656
- margin-left: 58.33333%; }
657
-
658
- .col-xs-offset-8 {
659
- margin-left: 66.66667%; }
660
-
661
- .col-xs-offset-9 {
662
- margin-left: 75%; }
663
-
664
- .col-xs-offset-10 {
665
- margin-left: 83.33333%; }
666
-
667
- .col-xs-offset-11 {
668
- margin-left: 91.66667%; }
669
-
670
- .col-xs-offset-12 {
671
- margin-left: 100%; }
672
-
673
- @media (min-width: 768px) {
674
- .container {
675
- width: 750px; }
676
- .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1 {
677
- float: left; }
678
- .col-sm-1 {
679
- width: 8.33333%; }
680
- .col-sm-2 {
681
- width: 16.66667%; }
682
- .col-sm-3 {
683
- width: 25%; }
684
- .col-sm-4 {
685
- width: 33.33333%; }
686
- .col-sm-5 {
687
- width: 41.66667%; }
688
- .col-sm-6 {
689
- width: 50%; }
690
- .col-sm-7 {
691
- width: 58.33333%; }
692
- .col-sm-8 {
693
- width: 66.66667%; }
694
- .col-sm-9 {
695
- width: 75%; }
696
- .col-sm-10 {
697
- width: 83.33333%; }
698
- .col-sm-11 {
699
- width: 91.66667%; }
700
- .col-sm-12 {
701
- width: 100%; }
702
- .col-sm-pull-0 {
703
- right: 0%; }
704
- .col-sm-pull-1 {
705
- right: 8.33333%; }
706
- .col-sm-pull-2 {
707
- right: 16.66667%; }
708
- .col-sm-pull-3 {
709
- right: 25%; }
710
- .col-sm-pull-4 {
711
- right: 33.33333%; }
712
- .col-sm-pull-5 {
713
- right: 41.66667%; }
714
- .col-sm-pull-6 {
715
- right: 50%; }
716
- .col-sm-pull-7 {
717
- right: 58.33333%; }
718
- .col-sm-pull-8 {
719
- right: 66.66667%; }
720
- .col-sm-pull-9 {
721
- right: 75%; }
722
- .col-sm-pull-10 {
723
- right: 83.33333%; }
724
- .col-sm-pull-11 {
725
- right: 91.66667%; }
726
- .col-sm-pull-12 {
727
- right: 100%; }
728
- .col-sm-push-0 {
729
- left: 0%; }
730
- .col-sm-push-1 {
731
- left: 8.33333%; }
732
- .col-sm-push-2 {
733
- left: 16.66667%; }
734
- .col-sm-push-3 {
735
- left: 25%; }
736
- .col-sm-push-4 {
737
- left: 33.33333%; }
738
- .col-sm-push-5 {
739
- left: 41.66667%; }
740
- .col-sm-push-6 {
741
- left: 50%; }
742
- .col-sm-push-7 {
743
- left: 58.33333%; }
744
- .col-sm-push-8 {
745
- left: 66.66667%; }
746
- .col-sm-push-9 {
747
- left: 75%; }
748
- .col-sm-push-10 {
749
- left: 83.33333%; }
750
- .col-sm-push-11 {
751
- left: 91.66667%; }
752
- .col-sm-push-12 {
753
- left: 100%; }
754
- .col-sm-offset-0 {
755
- margin-left: 0%; }
756
- .col-sm-offset-1 {
757
- margin-left: 8.33333%; }
758
- .col-sm-offset-2 {
759
- margin-left: 16.66667%; }
760
- .col-sm-offset-3 {
761
- margin-left: 25%; }
762
- .col-sm-offset-4 {
763
- margin-left: 33.33333%; }
764
- .col-sm-offset-5 {
765
- margin-left: 41.66667%; }
766
- .col-sm-offset-6 {
767
- margin-left: 50%; }
768
- .col-sm-offset-7 {
769
- margin-left: 58.33333%; }
770
- .col-sm-offset-8 {
771
- margin-left: 66.66667%; }
772
- .col-sm-offset-9 {
773
- margin-left: 75%; }
774
- .col-sm-offset-10 {
775
- margin-left: 83.33333%; }
776
- .col-sm-offset-11 {
777
- margin-left: 91.66667%; }
778
- .col-sm-offset-12 {
779
- margin-left: 100%; } }
780
-
781
- @media (min-width: 992px) {
782
- .container {
783
- width: 970px; }
784
- .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1 {
785
- float: left; }
786
- .col-md-1 {
787
- width: 8.33333%; }
788
- .col-md-2 {
789
- width: 16.66667%; }
790
- .col-md-3 {
791
- width: 25%; }
792
- .col-md-4 {
793
- width: 33.33333%; }
794
- .col-md-5 {
795
- width: 41.66667%; }
796
- .col-md-6 {
797
- width: 50%; }
798
- .col-md-7 {
799
- width: 58.33333%; }
800
- .col-md-8 {
801
- width: 66.66667%; }
802
- .col-md-9 {
803
- width: 75%; }
804
- .col-md-10 {
805
- width: 83.33333%; }
806
- .col-md-11 {
807
- width: 91.66667%; }
808
- .col-md-12 {
809
- width: 100%; }
810
- .col-md-pull-0 {
811
- right: 0%; }
812
- .col-md-pull-1 {
813
- right: 8.33333%; }
814
- .col-md-pull-2 {
815
- right: 16.66667%; }
816
- .col-md-pull-3 {
817
- right: 25%; }
818
- .col-md-pull-4 {
819
- right: 33.33333%; }
820
- .col-md-pull-5 {
821
- right: 41.66667%; }
822
- .col-md-pull-6 {
823
- right: 50%; }
824
- .col-md-pull-7 {
825
- right: 58.33333%; }
826
- .col-md-pull-8 {
827
- right: 66.66667%; }
828
- .col-md-pull-9 {
829
- right: 75%; }
830
- .col-md-pull-10 {
831
- right: 83.33333%; }
832
- .col-md-pull-11 {
833
- right: 91.66667%; }
834
- .col-md-pull-12 {
835
- right: 100%; }
836
- .col-md-push-0 {
837
- left: 0%; }
838
- .col-md-push-1 {
839
- left: 8.33333%; }
840
- .col-md-push-2 {
841
- left: 16.66667%; }
842
- .col-md-push-3 {
843
- left: 25%; }
844
- .col-md-push-4 {
845
- left: 33.33333%; }
846
- .col-md-push-5 {
847
- left: 41.66667%; }
848
- .col-md-push-6 {
849
- left: 50%; }
850
- .col-md-push-7 {
851
- left: 58.33333%; }
852
- .col-md-push-8 {
853
- left: 66.66667%; }
854
- .col-md-push-9 {
855
- left: 75%; }
856
- .col-md-push-10 {
857
- left: 83.33333%; }
858
- .col-md-push-11 {
859
- left: 91.66667%; }
860
- .col-md-push-12 {
861
- left: 100%; }
862
- .col-md-offset-0 {
863
- margin-left: 0%; }
864
- .col-md-offset-1 {
865
- margin-left: 8.33333%; }
866
- .col-md-offset-2 {
867
- margin-left: 16.66667%; }
868
- .col-md-offset-3 {
869
- margin-left: 25%; }
870
- .col-md-offset-4 {
871
- margin-left: 33.33333%; }
872
- .col-md-offset-5 {
873
- margin-left: 41.66667%; }
874
- .col-md-offset-6 {
875
- margin-left: 50%; }
876
- .col-md-offset-7 {
877
- margin-left: 58.33333%; }
878
- .col-md-offset-8 {
879
- margin-left: 66.66667%; }
880
- .col-md-offset-9 {
881
- margin-left: 75%; }
882
- .col-md-offset-10 {
883
- margin-left: 83.33333%; }
884
- .col-md-offset-11 {
885
- margin-left: 91.66667%; }
886
- .col-md-offset-12 {
887
- margin-left: 100%; } }
888
-
889
- @media (min-width: 1200px) {
890
- .container {
891
- width: 1170px; }
892
- .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1 {
893
- float: left; }
894
- .col-lg-1 {
895
- width: 8.33333%; }
896
- .col-lg-2 {
897
- width: 16.66667%; }
898
- .col-lg-3 {
899
- width: 25%; }
900
- .col-lg-4 {
901
- width: 33.33333%; }
902
- .col-lg-5 {
903
- width: 41.66667%; }
904
- .col-lg-6 {
905
- width: 50%; }
906
- .col-lg-7 {
907
- width: 58.33333%; }
908
- .col-lg-8 {
909
- width: 66.66667%; }
910
- .col-lg-9 {
911
- width: 75%; }
912
- .col-lg-10 {
913
- width: 83.33333%; }
914
- .col-lg-11 {
915
- width: 91.66667%; }
916
- .col-lg-12 {
917
- width: 100%; }
918
- .col-lg-pull-0 {
919
- right: 0%; }
920
- .col-lg-pull-1 {
921
- right: 8.33333%; }
922
- .col-lg-pull-2 {
923
- right: 16.66667%; }
924
- .col-lg-pull-3 {
925
- right: 25%; }
926
- .col-lg-pull-4 {
927
- right: 33.33333%; }
928
- .col-lg-pull-5 {
929
- right: 41.66667%; }
930
- .col-lg-pull-6 {
931
- right: 50%; }
932
- .col-lg-pull-7 {
933
- right: 58.33333%; }
934
- .col-lg-pull-8 {
935
- right: 66.66667%; }
936
- .col-lg-pull-9 {
937
- right: 75%; }
938
- .col-lg-pull-10 {
939
- right: 83.33333%; }
940
- .col-lg-pull-11 {
941
- right: 91.66667%; }
942
- .col-lg-pull-12 {
943
- right: 100%; }
944
- .col-lg-push-0 {
945
- left: 0%; }
946
- .col-lg-push-1 {
947
- left: 8.33333%; }
948
- .col-lg-push-2 {
949
- left: 16.66667%; }
950
- .col-lg-push-3 {
951
- left: 25%; }
952
- .col-lg-push-4 {
953
- left: 33.33333%; }
954
- .col-lg-push-5 {
955
- left: 41.66667%; }
956
- .col-lg-push-6 {
957
- left: 50%; }
958
- .col-lg-push-7 {
959
- left: 58.33333%; }
960
- .col-lg-push-8 {
961
- left: 66.66667%; }
962
- .col-lg-push-9 {
963
- left: 75%; }
964
- .col-lg-push-10 {
965
- left: 83.33333%; }
966
- .col-lg-push-11 {
967
- left: 91.66667%; }
968
- .col-lg-push-12 {
969
- left: 100%; }
970
- .col-lg-offset-0 {
971
- margin-left: 0%; }
972
- .col-lg-offset-1 {
973
- margin-left: 8.33333%; }
974
- .col-lg-offset-2 {
975
- margin-left: 16.66667%; }
976
- .col-lg-offset-3 {
977
- margin-left: 25%; }
978
- .col-lg-offset-4 {
979
- margin-left: 33.33333%; }
980
- .col-lg-offset-5 {
981
- margin-left: 41.66667%; }
982
- .col-lg-offset-6 {
983
- margin-left: 50%; }
984
- .col-lg-offset-7 {
985
- margin-left: 58.33333%; }
986
- .col-lg-offset-8 {
987
- margin-left: 66.66667%; }
988
- .col-lg-offset-9 {
989
- margin-left: 75%; }
990
- .col-lg-offset-10 {
991
- margin-left: 83.33333%; }
992
- .col-lg-offset-11 {
993
- margin-left: 91.66667%; }
994
- .col-lg-offset-12 {
995
- margin-left: 100%; } }
996
-
997
- table {
998
- max-width: 100%;
999
- background-color: transparent; }
1000
-
1001
- th {
1002
- text-align: left; }
1003
-
1004
- .table {
1005
- width: 100%;
1006
- margin-bottom: 18px; }
1007
- .table > thead > tr > th, .table > thead > tr > td, .table > tbody > tr > th, .table > tbody > tr > td, .table > tfoot > tr > th, .table > tfoot > tr > td {
1008
- padding: 8px;
1009
- line-height: 1.42857;
1010
- vertical-align: top;
1011
- border-top: 1px solid #ddd; }
1012
- .table > thead > tr > th {
1013
- vertical-align: bottom;
1014
- border-bottom: 2px solid #ddd; }
1015
- .table > caption + thead > tr:first-child > th, .table > caption + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > td, .table > thead:first-child > tr:first-child > th, .table > thead:first-child > tr:first-child > td {
1016
- border-top: 0; }
1017
- .table > tbody + tbody {
1018
- border-top: 2px solid #ddd; }
1019
- .table .table {
1020
- background-color: #fff; }
1021
-
1022
- .table-condensed > thead > tr > th, .table-condensed > thead > tr > td, .table-condensed > tbody > tr > th, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > th, .table-condensed > tfoot > tr > td {
1023
- padding: 5px; }
1024
-
1025
- .table-bordered {
1026
- border: 1px solid #ddd; }
1027
- .table-bordered > thead > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > th, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > th, .table-bordered > tfoot > tr > td {
1028
- border: 1px solid #ddd; }
1029
- .table-bordered > thead > tr > th, .table-bordered > thead > tr > td {
1030
- border-bottom-width: 2px; }
1031
-
1032
- .table-striped > tbody > tr:nth-child(odd) > td, .table-striped > tbody > tr:nth-child(odd) > th {
1033
- background-color: #f9f9f9; }
1034
-
1035
- .table-hover > tbody > tr:hover > td, .table-hover > tbody > tr:hover > th {
1036
- background-color: #f5f5f5; }
1037
-
1038
- table col[class*="col-"] {
1039
- float: none;
1040
- display: table-column; }
1041
-
1042
- table td[class*="col-"], table th[class*="col-"] {
1043
- float: none;
1044
- display: table-cell; }
1045
-
1046
- .table > thead > tr > td.active, .table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th, .table > tbody > tr > td.active, .table > tbody > tr > th.active, .table > tbody > tr.active > td, .table > tbody > tr.active > th, .table > tfoot > tr > td.active, .table > tfoot > tr > th.active, .table > tfoot > tr.active > td, .table > tfoot > tr.active > th {
1047
- background-color: #f5f5f5; }
1048
-
1049
- .table > thead > tr > td.success, .table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr > td.success, .table > tbody > tr > th.success, .table > tbody > tr.success > td, .table > tbody > tr.success > th, .table > tfoot > tr > td.success, .table > tfoot > tr > th.success, .table > tfoot > tr.success > td, .table > tfoot > tr.success > th {
1050
- background-color: #dff0d8; }
1051
-
1052
- .table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr.success:hover > th {
1053
- background-color: #d0e9c6; }
1054
-
1055
- .table > thead > tr > td.danger, .table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr > td.danger, .table > tbody > tr > th.danger, .table > tbody > tr.danger > td, .table > tbody > tr.danger > th, .table > tfoot > tr > td.danger, .table > tfoot > tr > th.danger, .table > tfoot > tr.danger > td, .table > tfoot > tr.danger > th {
1056
- background-color: #f2dede; }
1057
-
1058
- .table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr.danger:hover > th {
1059
- background-color: #ebcccc; }
1060
-
1061
- .table > thead > tr > td.warning, .table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr > td.warning, .table > tbody > tr > th.warning, .table > tbody > tr.warning > td, .table > tbody > tr.warning > th, .table > tfoot > tr > td.warning, .table > tfoot > tr > th.warning, .table > tfoot > tr.warning > td, .table > tfoot > tr.warning > th {
1062
- background-color: #fcf8e3; }
1063
-
1064
- .table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr.warning:hover > th {
1065
- background-color: #faf2cc; }
1066
-
1067
- @media (max-width: 767px) {
1068
- .table-responsive {
1069
- width: 100%;
1070
- margin-bottom: 13.5px;
1071
- overflow-y: hidden;
1072
- overflow-x: scroll;
1073
- -ms-overflow-style: -ms-autohiding-scrollbar;
1074
- border: 1px solid #ddd;
1075
- -webkit-overflow-scrolling: touch; }
1076
- .table-responsive > .table {
1077
- margin-bottom: 0; }
1078
- .table-responsive > .table > thead > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > tfoot > tr > td {
1079
- white-space: nowrap; }
1080
- .table-responsive > .table-bordered {
1081
- border: 0; }
1082
- .table-responsive > .table-bordered > thead > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child {
1083
- border-left: 0; }
1084
- .table-responsive > .table-bordered > thead > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child {
1085
- border-right: 0; }
1086
- .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > td {
1087
- border-bottom: 0; } }
1088
-
1089
- fieldset {
1090
- padding: 0;
1091
- margin: 0;
1092
- border: 0; }
1093
-
1094
- legend {
1095
- display: block;
1096
- width: 100%;
1097
- padding: 0;
1098
- margin-bottom: 18px;
1099
- font-size: 19.5px;
1100
- line-height: inherit;
1101
- color: #333333;
1102
- border: 0;
1103
- border-bottom: 1px solid #e5e5e5; }
1104
-
1105
- label {
1106
- display: inline-block;
1107
- margin-bottom: 5px;
1108
- font-weight: bold; }
1109
-
1110
- input[type="search"] {
1111
- -webkit-box-sizing: border-box;
1112
- -moz-box-sizing: border-box;
1113
- box-sizing: border-box; }
1114
-
1115
- input[type="radio"], input[type="checkbox"] {
1116
- margin: 4px 0 0;
1117
- margin-top: 1px \9;
1118
- /* IE8-9 */
1119
- line-height: normal; }
1120
-
1121
- input[type="file"] {
1122
- display: block; }
1123
-
1124
- select[multiple], select[size] {
1125
- height: auto; }
1126
-
1127
- select optgroup {
1128
- font-size: inherit;
1129
- font-style: inherit;
1130
- font-family: inherit; }
1131
-
1132
- input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus {
1133
- outline: thin dotted #333;
1134
- outline: 5px auto-webkit-focus-ring-color;
1135
- outline-offset: -2px; }
1136
-
1137
- input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
1138
- height: auto; }
1139
-
1140
- output {
1141
- display: block;
1142
- padding-top: 7px;
1143
- font-size: 13px;
1144
- line-height: 1.42857;
1145
- color: #555555;
1146
- vertical-align: middle; }
1147
-
1148
- .form-control {
1149
- display: block;
1150
- width: 100%;
1151
- height: 32px;
1152
- padding: 6px 12px;
1153
- font-size: 13px;
1154
- line-height: 1.42857;
1155
- color: #555555;
1156
- vertical-align: middle;
1157
- background-color: #fff;
1158
- background-image: none;
1159
- border: 1px solid #ccc;
1160
- border-radius: 4px;
1161
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1162
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1163
- -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
1164
- transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }
1165
- .form-control:focus {
1166
- border-color: #66afe9;
1167
- outline: 0;
1168
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
1169
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }
1170
- .form-control:-moz-placeholder {
1171
- color: #999999; }
1172
- .form-control::-moz-placeholder {
1173
- color: #999999; }
1174
- .form-control:-ms-input-placeholder {
1175
- color: #999999; }
1176
- .form-control::-webkit-input-placeholder {
1177
- color: #999999; }
1178
- .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
1179
- cursor: not-allowed;
1180
- background-color: #eeeeee; }
1181
-
1182
- textarea.form-control {
1183
- height: auto; }
1184
-
1185
- .form-group {
1186
- margin-bottom: 15px; }
1187
-
1188
- .radio, .checkbox {
1189
- display: block;
1190
- min-height: 18px;
1191
- margin-top: 10px;
1192
- margin-bottom: 10px;
1193
- padding-left: 20px;
1194
- vertical-align: middle; }
1195
- .radio label, .checkbox label {
1196
- display: inline;
1197
- margin-bottom: 0;
1198
- font-weight: normal;
1199
- cursor: pointer; }
1200
-
1201
- .radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
1202
- float: left;
1203
- margin-left: -20px; }
1204
-
1205
- .radio + .radio, .checkbox + .checkbox {
1206
- margin-top: -5px; }
1207
-
1208
- .radio-inline, .checkbox-inline {
1209
- display: inline-block;
1210
- padding-left: 20px;
1211
- margin-bottom: 0;
1212
- vertical-align: middle;
1213
- font-weight: normal;
1214
- cursor: pointer; }
1215
-
1216
- .radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline {
1217
- margin-top: 0;
1218
- margin-left: 10px; }
1219
-
1220
- input[type="radio"][disabled], fieldset[disabled] input[type="radio"], input[type="checkbox"][disabled], fieldset[disabled] input[type="checkbox"], .radio[disabled], fieldset[disabled] .radio, .radio-inline[disabled], fieldset[disabled] .radio-inline, .checkbox[disabled], fieldset[disabled] .checkbox, .checkbox-inline[disabled], fieldset[disabled] .checkbox-inline {
1221
- cursor: not-allowed; }
1222
-
1223
- .input-sm, .input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn {
1224
- height: 30px;
1225
- padding: 5px 10px;
1226
- font-size: 12px;
1227
- line-height: 1.5;
1228
- border-radius: 3px; }
1229
-
1230
- select.input-sm, .input-group-sm > select.form-control, .input-group-sm > select.input-group-addon, .input-group-sm > .input-group-btn > select.btn {
1231
- height: 30px;
1232
- line-height: 30px; }
1233
-
1234
- textarea.input-sm, .input-group-sm > textarea.form-control, .input-group-sm > textarea.input-group-addon, .input-group-sm > .input-group-btn > textarea.btn {
1235
- height: auto; }
1236
-
1237
- .input-lg, .input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
1238
- height: 45px;
1239
- padding: 10px 16px;
1240
- font-size: 17px;
1241
- line-height: 1.33;
1242
- border-radius: 6px; }
1243
-
1244
- select.input-lg, .input-group-lg > select.form-control, .input-group-lg > select.input-group-addon, .input-group-lg > .input-group-btn > select.btn {
1245
- height: 45px;
1246
- line-height: 45px; }
1247
-
1248
- textarea.input-lg, .input-group-lg > textarea.form-control, .input-group-lg > textarea.input-group-addon, .input-group-lg > .input-group-btn > textarea.btn {
1249
- height: auto; }
1250
-
1251
- .has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline {
1252
- color: #8a6d3b; }
1253
- .has-warning .form-control {
1254
- border-color: #8a6d3b;
1255
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1256
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
1257
- .has-warning .form-control:focus {
1258
- border-color: #66502c;
1259
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c09f6b;
1260
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c09f6b; }
1261
- .has-warning .input-group-addon {
1262
- color: #8a6d3b;
1263
- border-color: #8a6d3b;
1264
- background-color: #fcf8e3; }
1265
-
1266
- .has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline {
1267
- color: #a94442; }
1268
- .has-error .form-control {
1269
- border-color: #a94442;
1270
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1271
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
1272
- .has-error .form-control:focus {
1273
- border-color: #843534;
1274
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
1275
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; }
1276
- .has-error .input-group-addon {
1277
- color: #a94442;
1278
- border-color: #a94442;
1279
- background-color: #f2dede; }
1280
-
1281
- .has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline {
1282
- color: #3c763d; }
1283
- .has-success .form-control {
1284
- border-color: #3c763d;
1285
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1286
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
1287
- .has-success .form-control:focus {
1288
- border-color: #2b542b;
1289
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
1290
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; }
1291
- .has-success .input-group-addon {
1292
- color: #3c763d;
1293
- border-color: #3c763d;
1294
- background-color: #dff0d8; }
1295
-
1296
- .form-control-static {
1297
- margin-bottom: 0; }
1298
-
1299
- .help-block {
1300
- display: block;
1301
- margin-top: 5px;
1302
- margin-bottom: 10px;
1303
- color: #737373; }
1304
-
1305
- @media (min-width: 768px) {
1306
- .form-inline .form-group, .form-inline .navbar-form {
1307
- display: inline-block;
1308
- margin-bottom: 0;
1309
- vertical-align: middle; }
1310
- .form-inline .form-control, .form-inline .navbar-form {
1311
- display: inline-block; }
1312
- .form-inline .radio, .form-inline .navbar-form, .form-inline .checkbox, .form-inline .navbar-form {
1313
- display: inline-block;
1314
- margin-top: 0;
1315
- margin-bottom: 0;
1316
- padding-left: 0; }
1317
- .form-inline .radio input[type="radio"], .form-inline .radio .navbar-form, .form-inline .checkbox input[type="checkbox"], .form-inline .checkbox .navbar-form {
1318
- float: none;
1319
- margin-left: 0; } }
1320
-
1321
- .form-horizontal .control-label, .form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline {
1322
- margin-top: 0;
1323
- margin-bottom: 0;
1324
- padding-top: 7px; }
1325
- .form-horizontal .form-group {
1326
- margin-left: -15px;
1327
- margin-right: -15px; }
1328
- .form-horizontal .form-group:before, .form-horizontal .form-group:after {
1329
- content: " ";
1330
- /* 1 */
1331
- display: table;
1332
- /* 2 */ }
1333
- .form-horizontal .form-group:after {
1334
- clear: both; }
1335
- .form-horizontal .form-control-static {
1336
- padding-top: 7px; }
1337
- @media (min-width: 768px) {
1338
- .form-horizontal .control-label {
1339
- text-align: right; } }
1340
-
1341
- .btn {
1342
- display: inline-block;
1343
- margin-bottom: 0;
1344
- font-weight: normal;
1345
- text-align: center;
1346
- vertical-align: middle;
1347
- cursor: pointer;
1348
- background-image: none;
1349
- border: 1px solid transparent;
1350
- white-space: nowrap;
1351
- padding: 6px 12px;
1352
- font-size: 13px;
1353
- line-height: 1.42857;
1354
- border-radius: 4px;
1355
- -webkit-user-select: none;
1356
- -moz-user-select: none;
1357
- -ms-user-select: none;
1358
- -o-user-select: none;
1359
- user-select: none; }
1360
- .btn:focus {
1361
- outline: thin dotted #333;
1362
- outline: 5px auto-webkit-focus-ring-color;
1363
- outline-offset: -2px; }
1364
- .btn:hover, .btn:focus {
1365
- color: #333;
1366
- text-decoration: none; }
1367
- .btn:active, .btn.active {
1368
- outline: 0;
1369
- background-image: none;
1370
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1371
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
1372
- .btn.disabled, .btn[disabled], fieldset[disabled] .btn {
1373
- cursor: not-allowed;
1374
- pointer-events: none;
1375
- opacity: 0.65;
1376
- filter: alpha(opacity=65);
1377
- -webkit-box-shadow: none;
1378
- box-shadow: none; }
1379
-
1380
- .btn-default {
1381
- color: #333;
1382
- background-color: #fff;
1383
- border-color: #ccc; }
1384
- .btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active {
1385
- color: #333;
1386
- background-color: #ebebeb;
1387
- border-color: #adadad; }
1388
- .open .btn-default.dropdown-toggle {
1389
- color: #333;
1390
- background-color: #ebebeb;
1391
- border-color: #adadad; }
1392
- .btn-default:active, .btn-default.active {
1393
- background-image: none; }
1394
- .open .btn-default.dropdown-toggle {
1395
- background-image: none; }
1396
- .btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled]:active, .btn-default[disabled].active, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active {
1397
- background-color: #fff;
1398
- border-color: #ccc; }
1399
-
1400
- .btn-primary {
1401
- color: #fff;
1402
- background-color: #0069CC;
1403
- border-color: #005cb3; }
1404
- .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active {
1405
- color: #fff;
1406
- background-color: #0054a3;
1407
- border-color: #003d75; }
1408
- .open .btn-primary.dropdown-toggle {
1409
- color: #fff;
1410
- background-color: #0054a3;
1411
- border-color: #003d75; }
1412
- .btn-primary:active, .btn-primary.active {
1413
- background-image: none; }
1414
- .open .btn-primary.dropdown-toggle {
1415
- background-image: none; }
1416
- .btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled]:active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {
1417
- background-color: #0069CC;
1418
- border-color: #005cb3; }
1419
-
1420
- .btn-warning {
1421
- color: #fff;
1422
- background-color: #EB9722;
1423
- border-color: #df8714; }
1424
- .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active {
1425
- color: #fff;
1426
- background-color: #d17f13;
1427
- border-color: #a7650f; }
1428
- .open .btn-warning.dropdown-toggle {
1429
- color: #fff;
1430
- background-color: #d17f13;
1431
- border-color: #a7650f; }
1432
- .btn-warning:active, .btn-warning.active {
1433
- background-image: none; }
1434
- .open .btn-warning.dropdown-toggle {
1435
- background-image: none; }
1436
- .btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled]:active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active {
1437
- background-color: #EB9722;
1438
- border-color: #df8714; }
1439
-
1440
- .btn-danger {
1441
- color: #fff;
1442
- background-color: #D11313;
1443
- border-color: #ba1111; }
1444
- .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active {
1445
- color: #fff;
1446
- background-color: #ac1010;
1447
- border-color: #820c0c; }
1448
- .open .btn-danger.dropdown-toggle {
1449
- color: #fff;
1450
- background-color: #ac1010;
1451
- border-color: #820c0c; }
1452
- .btn-danger:active, .btn-danger.active {
1453
- background-image: none; }
1454
- .open .btn-danger.dropdown-toggle {
1455
- background-image: none; }
1456
- .btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled]:active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active {
1457
- background-color: #D11313;
1458
- border-color: #ba1111; }
1459
-
1460
- .btn-success {
1461
- color: #fff;
1462
- background-color: #5FB000;
1463
- border-color: #539700; }
1464
- .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active {
1465
- color: #fff;
1466
- background-color: #4a8700;
1467
- border-color: #335900; }
1468
- .open .btn-success.dropdown-toggle {
1469
- color: #fff;
1470
- background-color: #4a8700;
1471
- border-color: #335900; }
1472
- .btn-success:active, .btn-success.active {
1473
- background-image: none; }
1474
- .open .btn-success.dropdown-toggle {
1475
- background-image: none; }
1476
- .btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled]:active, .btn-success[disabled].active, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {
1477
- background-color: #5FB000;
1478
- border-color: #539700; }
1479
-
1480
- .btn-info {
1481
- color: #fff;
1482
- background-color: #6E50A1;
1483
- border-color: #624890; }
1484
- .btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active {
1485
- color: #fff;
1486
- background-color: #5b4286;
1487
- border-color: #453367; }
1488
- .open .btn-info.dropdown-toggle {
1489
- color: #fff;
1490
- background-color: #5b4286;
1491
- border-color: #453367; }
1492
- .btn-info:active, .btn-info.active {
1493
- background-image: none; }
1494
- .open .btn-info.dropdown-toggle {
1495
- background-image: none; }
1496
- .btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled]:active, .btn-info[disabled].active, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active {
1497
- background-color: #6E50A1;
1498
- border-color: #624890; }
1499
-
1500
- .btn-link {
1501
- color: #0069CC;
1502
- font-weight: normal;
1503
- cursor: pointer;
1504
- border-radius: 0; }
1505
- .btn-link, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link {
1506
- background-color: transparent;
1507
- -webkit-box-shadow: none;
1508
- box-shadow: none; }
1509
- .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
1510
- border-color: transparent; }
1511
- .btn-link:hover, .btn-link:focus {
1512
- color: #004280;
1513
- text-decoration: underline;
1514
- background-color: transparent; }
1515
- .btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
1516
- color: #999999;
1517
- text-decoration: none; }
1518
-
1519
- .btn-lg, .btn-group-lg > .btn {
1520
- padding: 10px 16px;
1521
- font-size: 17px;
1522
- line-height: 1.33;
1523
- border-radius: 6px; }
1524
-
1525
- .btn-sm, .btn-group-sm > .btn, .btn-xs, .btn-group-xs > .btn {
1526
- padding: 5px 10px;
1527
- font-size: 12px;
1528
- line-height: 1.5;
1529
- border-radius: 3px; }
1530
-
1531
- .btn-xs, .btn-group-xs > .btn {
1532
- padding: 1px 5px; }
1533
-
1534
- .btn-block {
1535
- display: block;
1536
- width: 100%;
1537
- padding-left: 0;
1538
- padding-right: 0; }
1539
-
1540
- .btn-block + .btn-block {
1541
- margin-top: 5px; }
1542
-
1543
- input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block {
1544
- width: 100%; }
1545
-
1546
- .fade {
1547
- opacity: 0;
1548
- -webkit-transition: opacity 0.15s linear;
1549
- transition: opacity 0.15s linear; }
1550
- .fade.in {
1551
- opacity: 1; }
1552
-
1553
- .collapse {
1554
- display: none; }
1555
- .collapse.in {
1556
- display: block; }
1557
-
1558
- .collapsing {
1559
- position: relative;
1560
- height: 0;
1561
- overflow: hidden;
1562
- -webkit-transition: height 0.35s ease;
1563
- transition: height 0.35s ease; }
1564
-
1565
- @font-face {
1566
- font-family: 'Glyphicons Halflings';
1567
- src: url('bootstrap/glyphicons-halflings-regular.eot');
1568
- src: url('bootstrap/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('bootstrap/glyphicons-halflings-regular.woff') format('woff'), url('bootstrap/glyphicons-halflings-regular.ttf') format('truetype'), url('bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); }
1569
-
1570
- .glyphicon {
1571
- position: relative;
1572
- top: 1px;
1573
- display: inline-block;
1574
- font-family: 'Glyphicons Halflings';
1575
- font-style: normal;
1576
- font-weight: normal;
1577
- line-height: 1;
1578
- -webkit-font-smoothing: antialiased;
1579
- -moz-osx-font-smoothing: grayscale; }
1580
- .glyphicon:empty {
1581
- width: 1em; }
1582
-
1583
- .glyphicon-asterisk:before {
1584
- content: "\2a"; }
1585
-
1586
- .glyphicon-plus:before {
1587
- content: "\2b"; }
1588
-
1589
- .glyphicon-euro:before {
1590
- content: "\20ac"; }
1591
-
1592
- .glyphicon-minus:before {
1593
- content: "\2212"; }
1594
-
1595
- .glyphicon-cloud:before {
1596
- content: "\2601"; }
1597
-
1598
- .glyphicon-envelope:before {
1599
- content: "\2709"; }
1600
-
1601
- .glyphicon-pencil:before {
1602
- content: "\270f"; }
1603
-
1604
- .glyphicon-glass:before {
1605
- content: "\e001"; }
1606
-
1607
- .glyphicon-music:before {
1608
- content: "\e002"; }
1609
-
1610
- .glyphicon-search:before {
1611
- content: "\e003"; }
1612
-
1613
- .glyphicon-heart:before {
1614
- content: "\e005"; }
1615
-
1616
- .glyphicon-star:before {
1617
- content: "\e006"; }
1618
-
1619
- .glyphicon-star-empty:before {
1620
- content: "\e007"; }
1621
-
1622
- .glyphicon-user:before {
1623
- content: "\e008"; }
1624
-
1625
- .glyphicon-film:before {
1626
- content: "\e009"; }
1627
-
1628
- .glyphicon-th-large:before {
1629
- content: "\e010"; }
1630
-
1631
- .glyphicon-th:before {
1632
- content: "\e011"; }
1633
-
1634
- .glyphicon-th-list:before {
1635
- content: "\e012"; }
1636
-
1637
- .glyphicon-ok:before {
1638
- content: "\e013"; }
1639
-
1640
- .glyphicon-remove:before {
1641
- content: "\e014"; }
1642
-
1643
- .glyphicon-zoom-in:before {
1644
- content: "\e015"; }
1645
-
1646
- .glyphicon-zoom-out:before {
1647
- content: "\e016"; }
1648
-
1649
- .glyphicon-off:before {
1650
- content: "\e017"; }
1651
-
1652
- .glyphicon-signal:before {
1653
- content: "\e018"; }
1654
-
1655
- .glyphicon-cog:before {
1656
- content: "\e019"; }
1657
-
1658
- .glyphicon-trash:before {
1659
- content: "\e020"; }
1660
-
1661
- .glyphicon-home:before {
1662
- content: "\e021"; }
1663
-
1664
- .glyphicon-file:before {
1665
- content: "\e022"; }
1666
-
1667
- .glyphicon-time:before {
1668
- content: "\e023"; }
1669
-
1670
- .glyphicon-road:before {
1671
- content: "\e024"; }
1672
-
1673
- .glyphicon-download-alt:before {
1674
- content: "\e025"; }
1675
-
1676
- .glyphicon-download:before {
1677
- content: "\e026"; }
1678
-
1679
- .glyphicon-upload:before {
1680
- content: "\e027"; }
1681
-
1682
- .glyphicon-inbox:before {
1683
- content: "\e028"; }
1684
-
1685
- .glyphicon-play-circle:before {
1686
- content: "\e029"; }
1687
-
1688
- .glyphicon-repeat:before {
1689
- content: "\e030"; }
1690
-
1691
- .glyphicon-refresh:before {
1692
- content: "\e031"; }
1693
-
1694
- .glyphicon-list-alt:before {
1695
- content: "\e032"; }
1696
-
1697
- .glyphicon-lock:before {
1698
- content: "\e033"; }
1699
-
1700
- .glyphicon-flag:before {
1701
- content: "\e034"; }
1702
-
1703
- .glyphicon-headphones:before {
1704
- content: "\e035"; }
1705
-
1706
- .glyphicon-volume-off:before {
1707
- content: "\e036"; }
1708
-
1709
- .glyphicon-volume-down:before {
1710
- content: "\e037"; }
1711
-
1712
- .glyphicon-volume-up:before {
1713
- content: "\e038"; }
1714
-
1715
- .glyphicon-qrcode:before {
1716
- content: "\e039"; }
1717
-
1718
- .glyphicon-barcode:before {
1719
- content: "\e040"; }
1720
-
1721
- .glyphicon-tag:before {
1722
- content: "\e041"; }
1723
-
1724
- .glyphicon-tags:before {
1725
- content: "\e042"; }
1726
-
1727
- .glyphicon-book:before {
1728
- content: "\e043"; }
1729
-
1730
- .glyphicon-bookmark:before {
1731
- content: "\e044"; }
1732
-
1733
- .glyphicon-print:before {
1734
- content: "\e045"; }
1735
-
1736
- .glyphicon-camera:before {
1737
- content: "\e046"; }
1738
-
1739
- .glyphicon-font:before {
1740
- content: "\e047"; }
1741
-
1742
- .glyphicon-bold:before {
1743
- content: "\e048"; }
1744
-
1745
- .glyphicon-italic:before {
1746
- content: "\e049"; }
1747
-
1748
- .glyphicon-text-height:before {
1749
- content: "\e050"; }
1750
-
1751
- .glyphicon-text-width:before {
1752
- content: "\e051"; }
1753
-
1754
- .glyphicon-align-left:before {
1755
- content: "\e052"; }
1756
-
1757
- .glyphicon-align-center:before {
1758
- content: "\e053"; }
1759
-
1760
- .glyphicon-align-right:before {
1761
- content: "\e054"; }
1762
-
1763
- .glyphicon-align-justify:before {
1764
- content: "\e055"; }
1765
-
1766
- .glyphicon-list:before {
1767
- content: "\e056"; }
1768
-
1769
- .glyphicon-indent-left:before {
1770
- content: "\e057"; }
1771
-
1772
- .glyphicon-indent-right:before {
1773
- content: "\e058"; }
1774
-
1775
- .glyphicon-facetime-video:before {
1776
- content: "\e059"; }
1777
-
1778
- .glyphicon-picture:before {
1779
- content: "\e060"; }
1780
-
1781
- .glyphicon-map-marker:before {
1782
- content: "\e062"; }
1783
-
1784
- .glyphicon-adjust:before {
1785
- content: "\e063"; }
1786
-
1787
- .glyphicon-tint:before {
1788
- content: "\e064"; }
1789
-
1790
- .glyphicon-edit:before {
1791
- content: "\e065"; }
1792
-
1793
- .glyphicon-share:before {
1794
- content: "\e066"; }
1795
-
1796
- .glyphicon-check:before {
1797
- content: "\e067"; }
1798
-
1799
- .glyphicon-move:before {
1800
- content: "\e068"; }
1801
-
1802
- .glyphicon-step-backward:before {
1803
- content: "\e069"; }
1804
-
1805
- .glyphicon-fast-backward:before {
1806
- content: "\e070"; }
1807
-
1808
- .glyphicon-backward:before {
1809
- content: "\e071"; }
1810
-
1811
- .glyphicon-play:before {
1812
- content: "\e072"; }
1813
-
1814
- .glyphicon-pause:before {
1815
- content: "\e073"; }
1816
-
1817
- .glyphicon-stop:before {
1818
- content: "\e074"; }
1819
-
1820
- .glyphicon-forward:before {
1821
- content: "\e075"; }
1822
-
1823
- .glyphicon-fast-forward:before {
1824
- content: "\e076"; }
1825
-
1826
- .glyphicon-step-forward:before {
1827
- content: "\e077"; }
1828
-
1829
- .glyphicon-eject:before {
1830
- content: "\e078"; }
1831
-
1832
- .glyphicon-chevron-left:before {
1833
- content: "\e079"; }
1834
-
1835
- .glyphicon-chevron-right:before {
1836
- content: "\e080"; }
1837
-
1838
- .glyphicon-plus-sign:before {
1839
- content: "\e081"; }
1840
-
1841
- .glyphicon-minus-sign:before {
1842
- content: "\e082"; }
1843
-
1844
- .glyphicon-remove-sign:before {
1845
- content: "\e083"; }
1846
-
1847
- .glyphicon-ok-sign:before {
1848
- content: "\e084"; }
1849
-
1850
- .glyphicon-question-sign:before {
1851
- content: "\e085"; }
1852
-
1853
- .glyphicon-info-sign:before {
1854
- content: "\e086"; }
1855
-
1856
- .glyphicon-screenshot:before {
1857
- content: "\e087"; }
1858
-
1859
- .glyphicon-remove-circle:before {
1860
- content: "\e088"; }
1861
-
1862
- .glyphicon-ok-circle:before {
1863
- content: "\e089"; }
1864
-
1865
- .glyphicon-ban-circle:before {
1866
- content: "\e090"; }
1867
-
1868
- .glyphicon-arrow-left:before {
1869
- content: "\e091"; }
1870
-
1871
- .glyphicon-arrow-right:before {
1872
- content: "\e092"; }
1873
-
1874
- .glyphicon-arrow-up:before {
1875
- content: "\e093"; }
1876
-
1877
- .glyphicon-arrow-down:before {
1878
- content: "\e094"; }
1879
-
1880
- .glyphicon-share-alt:before {
1881
- content: "\e095"; }
1882
-
1883
- .glyphicon-resize-full:before {
1884
- content: "\e096"; }
1885
-
1886
- .glyphicon-resize-small:before {
1887
- content: "\e097"; }
1888
-
1889
- .glyphicon-exclamation-sign:before {
1890
- content: "\e101"; }
1891
-
1892
- .glyphicon-gift:before {
1893
- content: "\e102"; }
1894
-
1895
- .glyphicon-leaf:before {
1896
- content: "\e103"; }
1897
-
1898
- .glyphicon-fire:before {
1899
- content: "\e104"; }
1900
-
1901
- .glyphicon-eye-open:before {
1902
- content: "\e105"; }
1903
-
1904
- .glyphicon-eye-close:before {
1905
- content: "\e106"; }
1906
-
1907
- .glyphicon-warning-sign:before {
1908
- content: "\e107"; }
1909
-
1910
- .glyphicon-plane:before {
1911
- content: "\e108"; }
1912
-
1913
- .glyphicon-calendar:before {
1914
- content: "\e109"; }
1915
-
1916
- .glyphicon-random:before {
1917
- content: "\e110"; }
1918
-
1919
- .glyphicon-comment:before {
1920
- content: "\e111"; }
1921
-
1922
- .glyphicon-magnet:before {
1923
- content: "\e112"; }
1924
-
1925
- .glyphicon-chevron-up:before {
1926
- content: "\e113"; }
1927
-
1928
- .glyphicon-chevron-down:before {
1929
- content: "\e114"; }
1930
-
1931
- .glyphicon-retweet:before {
1932
- content: "\e115"; }
1933
-
1934
- .glyphicon-shopping-cart:before {
1935
- content: "\e116"; }
1936
-
1937
- .glyphicon-folder-close:before {
1938
- content: "\e117"; }
1939
-
1940
- .glyphicon-folder-open:before {
1941
- content: "\e118"; }
1942
-
1943
- .glyphicon-resize-vertical:before {
1944
- content: "\e119"; }
1945
-
1946
- .glyphicon-resize-horizontal:before {
1947
- content: "\e120"; }
1948
-
1949
- .glyphicon-hdd:before {
1950
- content: "\e121"; }
1951
-
1952
- .glyphicon-bullhorn:before {
1953
- content: "\e122"; }
1954
-
1955
- .glyphicon-bell:before {
1956
- content: "\e123"; }
1957
-
1958
- .glyphicon-certificate:before {
1959
- content: "\e124"; }
1960
-
1961
- .glyphicon-thumbs-up:before {
1962
- content: "\e125"; }
1963
-
1964
- .glyphicon-thumbs-down:before {
1965
- content: "\e126"; }
1966
-
1967
- .glyphicon-hand-right:before {
1968
- content: "\e127"; }
1969
-
1970
- .glyphicon-hand-left:before {
1971
- content: "\e128"; }
1972
-
1973
- .glyphicon-hand-up:before {
1974
- content: "\e129"; }
1975
-
1976
- .glyphicon-hand-down:before {
1977
- content: "\e130"; }
1978
-
1979
- .glyphicon-circle-arrow-right:before {
1980
- content: "\e131"; }
1981
-
1982
- .glyphicon-circle-arrow-left:before {
1983
- content: "\e132"; }
1984
-
1985
- .glyphicon-circle-arrow-up:before {
1986
- content: "\e133"; }
1987
-
1988
- .glyphicon-circle-arrow-down:before {
1989
- content: "\e134"; }
1990
-
1991
- .glyphicon-globe:before {
1992
- content: "\e135"; }
1993
-
1994
- .glyphicon-wrench:before {
1995
- content: "\e136"; }
1996
-
1997
- .glyphicon-tasks:before {
1998
- content: "\e137"; }
1999
-
2000
- .glyphicon-filter:before {
2001
- content: "\e138"; }
2002
-
2003
- .glyphicon-briefcase:before {
2004
- content: "\e139"; }
2005
-
2006
- .glyphicon-fullscreen:before {
2007
- content: "\e140"; }
2008
-
2009
- .glyphicon-dashboard:before {
2010
- content: "\e141"; }
2011
-
2012
- .glyphicon-paperclip:before {
2013
- content: "\e142"; }
2014
-
2015
- .glyphicon-heart-empty:before {
2016
- content: "\e143"; }
2017
-
2018
- .glyphicon-link:before {
2019
- content: "\e144"; }
2020
-
2021
- .glyphicon-phone:before {
2022
- content: "\e145"; }
2023
-
2024
- .glyphicon-pushpin:before {
2025
- content: "\e146"; }
2026
-
2027
- .glyphicon-usd:before {
2028
- content: "\e148"; }
2029
-
2030
- .glyphicon-gbp:before {
2031
- content: "\e149"; }
2032
-
2033
- .glyphicon-sort:before {
2034
- content: "\e150"; }
2035
-
2036
- .glyphicon-sort-by-alphabet:before {
2037
- content: "\e151"; }
2038
-
2039
- .glyphicon-sort-by-alphabet-alt:before {
2040
- content: "\e152"; }
2041
-
2042
- .glyphicon-sort-by-order:before {
2043
- content: "\e153"; }
2044
-
2045
- .glyphicon-sort-by-order-alt:before {
2046
- content: "\e154"; }
2047
-
2048
- .glyphicon-sort-by-attributes:before {
2049
- content: "\e155"; }
2050
-
2051
- .glyphicon-sort-by-attributes-alt:before {
2052
- content: "\e156"; }
2053
-
2054
- .glyphicon-unchecked:before {
2055
- content: "\e157"; }
2056
-
2057
- .glyphicon-expand:before {
2058
- content: "\e158"; }
2059
-
2060
- .glyphicon-collapse-down:before {
2061
- content: "\e159"; }
2062
-
2063
- .glyphicon-collapse-up:before {
2064
- content: "\e160"; }
2065
-
2066
- .glyphicon-log-in:before {
2067
- content: "\e161"; }
2068
-
2069
- .glyphicon-flash:before {
2070
- content: "\e162"; }
2071
-
2072
- .glyphicon-log-out:before {
2073
- content: "\e163"; }
2074
-
2075
- .glyphicon-new-window:before {
2076
- content: "\e164"; }
2077
-
2078
- .glyphicon-record:before {
2079
- content: "\e165"; }
2080
-
2081
- .glyphicon-save:before {
2082
- content: "\e166"; }
2083
-
2084
- .glyphicon-open:before {
2085
- content: "\e167"; }
2086
-
2087
- .glyphicon-saved:before {
2088
- content: "\e168"; }
2089
-
2090
- .glyphicon-import:before {
2091
- content: "\e169"; }
2092
-
2093
- .glyphicon-export:before {
2094
- content: "\e170"; }
2095
-
2096
- .glyphicon-send:before {
2097
- content: "\e171"; }
2098
-
2099
- .glyphicon-floppy-disk:before {
2100
- content: "\e172"; }
2101
-
2102
- .glyphicon-floppy-saved:before {
2103
- content: "\e173"; }
2104
-
2105
- .glyphicon-floppy-remove:before {
2106
- content: "\e174"; }
2107
-
2108
- .glyphicon-floppy-save:before {
2109
- content: "\e175"; }
2110
-
2111
- .glyphicon-floppy-open:before {
2112
- content: "\e176"; }
2113
-
2114
- .glyphicon-credit-card:before {
2115
- content: "\e177"; }
2116
-
2117
- .glyphicon-transfer:before {
2118
- content: "\e178"; }
2119
-
2120
- .glyphicon-cutlery:before {
2121
- content: "\e179"; }
2122
-
2123
- .glyphicon-header:before {
2124
- content: "\e180"; }
2125
-
2126
- .glyphicon-compressed:before {
2127
- content: "\e181"; }
2128
-
2129
- .glyphicon-earphone:before {
2130
- content: "\e182"; }
2131
-
2132
- .glyphicon-phone-alt:before {
2133
- content: "\e183"; }
2134
-
2135
- .glyphicon-tower:before {
2136
- content: "\e184"; }
2137
-
2138
- .glyphicon-stats:before {
2139
- content: "\e185"; }
2140
-
2141
- .glyphicon-sd-video:before {
2142
- content: "\e186"; }
2143
-
2144
- .glyphicon-hd-video:before {
2145
- content: "\e187"; }
2146
-
2147
- .glyphicon-subtitles:before {
2148
- content: "\e188"; }
2149
-
2150
- .glyphicon-sound-stereo:before {
2151
- content: "\e189"; }
2152
-
2153
- .glyphicon-sound-dolby:before {
2154
- content: "\e190"; }
2155
-
2156
- .glyphicon-sound-5-1:before {
2157
- content: "\e191"; }
2158
-
2159
- .glyphicon-sound-6-1:before {
2160
- content: "\e192"; }
2161
-
2162
- .glyphicon-sound-7-1:before {
2163
- content: "\e193"; }
2164
-
2165
- .glyphicon-copyright-mark:before {
2166
- content: "\e194"; }
2167
-
2168
- .glyphicon-registration-mark:before {
2169
- content: "\e195"; }
2170
-
2171
- .glyphicon-cloud-download:before {
2172
- content: "\e197"; }
2173
-
2174
- .glyphicon-cloud-upload:before {
2175
- content: "\e198"; }
2176
-
2177
- .glyphicon-tree-conifer:before {
2178
- content: "\e199"; }
2179
-
2180
- .glyphicon-tree-deciduous:before {
2181
- content: "\e200"; }
2182
-
2183
- .caret {
2184
- display: inline-block;
2185
- width: 0;
2186
- height: 0;
2187
- margin-left: 2px;
2188
- vertical-align: middle;
2189
- border-top: 4px solid #000;
2190
- border-right: 4px solid transparent;
2191
- border-left: 4px solid transparent;
2192
- border-bottom: 0 dotted; }
2193
-
2194
- .dropdown {
2195
- position: relative; }
2196
-
2197
- .dropdown-toggle:focus {
2198
- outline: 0; }
2199
-
2200
- .dropdown-menu {
2201
- position: absolute;
2202
- top: 100%;
2203
- left: 0;
2204
- z-index: 1000;
2205
- display: none;
2206
- float: left;
2207
- min-width: 160px;
2208
- padding: 5px 0;
2209
- margin: 2px 0 0;
2210
- list-style: none;
2211
- font-size: 13px;
2212
- background-color: #fff;
2213
- border: 1px solid #ccc;
2214
- border: 1px solid rgba(0, 0, 0, 0.15);
2215
- border-radius: 4px;
2216
- -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
2217
- box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
2218
- background-clip: padding-box; }
2219
- .dropdown-menu.pull-right {
2220
- right: 0;
2221
- left: auto; }
2222
- .dropdown-menu .divider {
2223
- height: 1px;
2224
- margin: 8px 0;
2225
- overflow: hidden;
2226
- background-color: #e5e5e5; }
2227
- .dropdown-menu > li > a {
2228
- display: block;
2229
- padding: 3px 20px;
2230
- clear: both;
2231
- font-weight: normal;
2232
- line-height: 1.42857;
2233
- color: #333333;
2234
- white-space: nowrap; }
2235
-
2236
- .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
2237
- text-decoration: none;
2238
- color: #262626;
2239
- background-color: #f5f5f5; }
2240
-
2241
- .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
2242
- color: #fff;
2243
- text-decoration: none;
2244
- outline: 0;
2245
- background-color: #0069CC; }
2246
-
2247
- .dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
2248
- color: #999999; }
2249
-
2250
- .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
2251
- text-decoration: none;
2252
- background-color: transparent;
2253
- background-image: none;
2254
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2255
- cursor: not-allowed; }
2256
-
2257
- .open > .dropdown-menu {
2258
- display: block; }
2259
- .open > a {
2260
- outline: 0; }
2261
-
2262
- .dropdown-header {
2263
- display: block;
2264
- padding: 3px 20px;
2265
- font-size: 12px;
2266
- line-height: 1.42857;
2267
- color: #999999; }
2268
-
2269
- .dropdown-backdrop {
2270
- position: fixed;
2271
- left: 0;
2272
- right: 0;
2273
- bottom: 0;
2274
- top: 0;
2275
- z-index: 990; }
2276
-
2277
- .pull-right > .dropdown-menu {
2278
- right: 0;
2279
- left: auto; }
2280
-
2281
- .dropup .caret, .navbar-fixed-bottom .dropdown .caret {
2282
- border-top: 0 dotted;
2283
- border-bottom: 4px solid #000;
2284
- content: ""; }
2285
- .dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu {
2286
- top: auto;
2287
- bottom: 100%;
2288
- margin-bottom: 1px; }
2289
-
2290
- @media (min-width: 768px) {
2291
- .navbar-right .dropdown-menu {
2292
- right: 0;
2293
- left: auto; } }
2294
-
2295
- .btn-default .caret {
2296
- border-top-color: #333; }
2297
- .btn-primary .caret, .btn-success .caret, .btn-warning .caret, .btn-danger .caret, .btn-info .caret {
2298
- border-top-color: #fff; }
2299
-
2300
- .dropup .btn-default .caret {
2301
- border-bottom-color: #333; }
2302
- .dropup .btn-primary .caret, .dropup .btn-success .caret, .dropup .btn-warning .caret, .dropup .btn-danger .caret, .dropup .btn-info .caret {
2303
- border-bottom-color: #fff; }
2304
-
2305
- .btn-group, .btn-group-vertical {
2306
- position: relative;
2307
- display: inline-block;
2308
- vertical-align: middle; }
2309
- .btn-group > .btn, .btn-group-vertical > .btn {
2310
- position: relative;
2311
- float: left; }
2312
- .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn:hover, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn.active {
2313
- z-index: 2; }
2314
- .btn-group > .btn:focus, .btn-group-vertical > .btn:focus {
2315
- outline: none; }
2316
-
2317
- .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group {
2318
- margin-left: -1px; }
2319
-
2320
- .btn-toolbar:before, .btn-toolbar:after {
2321
- content: " ";
2322
- /* 1 */
2323
- display: table;
2324
- /* 2 */ }
2325
- .btn-toolbar:after {
2326
- clear: both; }
2327
- .btn-toolbar .btn-group {
2328
- float: left; }
2329
- .btn-toolbar > .btn + .btn, .btn-toolbar > .btn + .btn-group, .btn-toolbar > .btn-group + .btn, .btn-toolbar > .btn-group + .btn-group {
2330
- margin-left: 5px; }
2331
-
2332
- .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
2333
- border-radius: 0; }
2334
-
2335
- .btn-group > .btn:first-child {
2336
- margin-left: 0; }
2337
- .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
2338
- border-bottom-right-radius: 0;
2339
- border-top-right-radius: 0; }
2340
-
2341
- .btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
2342
- border-bottom-left-radius: 0;
2343
- border-top-left-radius: 0; }
2344
-
2345
- .btn-group > .btn-group {
2346
- float: left; }
2347
-
2348
- .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
2349
- border-radius: 0; }
2350
-
2351
- .btn-group > .btn-group:first-child > .btn:last-child, .btn-group > .btn-group:first-child > .dropdown-toggle {
2352
- border-bottom-right-radius: 0;
2353
- border-top-right-radius: 0; }
2354
-
2355
- .btn-group > .btn-group:last-child > .btn:first-child {
2356
- border-bottom-left-radius: 0;
2357
- border-top-left-radius: 0; }
2358
-
2359
- .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
2360
- outline: 0; }
2361
-
2362
-
2363
-
2364
-
2365
- .btn-group > .btn + .dropdown-toggle {
2366
- padding-left: 8px;
2367
- padding-right: 8px; }
2368
-
2369
- .btn-group > .btn-lg + .dropdown-toggle, .btn-group > .btn-lg + .btn-group-lg > .btn, .btn-group-lg > .btn-group > .btn-lg + .btn {
2370
- padding-left: 12px;
2371
- padding-right: 12px; }
2372
-
2373
- .btn-group.open .dropdown-toggle {
2374
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2375
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
2376
- .btn-group.open .dropdown-toggle.btn-link {
2377
- -webkit-box-shadow: none;
2378
- box-shadow: none; }
2379
-
2380
- .btn .caret {
2381
- margin-left: 0; }
2382
-
2383
- .btn-lg .caret, .btn-lg .btn-group-lg > .btn, .btn-group-lg > .btn-lg .btn {
2384
- border-width: 5px 5px 0;
2385
- border-bottom-width: 0; }
2386
-
2387
- .dropup .btn-lg .caret, .dropup .btn-lg .btn-group-lg > .btn, .btn-group-lg > .dropup .btn-lg .btn {
2388
- border-width: 0 5px 5px; }
2389
-
2390
- .btn-group-vertical > .btn, .btn-group-vertical > .btn-group {
2391
- display: block;
2392
- float: none;
2393
- width: 100%;
2394
- max-width: 100%; }
2395
- .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
2396
- content: " ";
2397
- /* 1 */
2398
- display: table;
2399
- /* 2 */ }
2400
- .btn-group-vertical > .btn-group:after {
2401
- clear: both; }
2402
- .btn-group-vertical > .btn-group > .btn {
2403
- float: none; }
2404
- .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
2405
- margin-top: -1px;
2406
- margin-left: 0; }
2407
-
2408
- .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
2409
- border-radius: 0; }
2410
- .btn-group-vertical > .btn:first-child:not(:last-child) {
2411
- border-top-right-radius: 4px;
2412
- border-bottom-right-radius: 0;
2413
- border-bottom-left-radius: 0; }
2414
- .btn-group-vertical > .btn:last-child:not(:first-child) {
2415
- border-bottom-left-radius: 4px;
2416
- border-top-right-radius: 0;
2417
- border-top-left-radius: 0; }
2418
-
2419
- .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
2420
- border-radius: 0; }
2421
-
2422
- .btn-group-vertical > .btn-group:first-child > .btn:last-child, .btn-group-vertical > .btn-group:first-child > .dropdown-toggle {
2423
- border-bottom-right-radius: 0;
2424
- border-bottom-left-radius: 0; }
2425
-
2426
- .btn-group-vertical > .btn-group:last-child > .btn:first-child {
2427
- border-top-right-radius: 0;
2428
- border-top-left-radius: 0; }
2429
-
2430
- .btn-group-justified {
2431
- display: table;
2432
- width: 100%;
2433
- table-layout: fixed;
2434
- border-collapse: separate; }
2435
- .btn-group-justified .btn {
2436
- float: none;
2437
- display: table-cell;
2438
- width: 1%; }
2439
-
2440
- [data-toggle="buttons"] > .btn > input[type="radio"], [data-toggle="buttons"] > .btn > input[type="checkbox"] {
2441
- display: none; }
2442
-
2443
- .input-group {
2444
- position: relative;
2445
- display: table;
2446
- border-collapse: separate; }
2447
- .input-group.col {
2448
- float: none;
2449
- padding-left: 0;
2450
- padding-right: 0; }
2451
- .input-group .form-control {
2452
- width: 100%;
2453
- margin-bottom: 0; }
2454
-
2455
-
2456
-
2457
- .input-group-addon, .input-group-btn, .input-group .form-control {
2458
- display: table-cell; }
2459
- .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) {
2460
- border-radius: 0; }
2461
-
2462
- .input-group-addon, .input-group-btn {
2463
- width: 1%;
2464
- white-space: nowrap;
2465
- vertical-align: middle; }
2466
-
2467
- .input-group-addon {
2468
- padding: 6px 12px;
2469
- font-size: 13px;
2470
- font-weight: normal;
2471
- line-height: 1;
2472
- color: #555555;
2473
- text-align: center;
2474
- background-color: #eeeeee;
2475
- border: 1px solid #ccc;
2476
- border-radius: 4px; }
2477
- .input-group-addon.input-sm, .input-group-sm > .input-group-addon.form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .input-group-addon.btn {
2478
- padding: 5px 10px;
2479
- font-size: 12px;
2480
- border-radius: 3px; }
2481
- .input-group-addon.input-lg, .input-group-lg > .input-group-addon.form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .input-group-addon.btn {
2482
- padding: 10px 16px;
2483
- font-size: 17px;
2484
- border-radius: 6px; }
2485
- .input-group-addon input[type="radio"], .input-group-addon input[type="checkbox"] {
2486
- margin-top: 0; }
2487
-
2488
- .input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
2489
- border-bottom-right-radius: 0;
2490
- border-top-right-radius: 0; }
2491
-
2492
- .input-group-addon:first-child {
2493
- border-right: 0; }
2494
-
2495
- .input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child) {
2496
- border-bottom-left-radius: 0;
2497
- border-top-left-radius: 0; }
2498
-
2499
- .input-group-addon:last-child {
2500
- border-left: 0; }
2501
-
2502
- .input-group-btn {
2503
- position: relative;
2504
- white-space: nowrap; }
2505
- .input-group-btn:first-child > .btn {
2506
- margin-right: -1px; }
2507
- .input-group-btn:last-child > .btn {
2508
- margin-left: -1px; }
2509
-
2510
- .input-group-btn > .btn {
2511
- position: relative; }
2512
- .input-group-btn > .btn + .btn {
2513
- margin-left: -4px; }
2514
- .input-group-btn > .btn:hover, .input-group-btn > .btn:active {
2515
- z-index: 2; }
2516
-
2517
- .nav {
2518
- margin-bottom: 0;
2519
- padding-left: 0;
2520
- list-style: none; }
2521
- .nav:before, .nav:after {
2522
- content: " ";
2523
- /* 1 */
2524
- display: table;
2525
- /* 2 */ }
2526
- .nav:after {
2527
- clear: both; }
2528
- .nav > li {
2529
- position: relative;
2530
- display: block; }
2531
- .nav > li > a {
2532
- position: relative;
2533
- display: block;
2534
- padding: 10px 15px; }
2535
- .nav > li > a:hover, .nav > li > a:focus {
2536
- text-decoration: none;
2537
- background-color: #eeeeee; }
2538
- .nav > li.disabled > a {
2539
- color: #999999; }
2540
- .nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
2541
- color: #999999;
2542
- text-decoration: none;
2543
- background-color: transparent;
2544
- cursor: not-allowed; }
2545
- .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
2546
- background-color: #eeeeee;
2547
- border-color: #0069CC; }
2548
- .nav .open > a .caret, .nav .open > a:hover .caret, .nav .open > a:focus .caret {
2549
- border-top-color: #004280;
2550
- border-bottom-color: #004280; }
2551
- .nav .nav-divider {
2552
- height: 1px;
2553
- margin: 8px 0;
2554
- overflow: hidden;
2555
- background-color: #e5e5e5; }
2556
- .nav > li > a > img {
2557
- max-width: none; }
2558
-
2559
- .nav-tabs {
2560
- border-bottom: 1px solid #ddd; }
2561
- .nav-tabs > li {
2562
- float: left;
2563
- margin-bottom: -1px; }
2564
- .nav-tabs > li > a {
2565
- margin-right: 2px;
2566
- line-height: 1.42857;
2567
- border: 1px solid transparent;
2568
- border-radius: 4px 4px 0 0; }
2569
- .nav-tabs > li > a:hover {
2570
- border-color: #eeeeee #eeeeee #ddd; }
2571
- .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
2572
- color: #555555;
2573
- background-color: #fff;
2574
- border: 1px solid #ddd;
2575
- border-bottom-color: transparent;
2576
- cursor: default; }
2577
-
2578
- .nav-pills > li {
2579
- float: left; }
2580
- .nav-pills > li > a {
2581
- border-radius: 4px; }
2582
- .nav-pills > li + li {
2583
- margin-left: 2px; }
2584
- .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
2585
- color: #fff;
2586
- background-color: #0069CC; }
2587
- .nav-pills > li.active > a .caret, .nav-pills > li.active > a:hover .caret, .nav-pills > li.active > a:focus .caret {
2588
- border-top-color: #fff;
2589
- border-bottom-color: #fff; }
2590
-
2591
- .nav-stacked > li {
2592
- float: none; }
2593
- .nav-stacked > li + li {
2594
- margin-top: 2px;
2595
- margin-left: 0; }
2596
-
2597
- .nav-justified, .nav-tabs.nav-justified {
2598
- width: 100%; }
2599
- .nav-justified > li, .nav-justified > .nav-tabs.nav-justified {
2600
- float: none; }
2601
- .nav-justified > li > a, .nav-justified > li > .nav-tabs.nav-justified {
2602
- text-align: center;
2603
- margin-bottom: 5px; }
2604
- .nav-justified > .dropdown .dropdown-menu, .nav-justified > .dropdown .nav-tabs.nav-justified {
2605
- top: auto;
2606
- left: auto; }
2607
- @media (min-width: 768px) {
2608
- .nav-justified > li, .nav-justified > .nav-tabs.nav-justified {
2609
- display: table-cell;
2610
- width: 1%; }
2611
- .nav-justified > li > a, .nav-justified > li > .nav-tabs.nav-justified {
2612
- margin-bottom: 0; } }
2613
-
2614
- .nav-tabs-justified, .nav-tabs.nav-justified, .nav-tabs.nav-justified {
2615
- border-bottom: 0; }
2616
- .nav-tabs-justified > li > a, .nav-tabs-justified > li > .nav-tabs.nav-justified, .nav-tabs-justified > li > .nav-tabs.nav-justified {
2617
- margin-right: 0;
2618
- border-radius: 4px; }
2619
- .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > .nav-tabs.nav-justified, .nav-tabs-justified > .active > .nav-tabs.nav-justified, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > .nav-tabs.nav-justified, .nav-tabs-justified > .active > .nav-tabs.nav-justified, .nav-tabs-justified > .active > a:focus, .nav-tabs-justified > .active > .nav-tabs.nav-justified, .nav-tabs-justified > .active > .nav-tabs.nav-justified {
2620
- border: 1px solid #ddd; }
2621
- @media (min-width: 768px) {
2622
- .nav-tabs-justified > li > a, .nav-tabs-justified > li > .nav-tabs.nav-justified, .nav-tabs-justified > li > .nav-tabs.nav-justified {
2623
- border-bottom: 1px solid #ddd;
2624
- border-radius: 4px 4px 0 0; }
2625
- .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > .nav-tabs.nav-justified, .nav-tabs-justified > .active > .nav-tabs.nav-justified, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > .nav-tabs.nav-justified, .nav-tabs-justified > .active > .nav-tabs.nav-justified, .nav-tabs-justified > .active > a:focus, .nav-tabs-justified > .active > .nav-tabs.nav-justified, .nav-tabs-justified > .active > .nav-tabs.nav-justified {
2626
- border-bottom-color: #fff; } }
2627
-
2628
- .tab-content > .tab-pane {
2629
- display: none; }
2630
- .tab-content > .active {
2631
- display: block; }
2632
-
2633
- .nav .caret {
2634
- border-top-color: #0069CC;
2635
- border-bottom-color: #0069CC; }
2636
-
2637
- .nav a:hover .caret {
2638
- border-top-color: #004280;
2639
- border-bottom-color: #004280; }
2640
-
2641
- .nav-tabs .dropdown-menu {
2642
- margin-top: -1px;
2643
- border-top-right-radius: 0;
2644
- border-top-left-radius: 0; }
2645
-
2646
- .navbar {
2647
- position: relative;
2648
- min-height: 40px;
2649
- margin-bottom: 18px;
2650
- border: 1px solid transparent; }
2651
- .navbar:before, .navbar:after {
2652
- content: " ";
2653
- /* 1 */
2654
- display: table;
2655
- /* 2 */ }
2656
- .navbar:after {
2657
- clear: both; }
2658
- @media (min-width: 768px) {
2659
- .navbar {
2660
- border-radius: 4px; } }
2661
-
2662
- .navbar-header:before, .navbar-header:after {
2663
- content: " ";
2664
- /* 1 */
2665
- display: table;
2666
- /* 2 */ }
2667
- .navbar-header:after {
2668
- clear: both; }
2669
- @media (min-width: 768px) {
2670
- .navbar-header {
2671
- float: left; } }
2672
-
2673
- .navbar-collapse {
2674
- max-height: 340px;
2675
- overflow-x: visible;
2676
- padding-right: 15px;
2677
- padding-left: 15px;
2678
- border-top: 1px solid transparent;
2679
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
2680
- -webkit-overflow-scrolling: touch; }
2681
- .navbar-collapse:before, .navbar-collapse:after {
2682
- content: " ";
2683
- /* 1 */
2684
- display: table;
2685
- /* 2 */ }
2686
- .navbar-collapse:after {
2687
- clear: both; }
2688
- .navbar-collapse.in {
2689
- overflow-y: auto; }
2690
- @media (min-width: 768px) {
2691
- .navbar-collapse {
2692
- width: auto;
2693
- border-top: 0;
2694
- box-shadow: none; }
2695
- .navbar-collapse.collapse {
2696
- display: block !important;
2697
- height: auto !important;
2698
- padding-bottom: 0;
2699
- overflow: visible !important; }
2700
- .navbar-collapse.in {
2701
- overflow-y: auto; }
2702
- .navbar-collapse .navbar-nav.navbar-left:first-child {
2703
- margin-left: -15px; }
2704
- .navbar-collapse .navbar-nav.navbar-right:last-child {
2705
- margin-right: -15px; }
2706
- .navbar-collapse .navbar-text:last-child {
2707
- margin-right: 0; } }
2708
-
2709
- .container > .navbar-header, .container > .navbar-collapse {
2710
- margin-right: -15px;
2711
- margin-left: -15px; }
2712
- @media (min-width: 768px) {
2713
- .container > .navbar-header, .container > .navbar-collapse {
2714
- margin-right: 0;
2715
- margin-left: 0; } }
2716
-
2717
- .navbar-static-top {
2718
- z-index: 1000;
2719
- border-width: 0 0 1px; }
2720
- @media (min-width: 768px) {
2721
- .navbar-static-top {
2722
- border-radius: 0; } }
2723
-
2724
- .navbar-fixed-top, .navbar-fixed-bottom {
2725
- position: fixed;
2726
- right: 0;
2727
- left: 0;
2728
- z-index: 1030; }
2729
- @media (min-width: 768px) {
2730
- .navbar-fixed-top, .navbar-fixed-bottom {
2731
- border-radius: 0; } }
2732
-
2733
- .navbar-fixed-top {
2734
- top: 0;
2735
- border-width: 0 0 1px; }
2736
-
2737
- .navbar-fixed-bottom {
2738
- bottom: 0;
2739
- margin-bottom: 0;
2740
- border-width: 1px 0 0; }
2741
-
2742
- .navbar-brand {
2743
- float: left;
2744
- padding: 11px 15px;
2745
- font-size: 17px;
2746
- line-height: 18px; }
2747
- .navbar-brand:hover, .navbar-brand:focus {
2748
- text-decoration: none; }
2749
- @media (min-width: 768px) {
2750
- .navbar > .container .navbar-brand {
2751
- margin-left: -15px; } }
2752
-
2753
- .navbar-toggle {
2754
- position: relative;
2755
- float: right;
2756
- margin-right: 15px;
2757
- padding: 9px 10px;
2758
- margin-top: 3px;
2759
- margin-bottom: 3px;
2760
- background-color: transparent;
2761
- border: 1px solid transparent;
2762
- border-radius: 4px; }
2763
- .navbar-toggle .icon-bar {
2764
- display: block;
2765
- width: 22px;
2766
- height: 2px;
2767
- border-radius: 1px; }
2768
- .navbar-toggle .icon-bar + .icon-bar {
2769
- margin-top: 4px; }
2770
- @media (min-width: 768px) {
2771
- .navbar-toggle {
2772
- display: none; } }
2773
-
2774
- .navbar-nav {
2775
- margin: 5.5px -15px; }
2776
- .navbar-nav > li > a {
2777
- padding-top: 10px;
2778
- padding-bottom: 10px;
2779
- line-height: 18px; }
2780
- @media (max-width: 767px) {
2781
- .navbar-nav .open .dropdown-menu {
2782
- position: static;
2783
- float: none;
2784
- width: auto;
2785
- margin-top: 0;
2786
- background-color: transparent;
2787
- border: 0;
2788
- box-shadow: none; }
2789
- .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header {
2790
- padding: 5px 15px 5px 25px; }
2791
- .navbar-nav .open .dropdown-menu > li > a {
2792
- line-height: 18px; }
2793
- .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
2794
- background-image: none; } }
2795
- @media (min-width: 768px) {
2796
- .navbar-nav {
2797
- float: left;
2798
- margin: 0; }
2799
- .navbar-nav > li {
2800
- float: left; }
2801
- .navbar-nav > li > a {
2802
- padding-top: 11px;
2803
- padding-bottom: 11px; } }
2804
-
2805
- @media (min-width: 768px) {
2806
- .navbar-left {
2807
- float: left !important; }
2808
- .navbar-right {
2809
- float: right !important; } }
2810
-
2811
- .navbar-form {
2812
- margin-left: -15px;
2813
- margin-right: -15px;
2814
- padding: 10px 15px;
2815
- border-top: 1px solid transparent;
2816
- border-bottom: 1px solid transparent;
2817
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
2818
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
2819
- margin-top: 4px;
2820
- margin-bottom: 4px; }
2821
- @media (max-width: 767px) {
2822
- .navbar-form .form-group {
2823
- margin-bottom: 5px; } }
2824
- @media (min-width: 768px) {
2825
- .navbar-form {
2826
- width: auto;
2827
- border: 0;
2828
- margin-left: 0;
2829
- margin-right: 0;
2830
- padding-top: 0;
2831
- padding-bottom: 0;
2832
- -webkit-box-shadow: none;
2833
- box-shadow: none; } }
2834
-
2835
- .navbar-nav > li > .dropdown-menu {
2836
- margin-top: 0;
2837
- border-top-right-radius: 0;
2838
- border-top-left-radius: 0; }
2839
-
2840
- .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
2841
- border-bottom-right-radius: 0;
2842
- border-bottom-left-radius: 0; }
2843
-
2844
- .navbar-nav.pull-right > li > .dropdown-menu, .navbar-nav > li > .dropdown-menu.pull-right {
2845
- left: auto;
2846
- right: 0; }
2847
-
2848
- .navbar-btn {
2849
- margin-top: 4px;
2850
- margin-bottom: 4px; }
2851
-
2852
- .navbar-text {
2853
- float: left;
2854
- margin-top: 11px;
2855
- margin-bottom: 11px; }
2856
- @media (min-width: 768px) {
2857
- .navbar-text {
2858
- margin-left: 15px;
2859
- margin-right: 15px; } }
2860
-
2861
- .navbar-default {
2862
- background-color: #f3f3f3;
2863
- border-color: #e2e2e2; }
2864
- .navbar-default .navbar-brand {
2865
- color: #333333; }
2866
- .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
2867
- color: #1a1a1a;
2868
- background-color: transparent; }
2869
- .navbar-default .navbar-text {
2870
- color: #777; }
2871
- .navbar-default .navbar-nav > li > a {
2872
- color: #333333; }
2873
- .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
2874
- color: #0069CC;
2875
- background-color: transparent; }
2876
- .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
2877
- color: #555;
2878
- background-color: #d9d9d9; }
2879
- .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
2880
- color: #ccc;
2881
- background-color: transparent; }
2882
- .navbar-default .navbar-toggle {
2883
- border-color: #ddd; }
2884
- .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
2885
- background-color: #ddd; }
2886
- .navbar-default .navbar-toggle .icon-bar {
2887
- background-color: #888; }
2888
- .navbar-default .navbar-collapse, .navbar-default .navbar-form {
2889
- border-color: #e2e2e2; }
2890
- .navbar-default .navbar-nav > .dropdown > a:hover .caret, .navbar-default .navbar-nav > .dropdown > a:focus .caret {
2891
- border-top-color: #0069CC;
2892
- border-bottom-color: #0069CC; }
2893
- .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
2894
- background-color: #d9d9d9;
2895
- color: #555; }
2896
- .navbar-default .navbar-nav > .open > a .caret, .navbar-default .navbar-nav > .open > a:hover .caret, .navbar-default .navbar-nav > .open > a:focus .caret {
2897
- border-top-color: #555;
2898
- border-bottom-color: #555; }
2899
- .navbar-default .navbar-nav > .dropdown > a .caret {
2900
- border-top-color: #333333;
2901
- border-bottom-color: #333333; }
2902
- @media (max-width: 767px) {
2903
- .navbar-default .navbar-nav .open .dropdown-menu > li > a {
2904
- color: #333333; }
2905
- .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
2906
- color: #0069CC;
2907
- background-color: transparent; }
2908
- .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
2909
- color: #555;
2910
- background-color: #d9d9d9; }
2911
- .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
2912
- color: #ccc;
2913
- background-color: transparent; } }
2914
- .navbar-default .navbar-link {
2915
- color: #333333; }
2916
- .navbar-default .navbar-link:hover {
2917
- color: #0069CC; }
2918
-
2919
- .navbar-inverse {
2920
- background-color: #222;
2921
- border-color: #090909; }
2922
- .navbar-inverse .navbar-brand {
2923
- color: #999999; }
2924
- .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
2925
- color: #fff;
2926
- background-color: transparent; }
2927
- .navbar-inverse .navbar-text {
2928
- color: #999999; }
2929
- .navbar-inverse .navbar-nav > li > a {
2930
- color: #999999; }
2931
- .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
2932
- color: #fff;
2933
- background-color: transparent; }
2934
- .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
2935
- color: #fff;
2936
- background-color: #090909; }
2937
- .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
2938
- color: #444;
2939
- background-color: transparent; }
2940
- .navbar-inverse .navbar-toggle {
2941
- border-color: #333; }
2942
- .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
2943
- background-color: #333; }
2944
- .navbar-inverse .navbar-toggle .icon-bar {
2945
- background-color: #fff; }
2946
- .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
2947
- border-color: #101010; }
2948
- .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
2949
- background-color: #090909;
2950
- color: #fff; }
2951
- .navbar-inverse .navbar-nav > .dropdown > a:hover .caret {
2952
- border-top-color: #fff;
2953
- border-bottom-color: #fff; }
2954
- .navbar-inverse .navbar-nav > .dropdown > a .caret {
2955
- border-top-color: #999999;
2956
- border-bottom-color: #999999; }
2957
- .navbar-inverse .navbar-nav > .open > a .caret, .navbar-inverse .navbar-nav > .open > a:hover .caret, .navbar-inverse .navbar-nav > .open > a:focus .caret {
2958
- border-top-color: #fff;
2959
- border-bottom-color: #fff; }
2960
- @media (max-width: 767px) {
2961
- .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
2962
- border-color: #090909; }
2963
- .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
2964
- color: #999999; }
2965
- .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
2966
- color: #fff;
2967
- background-color: transparent; }
2968
- .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
2969
- color: #fff;
2970
- background-color: #090909; }
2971
- .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
2972
- color: #444;
2973
- background-color: transparent; } }
2974
- .navbar-inverse .navbar-link {
2975
- color: #999999; }
2976
- .navbar-inverse .navbar-link:hover {
2977
- color: #fff; }
2978
-
2979
- .breadcrumb {
2980
- padding: 8px 15px;
2981
- margin-bottom: 18px;
2982
- list-style: none;
2983
- background-color: #f5f5f5;
2984
- border-radius: 4px; }
2985
- .breadcrumb > li {
2986
- display: inline-block; }
2987
- .breadcrumb > li + li:before {
2988
- content: "/\00a0";
2989
- padding: 0 5px;
2990
- color: #ccc; }
2991
- .breadcrumb > .active {
2992
- color: #999999; }
2993
-
2994
- .pagination {
2995
- display: inline-block;
2996
- padding-left: 0;
2997
- margin: 18px 0;
2998
- border-radius: 4px; }
2999
- .pagination > li {
3000
- display: inline; }
3001
- .pagination > li > a, .pagination > li > span {
3002
- position: relative;
3003
- float: left;
3004
- padding: 6px 12px;
3005
- line-height: 1.42857;
3006
- text-decoration: none;
3007
- background-color: #fff;
3008
- border: 1px solid #ddd;
3009
- margin-left: -1px; }
3010
- .pagination > li:first-child > a, .pagination > li:first-child > span {
3011
- margin-left: 0;
3012
- border-bottom-left-radius: 4px;
3013
- border-top-left-radius: 4px; }
3014
- .pagination > li:last-child > a, .pagination > li:last-child > span {
3015
- border-bottom-right-radius: 4px;
3016
- border-top-right-radius: 4px; }
3017
- .pagination > li > a:hover, .pagination > li > a:focus, .pagination > li > span:hover, .pagination > li > span:focus {
3018
- background-color: #eeeeee; }
3019
- .pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus, .pagination > .active > span, .pagination > .active > span:hover, .pagination > .active > span:focus {
3020
- z-index: 2;
3021
- color: #fff;
3022
- background-color: #0069CC;
3023
- border-color: #0069CC;
3024
- cursor: default; }
3025
- .pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus {
3026
- color: #999999;
3027
- background-color: #fff;
3028
- border-color: #ddd;
3029
- cursor: not-allowed; }
3030
-
3031
- .pagination-lg > li > a, .pagination-lg > li > span {
3032
- padding: 10px 16px;
3033
- font-size: 17px; }
3034
- .pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span {
3035
- border-bottom-left-radius: 6px;
3036
- border-top-left-radius: 6px; }
3037
- .pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {
3038
- border-bottom-right-radius: 6px;
3039
- border-top-right-radius: 6px; }
3040
-
3041
- .pagination-sm > li > a, .pagination-sm > li > span {
3042
- padding: 5px 10px;
3043
- font-size: 12px; }
3044
- .pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span {
3045
- border-bottom-left-radius: 3px;
3046
- border-top-left-radius: 3px; }
3047
- .pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span {
3048
- border-bottom-right-radius: 3px;
3049
- border-top-right-radius: 3px; }
3050
-
3051
- .pager {
3052
- padding-left: 0;
3053
- margin: 18px 0;
3054
- list-style: none;
3055
- text-align: center; }
3056
- .pager:before, .pager:after {
3057
- content: " ";
3058
- /* 1 */
3059
- display: table;
3060
- /* 2 */ }
3061
- .pager:after {
3062
- clear: both; }
3063
- .pager li {
3064
- display: inline; }
3065
- .pager li > a, .pager li > span {
3066
- display: inline-block;
3067
- padding: 5px 14px;
3068
- background-color: #fff;
3069
- border: 1px solid #ddd;
3070
- border-radius: 15px; }
3071
- .pager li > a:hover, .pager li > a:focus {
3072
- text-decoration: none;
3073
- background-color: #eeeeee; }
3074
- .pager .next > a, .pager .next > span {
3075
- float: right; }
3076
- .pager .previous > a, .pager .previous > span {
3077
- float: left; }
3078
- .pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focus, .pager .disabled > span {
3079
- color: #999999;
3080
- background-color: #fff;
3081
- cursor: not-allowed; }
3082
-
3083
- .label {
3084
- display: inline;
3085
- padding: 0.2em 0.6em 0.3em;
3086
- font-size: 75%;
3087
- font-weight: bold;
3088
- line-height: 1;
3089
- color: #fff;
3090
- text-align: center;
3091
- white-space: nowrap;
3092
- vertical-align: baseline;
3093
- border-radius: 0.25em; }
3094
- .label[href]:hover, .label[href]:focus {
3095
- color: #fff;
3096
- text-decoration: none;
3097
- cursor: pointer; }
3098
- .label:empty {
3099
- display: none; }
3100
-
3101
- .label-default {
3102
- background-color: #999999; }
3103
- .label-default[href]:hover, .label-default[href]:focus {
3104
- background-color: #808080; }
3105
-
3106
- .label-primary {
3107
- background-color: #0069CC; }
3108
- .label-primary[href]:hover, .label-primary[href]:focus {
3109
- background-color: #004f99; }
3110
-
3111
- .label-success {
3112
- background-color: #5FB000; }
3113
- .label-success[href]:hover, .label-success[href]:focus {
3114
- background-color: #457d00; }
3115
-
3116
- .label-info {
3117
- background-color: #6E50A1; }
3118
- .label-info[href]:hover, .label-info[href]:focus {
3119
- background-color: #563f7f; }
3120
-
3121
- .label-warning {
3122
- background-color: #EB9722; }
3123
- .label-warning[href]:hover, .label-warning[href]:focus {
3124
- background-color: #c87912; }
3125
-
3126
- .label-danger {
3127
- background-color: #D11313; }
3128
- .label-danger[href]:hover, .label-danger[href]:focus {
3129
- background-color: #a20f0f; }
3130
-
3131
- .badge {
3132
- display: inline-block;
3133
- min-width: 10px;
3134
- padding: 3px 7px;
3135
- font-size: 12px;
3136
- font-weight: bold;
3137
- color: #fff;
3138
- line-height: 1;
3139
- vertical-align: baseline;
3140
- white-space: nowrap;
3141
- text-align: center;
3142
- background-color: #999999;
3143
- border-radius: 10px; }
3144
- .badge:empty {
3145
- display: none; }
3146
-
3147
- a.badge:hover, a.badge:focus {
3148
- color: #fff;
3149
- text-decoration: none;
3150
- cursor: pointer; }
3151
-
3152
- .btn .badge {
3153
- position: relative;
3154
- top: -1px; }
3155
-
3156
- a.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
3157
- color: #0069CC;
3158
- background-color: #fff; }
3159
-
3160
- .nav-pills > li > a > .badge {
3161
- margin-left: 3px; }
3162
-
3163
- .jumbotron {
3164
- padding: 30px;
3165
- margin-bottom: 30px;
3166
- font-size: 20px;
3167
- font-weight: 200;
3168
- line-height: 2.14286;
3169
- color: inherit;
3170
- background-color: #eeeeee; }
3171
- .jumbotron h1 {
3172
- line-height: 1;
3173
- color: inherit; }
3174
- .jumbotron p {
3175
- line-height: 1.4; }
3176
- .container .jumbotron {
3177
- border-radius: 6px; }
3178
- @media screen and (min-width: 768px) {
3179
- .jumbotron {
3180
- padding-top: 48px;
3181
- padding-bottom: 48px; }
3182
- .container .jumbotron {
3183
- padding-left: 60px;
3184
- padding-right: 60px; }
3185
- .jumbotron h1 {
3186
- font-size: 58.5px; } }
3187
-
3188
- .thumbnail {
3189
- display: block;
3190
- margin-bottom: 18px; }
3191
- .thumbnail > img {
3192
- display: block;
3193
- max-width: 100%;
3194
- height: auto;
3195
- margin-left: auto;
3196
- margin-right: auto; }
3197
- .thumbnail .caption {
3198
- padding: 9px;
3199
- color: #333333; }
3200
-
3201
- a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
3202
- border-color: #0069CC; }
3203
-
3204
- .alert {
3205
- padding: 15px;
3206
- margin-bottom: 18px;
3207
- border: 1px solid transparent;
3208
- border-radius: 4px; }
3209
- .alert h4 {
3210
- margin-top: 0;
3211
- color: inherit; }
3212
- .alert .alert-link {
3213
- font-weight: bold; }
3214
- .alert > p, .alert > ul {
3215
- margin-bottom: 0; }
3216
- .alert > p + p {
3217
- margin-top: 5px; }
3218
-
3219
- .alert-dismissable {
3220
- padding-right: 35px; }
3221
- .alert-dismissable .close {
3222
- position: relative;
3223
- top: -2px;
3224
- right: -21px;
3225
- color: inherit; }
3226
-
3227
- .alert-success {
3228
- background-color: #dff0d8;
3229
- border-color: #d7e9c6;
3230
- color: #3c763d; }
3231
- .alert-success hr {
3232
- border-top-color: #cae2b3; }
3233
- .alert-success .alert-link {
3234
- color: #2b542b; }
3235
-
3236
- .alert-info {
3237
- background-color: #d9edf7;
3238
- border-color: #bce9f1;
3239
- color: #31708f; }
3240
- .alert-info hr {
3241
- border-top-color: #a6e2ec; }
3242
- .alert-info .alert-link {
3243
- color: #245369; }
3244
-
3245
- .alert-warning {
3246
- background-color: #fcf8e3;
3247
- border-color: #faeacc;
3248
- color: #8a6d3b; }
3249
- .alert-warning hr {
3250
- border-top-color: #f7e0b5; }
3251
- .alert-warning .alert-link {
3252
- color: #66502c; }
3253
-
3254
- .alert-danger {
3255
- background-color: #f2dede;
3256
- border-color: #ebccd1;
3257
- color: #a94442; }
3258
- .alert-danger hr {
3259
- border-top-color: #e4b9c0; }
3260
- .alert-danger .alert-link {
3261
- color: #843534; }
3262
-
3263
- @-webkit-keyframes progress-bar-stripes {
3264
- from {
3265
- background-position: 40px 0; }
3266
-
3267
- to {
3268
- background-position: 0 0; } }
3269
-
3270
- @-moz-keyframes progress-bar-stripes {
3271
- from {
3272
- background-position: 40px 0; }
3273
-
3274
- to {
3275
- background-position: 0 0; } }
3276
-
3277
- @-o-keyframes progress-bar-stripes {
3278
- from {
3279
- background-position: 0 0; }
3280
-
3281
- to {
3282
- background-position: 40px 0; } }
3283
-
3284
- @keyframes progress-bar-stripes {
3285
- from {
3286
- background-position: 40px 0; }
3287
-
3288
- to {
3289
- background-position: 0 0; } }
3290
-
3291
- .progress {
3292
- overflow: hidden;
3293
- height: 18px;
3294
- margin-bottom: 18px;
3295
- background-color: #f5f5f5;
3296
- border-radius: 4px;
3297
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
3298
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }
3299
-
3300
- .progress-bar {
3301
- float: left;
3302
- width: 0%;
3303
- height: 100%;
3304
- font-size: 12px;
3305
- line-height: 18px;
3306
- color: #fff;
3307
- text-align: center;
3308
- background-color: #0069CC;
3309
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
3310
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
3311
- -webkit-transition: width 0.6s ease;
3312
- transition: width 0.6s ease; }
3313
-
3314
- .progress-striped .progress-bar {
3315
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
3316
- 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);
3317
- background-image: -moz-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);
3318
- 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);
3319
- background-size: 40px 40px; }
3320
-
3321
- .progress.active .progress-bar {
3322
- -webkit-animation: progress-bar-stripes 2s linear infinite;
3323
- animation: progress-bar-stripes 2s linear infinite; }
3324
-
3325
- .progress-bar-success {
3326
- background-color: #5FB000; }
3327
- .progress-striped .progress-bar-success {
3328
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
3329
- 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);
3330
- background-image: -moz-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);
3331
- 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); }
3332
-
3333
- .progress-bar-info {
3334
- background-color: #6E50A1; }
3335
- .progress-striped .progress-bar-info {
3336
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
3337
- 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);
3338
- background-image: -moz-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);
3339
- 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); }
3340
-
3341
- .progress-bar-warning {
3342
- background-color: #EB9722; }
3343
- .progress-striped .progress-bar-warning {
3344
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
3345
- 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);
3346
- background-image: -moz-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);
3347
- 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); }
3348
-
3349
- .progress-bar-danger {
3350
- background-color: #D11313; }
3351
- .progress-striped .progress-bar-danger {
3352
- background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
3353
- 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);
3354
- background-image: -moz-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);
3355
- 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); }
3356
-
3357
- .media, .media-body {
3358
- overflow: hidden;
3359
- zoom: 1; }
3360
-
3361
- .media, .media .media {
3362
- margin-top: 15px; }
3363
-
3364
- .media:first-child {
3365
- margin-top: 0; }
3366
-
3367
- .media-object {
3368
- display: block; }
3369
-
3370
- .media-heading {
3371
- margin: 0 0 5px; }
3372
-
3373
- .media > .pull-left {
3374
- margin-right: 10px; }
3375
- .media > .pull-right {
3376
- margin-left: 10px; }
3377
-
3378
- .media-list {
3379
- padding-left: 0;
3380
- list-style: none; }
3381
-
3382
- .list-group {
3383
- margin-bottom: 20px;
3384
- padding-left: 0; }
3385
-
3386
- .list-group-item {
3387
- position: relative;
3388
- display: block;
3389
- padding: 10px 15px;
3390
- margin-bottom: -1px;
3391
- background-color: #fff;
3392
- border: 1px solid #ddd; }
3393
- .list-group-item:first-child {
3394
- border-top-right-radius: 4px;
3395
- border-top-left-radius: 4px; }
3396
- .list-group-item:last-child {
3397
- margin-bottom: 0;
3398
- border-bottom-right-radius: 4px;
3399
- border-bottom-left-radius: 4px; }
3400
- .list-group-item > .badge {
3401
- float: right; }
3402
- .list-group-item > .badge + .badge {
3403
- margin-right: 5px; }
3404
-
3405
- a.list-group-item {
3406
- color: #555; }
3407
- a.list-group-item .list-group-item-heading {
3408
- color: #333; }
3409
- a.list-group-item:hover, a.list-group-item:focus {
3410
- text-decoration: none;
3411
- background-color: #f5f5f5; }
3412
- a.list-group-item.active, a.list-group-item.active:hover, a.list-group-item.active:focus {
3413
- z-index: 2;
3414
- color: #fff;
3415
- background-color: #0069CC;
3416
- border-color: #0069CC; }
3417
- a.list-group-item.active .list-group-item-heading, a.list-group-item.active:hover .list-group-item-heading, a.list-group-item.active:focus .list-group-item-heading {
3418
- color: inherit; }
3419
- a.list-group-item.active .list-group-item-text, a.list-group-item.active:hover .list-group-item-text, a.list-group-item.active:focus .list-group-item-text {
3420
- color: #99ceff; }
3421
-
3422
- .list-group-item-heading {
3423
- margin-top: 0;
3424
- margin-bottom: 5px; }
3425
-
3426
- .list-group-item-text {
3427
- margin-bottom: 0;
3428
- line-height: 1.3; }
3429
-
3430
- .panel {
3431
- margin-bottom: 18px;
3432
- background-color: #fff;
3433
- border: 1px solid transparent;
3434
- border-radius: 4px;
3435
- -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
3436
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }
3437
-
3438
- .panel-body {
3439
- padding: 15px; }
3440
- .panel-body:before, .panel-body:after {
3441
- content: " ";
3442
- /* 1 */
3443
- display: table;
3444
- /* 2 */ }
3445
- .panel-body:after {
3446
- clear: both; }
3447
-
3448
- .panel > .list-group {
3449
- margin-bottom: 0; }
3450
- .panel > .list-group .list-group-item {
3451
- border-width: 1px 0; }
3452
- .panel > .list-group .list-group-item:first-child {
3453
- border-top-right-radius: 0;
3454
- border-top-left-radius: 0; }
3455
- .panel > .list-group .list-group-item:last-child {
3456
- border-bottom: 0; }
3457
-
3458
- .panel-heading + .list-group .list-group-item:first-child {
3459
- border-top-width: 0; }
3460
-
3461
- .panel > .table, .panel > .table-responsive {
3462
- margin-bottom: 0; }
3463
- .panel > .panel-body + .table, .panel > .panel-body + .table-responsive {
3464
- border-top: 1px solid #ddd; }
3465
- .panel > .table-bordered, .panel > .table-responsive > .table-bordered {
3466
- border: 0; }
3467
- .panel > .table-bordered > thead > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
3468
- border-left: 0; }
3469
- .panel > .table-bordered > thead > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
3470
- border-right: 0; }
3471
- .panel > .table-bordered > thead > tr:last-child > th, .panel > .table-bordered > thead > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > thead > tr:last-child > th, .panel > .table-responsive > .table-bordered > thead > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td {
3472
- border-bottom: 0; }
3473
-
3474
- .panel-heading {
3475
- padding: 10px 15px;
3476
- border-bottom: 1px solid transparent;
3477
- border-top-right-radius: 3px;
3478
- border-top-left-radius: 3px; }
3479
- .panel-heading > .dropdown .dropdown-toggle {
3480
- color: inherit; }
3481
-
3482
- .panel-title {
3483
- margin-top: 0;
3484
- margin-bottom: 0;
3485
- font-size: 15px; }
3486
- .panel-title > a {
3487
- color: inherit; }
3488
-
3489
- .panel-footer {
3490
- padding: 10px 15px;
3491
- background-color: #f5f5f5;
3492
- border-top: 1px solid #ddd;
3493
- border-bottom-right-radius: 3px;
3494
- border-bottom-left-radius: 3px; }
3495
-
3496
- .panel-group .panel {
3497
- margin-bottom: 0;
3498
- border-radius: 4px;
3499
- overflow: hidden; }
3500
- .panel-group .panel + .panel {
3501
- margin-top: 5px; }
3502
- .panel-group .panel-heading {
3503
- border-bottom: 0; }
3504
- .panel-group .panel-heading + .panel-collapse .panel-body {
3505
- border-top: 1px solid #ddd; }
3506
- .panel-group .panel-footer {
3507
- border-top: 0; }
3508
- .panel-group .panel-footer + .panel-collapse .panel-body {
3509
- border-bottom: 1px solid #ddd; }
3510
-
3511
- .panel-default {
3512
- border-color: #ddd; }
3513
- .panel-default > .panel-heading {
3514
- color: #333333;
3515
- background-color: #f5f5f5;
3516
- border-color: #ddd; }
3517
- .panel-default > .panel-heading + .panel-collapse .panel-body {
3518
- border-top-color: #ddd; }
3519
- .panel-default > .panel-heading > .dropdown .caret {
3520
- border-color: #333333 transparent; }
3521
- .panel-default > .panel-footer + .panel-collapse .panel-body {
3522
- border-bottom-color: #ddd; }
3523
-
3524
- .panel-primary {
3525
- border-color: #0069CC; }
3526
- .panel-primary > .panel-heading {
3527
- color: #fff;
3528
- background-color: #0069CC;
3529
- border-color: #0069CC; }
3530
- .panel-primary > .panel-heading + .panel-collapse .panel-body {
3531
- border-top-color: #0069CC; }
3532
- .panel-primary > .panel-heading > .dropdown .caret {
3533
- border-color: #fff transparent; }
3534
- .panel-primary > .panel-footer + .panel-collapse .panel-body {
3535
- border-bottom-color: #0069CC; }
3536
-
3537
- .panel-success {
3538
- border-color: #d7e9c6; }
3539
- .panel-success > .panel-heading {
3540
- color: #3c763d;
3541
- background-color: #dff0d8;
3542
- border-color: #d7e9c6; }
3543
- .panel-success > .panel-heading + .panel-collapse .panel-body {
3544
- border-top-color: #d7e9c6; }
3545
- .panel-success > .panel-heading > .dropdown .caret {
3546
- border-color: #3c763d transparent; }
3547
- .panel-success > .panel-footer + .panel-collapse .panel-body {
3548
- border-bottom-color: #d7e9c6; }
3549
-
3550
- .panel-warning {
3551
- border-color: #faeacc; }
3552
- .panel-warning > .panel-heading {
3553
- color: #8a6d3b;
3554
- background-color: #fcf8e3;
3555
- border-color: #faeacc; }
3556
- .panel-warning > .panel-heading + .panel-collapse .panel-body {
3557
- border-top-color: #faeacc; }
3558
- .panel-warning > .panel-heading > .dropdown .caret {
3559
- border-color: #8a6d3b transparent; }
3560
- .panel-warning > .panel-footer + .panel-collapse .panel-body {
3561
- border-bottom-color: #faeacc; }
3562
-
3563
- .panel-danger {
3564
- border-color: #ebccd1; }
3565
- .panel-danger > .panel-heading {
3566
- color: #a94442;
3567
- background-color: #f2dede;
3568
- border-color: #ebccd1; }
3569
- .panel-danger > .panel-heading + .panel-collapse .panel-body {
3570
- border-top-color: #ebccd1; }
3571
- .panel-danger > .panel-heading > .dropdown .caret {
3572
- border-color: #a94442 transparent; }
3573
- .panel-danger > .panel-footer + .panel-collapse .panel-body {
3574
- border-bottom-color: #ebccd1; }
3575
-
3576
- .panel-info {
3577
- border-color: #bce9f1; }
3578
- .panel-info > .panel-heading {
3579
- color: #31708f;
3580
- background-color: #d9edf7;
3581
- border-color: #bce9f1; }
3582
- .panel-info > .panel-heading + .panel-collapse .panel-body {
3583
- border-top-color: #bce9f1; }
3584
- .panel-info > .panel-heading > .dropdown .caret {
3585
- border-color: #31708f transparent; }
3586
- .panel-info > .panel-footer + .panel-collapse .panel-body {
3587
- border-bottom-color: #bce9f1; }
3588
-
3589
- .well {
3590
- min-height: 20px;
3591
- padding: 19px;
3592
- margin-bottom: 20px;
3593
- background-color: #f5f5f5;
3594
- border: 1px solid #e3e3e3;
3595
- border-radius: 4px;
3596
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
3597
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }
3598
- .well blockquote {
3599
- border-color: #ddd;
3600
- border-color: rgba(0, 0, 0, 0.15); }
3601
-
3602
- .well-lg {
3603
- padding: 24px;
3604
- border-radius: 6px; }
3605
-
3606
- .well-sm {
3607
- padding: 9px;
3608
- border-radius: 3px; }
3609
-
3610
- .close {
3611
- float: right;
3612
- font-size: 19.5px;
3613
- font-weight: bold;
3614
- line-height: 1;
3615
- color: #000;
3616
- text-shadow: 0 1px 0 #fff;
3617
- opacity: 0.2;
3618
- filter: alpha(opacity=20); }
3619
- .close:hover, .close:focus {
3620
- color: #000;
3621
- text-decoration: none;
3622
- cursor: pointer;
3623
- opacity: 0.5;
3624
- filter: alpha(opacity=50); }
3625
-
3626
- button.close {
3627
- padding: 0;
3628
- cursor: pointer;
3629
- background: transparent;
3630
- border: 0;
3631
- -webkit-appearance: none; }
3632
-
3633
- .modal-open {
3634
- overflow: hidden; }
3635
-
3636
- .modal {
3637
- display: none;
3638
- overflow: auto;
3639
- overflow-y: scroll;
3640
- position: fixed;
3641
- top: 0;
3642
- right: 0;
3643
- bottom: 0;
3644
- left: 0;
3645
- z-index: 1040; }
3646
- .modal.fade .modal-dialog {
3647
- -webkit-transform: translate(0, -25%);
3648
- -ms-transform: translate(0, -25%);
3649
- transform: translate(0, -25%);
3650
- -webkit-transition: -webkit-transform 0.3s ease-out;
3651
- -moz-transition: -moz-transform 0.3s ease-out;
3652
- -o-transition: -o-transform 0.3s ease-out;
3653
- transition: transform 0.3s ease-out; }
3654
- .modal.in .modal-dialog {
3655
- -webkit-transform: translate(0, 0);
3656
- -ms-transform: translate(0, 0);
3657
- transform: translate(0, 0); }
3658
-
3659
- .modal-dialog {
3660
- position: relative;
3661
- margin-left: auto;
3662
- margin-right: auto;
3663
- width: auto;
3664
- padding: 10px;
3665
- z-index: 1050; }
3666
-
3667
- .modal-content {
3668
- position: relative;
3669
- background-color: #fff;
3670
- border: 1px solid #999;
3671
- border: 1px solid rgba(0, 0, 0, 0.2);
3672
- border-radius: 6px;
3673
- -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
3674
- box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
3675
- background-clip: padding-box;
3676
- outline: none; }
3677
-
3678
- .modal-backdrop {
3679
- position: fixed;
3680
- top: 0;
3681
- right: 0;
3682
- bottom: 0;
3683
- left: 0;
3684
- z-index: 1030;
3685
- background-color: #000; }
3686
- .modal-backdrop.fade {
3687
- opacity: 0;
3688
- filter: alpha(opacity=0); }
3689
- .modal-backdrop.in {
3690
- opacity: 0.5;
3691
- filter: alpha(opacity=50); }
3692
-
3693
- .modal-header {
3694
- padding: 15px;
3695
- border-bottom: 1px solid #e5e5e5;
3696
- min-height: 16.42857px; }
3697
-
3698
- .modal-header .close {
3699
- margin-top: -2px; }
3700
-
3701
- .modal-title {
3702
- margin: 0;
3703
- line-height: 1.42857; }
3704
-
3705
- .modal-body {
3706
- position: relative;
3707
- padding: 15px; }
3708
-
3709
- .modal-footer {
3710
- margin-top: 15px;
3711
- padding: 14px 15px 15px;
3712
- text-align: right;
3713
- border-top: 1px solid #e5e5e5; }
3714
- .modal-footer:before, .modal-footer:after {
3715
- content: " ";
3716
- /* 1 */
3717
- display: table;
3718
- /* 2 */ }
3719
- .modal-footer:after {
3720
- clear: both; }
3721
- .modal-footer .btn + .btn {
3722
- margin-left: 5px;
3723
- margin-bottom: 0; }
3724
- .modal-footer .btn-group .btn + .btn {
3725
- margin-left: -1px; }
3726
- .modal-footer .btn-block + .btn-block {
3727
- margin-left: 0; }
3728
-
3729
- @media screen and (min-width: 768px) {
3730
- .modal-dialog {
3731
- width: 600px;
3732
- padding-top: 30px;
3733
- padding-bottom: 30px; }
3734
- .modal-content {
3735
- -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
3736
- box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); } }
3737
-
3738
- .tooltip {
3739
- position: absolute;
3740
- z-index: 1070;
3741
- display: block;
3742
- visibility: visible;
3743
- font-size: 12px;
3744
- line-height: 1.4;
3745
- opacity: 0;
3746
- filter: alpha(opacity=0); }
3747
- .tooltip.in {
3748
- opacity: 0.9;
3749
- filter: alpha(opacity=90); }
3750
- .tooltip.top {
3751
- margin-top: -3px;
3752
- padding: 5px 0; }
3753
- .tooltip.right {
3754
- margin-left: 3px;
3755
- padding: 0 5px; }
3756
- .tooltip.bottom {
3757
- margin-top: 3px;
3758
- padding: 5px 0; }
3759
- .tooltip.left {
3760
- margin-left: -3px;
3761
- padding: 0 5px; }
3762
-
3763
- .tooltip-inner {
3764
- max-width: 200px;
3765
- padding: 3px 8px;
3766
- color: #fff;
3767
- text-align: center;
3768
- text-decoration: none;
3769
- background-color: #000;
3770
- border-radius: 4px; }
3771
-
3772
- .tooltip-arrow {
3773
- position: absolute;
3774
- width: 0;
3775
- height: 0;
3776
- border-color: transparent;
3777
- border-style: solid; }
3778
-
3779
- .tooltip.top .tooltip-arrow {
3780
- bottom: 0;
3781
- left: 50%;
3782
- margin-left: -5px;
3783
- border-width: 5px 5px 0;
3784
- border-top-color: #000; }
3785
- .tooltip.top-left .tooltip-arrow {
3786
- bottom: 0;
3787
- left: 5px;
3788
- border-width: 5px 5px 0;
3789
- border-top-color: #000; }
3790
- .tooltip.top-right .tooltip-arrow {
3791
- bottom: 0;
3792
- right: 5px;
3793
- border-width: 5px 5px 0;
3794
- border-top-color: #000; }
3795
- .tooltip.right .tooltip-arrow {
3796
- top: 50%;
3797
- left: 0;
3798
- margin-top: -5px;
3799
- border-width: 5px 5px 5px 0;
3800
- border-right-color: #000; }
3801
- .tooltip.left .tooltip-arrow {
3802
- top: 50%;
3803
- right: 0;
3804
- margin-top: -5px;
3805
- border-width: 5px 0 5px 5px;
3806
- border-left-color: #000; }
3807
- .tooltip.bottom .tooltip-arrow {
3808
- top: 0;
3809
- left: 50%;
3810
- margin-left: -5px;
3811
- border-width: 0 5px 5px;
3812
- border-bottom-color: #000; }
3813
- .tooltip.bottom-left .tooltip-arrow {
3814
- top: 0;
3815
- left: 5px;
3816
- border-width: 0 5px 5px;
3817
- border-bottom-color: #000; }
3818
- .tooltip.bottom-right .tooltip-arrow {
3819
- top: 0;
3820
- right: 5px;
3821
- border-width: 0 5px 5px;
3822
- border-bottom-color: #000; }
3823
-
3824
- .popover {
3825
- position: absolute;
3826
- top: 0;
3827
- left: 0;
3828
- z-index: 1060;
3829
- display: none;
3830
- max-width: 276px;
3831
- padding: 1px;
3832
- text-align: left;
3833
- background-color: #fff;
3834
- background-clip: padding-box;
3835
- border: 1px solid #ccc;
3836
- border: 1px solid rgba(0, 0, 0, 0.2);
3837
- border-radius: 6px;
3838
- -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
3839
- box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
3840
- white-space: normal; }
3841
- .popover.top {
3842
- margin-top: -10px; }
3843
- .popover.right {
3844
- margin-left: 10px; }
3845
- .popover.bottom {
3846
- margin-top: 10px; }
3847
- .popover.left {
3848
- margin-left: -10px; }
3849
-
3850
- .popover-title {
3851
- margin: 0;
3852
- padding: 8px 14px;
3853
- font-size: 13px;
3854
- font-weight: normal;
3855
- line-height: 18px;
3856
- background-color: #f7f7f7;
3857
- border-bottom: 1px solid #ebebeb;
3858
- border-radius: 5px 5px 0 0; }
3859
-
3860
- .popover-content {
3861
- padding: 9px 14px; }
3862
-
3863
- .popover .arrow, .popover .arrow:after {
3864
- position: absolute;
3865
- display: block;
3866
- width: 0;
3867
- height: 0;
3868
- border-color: transparent;
3869
- border-style: solid; }
3870
-
3871
- .popover .arrow {
3872
- border-width: 11px; }
3873
-
3874
- .popover .arrow:after {
3875
- border-width: 10px;
3876
- content: ""; }
3877
-
3878
- .popover.top .arrow {
3879
- left: 50%;
3880
- margin-left: -11px;
3881
- border-bottom-width: 0;
3882
- border-top-color: #999999;
3883
- border-top-color: fade_in(rgba(0, 0, 0, 0.2), 0.05);
3884
- bottom: -11px; }
3885
- .popover.top .arrow:after {
3886
- content: " ";
3887
- bottom: 1px;
3888
- margin-left: -10px;
3889
- border-bottom-width: 0;
3890
- border-top-color: #fff; }
3891
- .popover.right .arrow {
3892
- top: 50%;
3893
- left: -11px;
3894
- margin-top: -11px;
3895
- border-left-width: 0;
3896
- border-right-color: #999999;
3897
- border-right-color: fade_in(rgba(0, 0, 0, 0.2), 0.05); }
3898
- .popover.right .arrow:after {
3899
- content: " ";
3900
- left: 1px;
3901
- bottom: -10px;
3902
- border-left-width: 0;
3903
- border-right-color: #fff; }
3904
- .popover.bottom .arrow {
3905
- left: 50%;
3906
- margin-left: -11px;
3907
- border-top-width: 0;
3908
- border-bottom-color: #999999;
3909
- border-bottom-color: fade_in(rgba(0, 0, 0, 0.2), 0.05);
3910
- top: -11px; }
3911
- .popover.bottom .arrow:after {
3912
- content: " ";
3913
- top: 1px;
3914
- margin-left: -10px;
3915
- border-top-width: 0;
3916
- border-bottom-color: #fff; }
3917
- .popover.left .arrow {
3918
- top: 50%;
3919
- right: -11px;
3920
- margin-top: -11px;
3921
- border-right-width: 0;
3922
- border-left-color: #999999;
3923
- border-left-color: fade_in(rgba(0, 0, 0, 0.2), 0.05); }
3924
- .popover.left .arrow:after {
3925
- content: " ";
3926
- right: 1px;
3927
- border-right-width: 0;
3928
- border-left-color: #fff;
3929
- bottom: -10px; }
3930
-
3931
- .carousel {
3932
- position: relative; }
3933
-
3934
- .carousel-inner {
3935
- position: relative;
3936
- overflow: hidden;
3937
- width: 100%; }
3938
- .carousel-inner > .item {
3939
- display: none;
3940
- position: relative;
3941
- -webkit-transition: 0.6s ease-in-out left;
3942
- transition: 0.6s ease-in-out left; }
3943
- .carousel-inner > .item > img, .carousel-inner > .item > a > img {
3944
- display: block;
3945
- max-width: 100%;
3946
- height: auto;
3947
- line-height: 1; }
3948
- .carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
3949
- display: block; }
3950
- .carousel-inner > .active {
3951
- left: 0; }
3952
- .carousel-inner > .next, .carousel-inner > .prev {
3953
- position: absolute;
3954
- top: 0;
3955
- width: 100%; }
3956
- .carousel-inner > .next {
3957
- left: 100%; }
3958
- .carousel-inner > .prev {
3959
- left: -100%; }
3960
- .carousel-inner > .next.left, .carousel-inner > .prev.right {
3961
- left: 0; }
3962
- .carousel-inner > .active.left {
3963
- left: -100%; }
3964
- .carousel-inner > .active.right {
3965
- left: 100%; }
3966
-
3967
- .carousel-control {
3968
- position: absolute;
3969
- top: 0;
3970
- left: 0;
3971
- bottom: 0;
3972
- width: 15%;
3973
- opacity: 0.5;
3974
- filter: alpha(opacity=50);
3975
- font-size: 20px;
3976
- color: #fff;
3977
- text-align: center;
3978
- text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
3979
- .carousel-control.left {
3980
- background-image: -webkit-gradient(linear, 0% top, 100% top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
3981
- background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0%), color-stop(rgba(0, 0, 0, 0.0001) 100%));
3982
- background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
3983
- background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
3984
- background-repeat: repeat-x;
3985
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); }
3986
- .carousel-control.right {
3987
- left: auto;
3988
- right: 0;
3989
- background-image: -webkit-gradient(linear, 0% top, 100% top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
3990
- background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0%), color-stop(rgba(0, 0, 0, 0.5) 100%));
3991
- background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
3992
- background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
3993
- background-repeat: repeat-x;
3994
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); }
3995
- .carousel-control:hover, .carousel-control:focus {
3996
- color: #fff;
3997
- text-decoration: none;
3998
- opacity: 0.9;
3999
- filter: alpha(opacity=90); }
4000
- .carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right {
4001
- position: absolute;
4002
- top: 50%;
4003
- z-index: 5;
4004
- display: inline-block; }
4005
- .carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left {
4006
- left: 50%; }
4007
- .carousel-control .icon-next, .carousel-control .glyphicon-chevron-right {
4008
- right: 50%; }
4009
- .carousel-control .icon-prev, .carousel-control .icon-next {
4010
- width: 20px;
4011
- height: 20px;
4012
- margin-top: -10px;
4013
- margin-left: -10px;
4014
- font-family: serif; }
4015
- .carousel-control .icon-prev:before {
4016
- content: '\2039'; }
4017
- .carousel-control .icon-next:before {
4018
- content: '\203a'; }
4019
-
4020
- .carousel-indicators {
4021
- position: absolute;
4022
- bottom: 10px;
4023
- left: 50%;
4024
- z-index: 15;
4025
- width: 60%;
4026
- margin-left: -30%;
4027
- padding-left: 0;
4028
- list-style: none;
4029
- text-align: center; }
4030
- .carousel-indicators li {
4031
- display: inline-block;
4032
- width: 10px;
4033
- height: 10px;
4034
- margin: 1px;
4035
- text-indent: -999px;
4036
- border: 1px solid #fff;
4037
- border-radius: 10px;
4038
- cursor: pointer;
4039
- background-color: #000 \9;
4040
- background-color: rgba(0, 0, 0, 0); }
4041
- .carousel-indicators .active {
4042
- margin: 0;
4043
- width: 12px;
4044
- height: 12px;
4045
- background-color: #fff; }
4046
-
4047
- .carousel-caption {
4048
- position: absolute;
4049
- left: 15%;
4050
- right: 15%;
4051
- bottom: 20px;
4052
- z-index: 10;
4053
- padding-top: 20px;
4054
- padding-bottom: 20px;
4055
- color: #fff;
4056
- text-align: center;
4057
- text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
4058
- .carousel-caption .btn {
4059
- text-shadow: none; }
4060
-
4061
- @media screen and (min-width: 768px) {
4062
- .carousel-control .glyphicons-chevron-left, .carousel-control .glyphicons-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next {
4063
- width: 30px;
4064
- height: 30px;
4065
- margin-top: -15px;
4066
- margin-left: -15px;
4067
- font-size: 30px; }
4068
- .carousel-caption {
4069
- left: 20%;
4070
- right: 20%;
4071
- padding-bottom: 30px; }
4072
- .carousel-indicators {
4073
- bottom: 20px; } }
4074
-
4075
- .clearfix:before, .clearfix:after {
4076
- content: " ";
4077
- /* 1 */
4078
- display: table;
4079
- /* 2 */ }
4080
- .clearfix:after {
4081
- clear: both; }
4082
-
4083
- .center-block {
4084
- display: block;
4085
- margin-left: auto;
4086
- margin-right: auto; }
4087
-
4088
- .pull-right {
4089
- float: right !important; }
4090
-
4091
- .pull-left {
4092
- float: left !important; }
4093
-
4094
- .hide {
4095
- display: none !important; }
4096
-
4097
- .show {
4098
- display: block !important; }
4099
-
4100
- .invisible {
4101
- visibility: hidden; }
4102
-
4103
- .text-hide {
4104
- font: 0/0 a;
4105
- color: transparent;
4106
- text-shadow: none;
4107
- background-color: transparent;
4108
- border: 0; }
4109
-
4110
- .hidden {
4111
- display: none !important;
4112
- visibility: hidden !important; }
4113
-
4114
- @-ms-viewport {
4115
- width: device-width; }
4116
-
4117
- .visible-xs, tr.visible-xs, th.visible-xs, td.visible-xs {
4118
- display: none !important; }
4119
-
4120
- @media (max-width: 767px) {
4121
- .visible-xs {
4122
- display: block !important; }
4123
- tr.visible-xs {
4124
- display: table-row !important; }
4125
- th.visible-xs, td.visible-xs {
4126
- display: table-cell !important; } }
4127
-
4128
- @media (min-width: 768px) and (max-width: 991px) {
4129
- .visible-xs.visible-sm {
4130
- display: block !important; }
4131
- tr.visible-xs.visible-sm {
4132
- display: table-row !important; }
4133
- th.visible-xs.visible-sm, td.visible-xs.visible-sm {
4134
- display: table-cell !important; } }
4135
-
4136
- @media (min-width: 992px) and (max-width: 1199px) {
4137
- .visible-xs.visible-md {
4138
- display: block !important; }
4139
- tr.visible-xs.visible-md {
4140
- display: table-row !important; }
4141
- th.visible-xs.visible-md, td.visible-xs.visible-md {
4142
- display: table-cell !important; } }
4143
-
4144
- @media (min-width: 1200px) {
4145
- .visible-xs.visible-lg {
4146
- display: block !important; }
4147
- tr.visible-xs.visible-lg {
4148
- display: table-row !important; }
4149
- th.visible-xs.visible-lg, td.visible-xs.visible-lg {
4150
- display: table-cell !important; } }
4151
-
4152
- .visible-sm, tr.visible-sm, th.visible-sm, td.visible-sm {
4153
- display: none !important; }
4154
-
4155
- @media (max-width: 767px) {
4156
- .visible-sm.visible-xs {
4157
- display: block !important; }
4158
- tr.visible-sm.visible-xs {
4159
- display: table-row !important; }
4160
- th.visible-sm.visible-xs, td.visible-sm.visible-xs {
4161
- display: table-cell !important; } }
4162
-
4163
- @media (min-width: 768px) and (max-width: 991px) {
4164
- .visible-sm {
4165
- display: block !important; }
4166
- tr.visible-sm {
4167
- display: table-row !important; }
4168
- th.visible-sm, td.visible-sm {
4169
- display: table-cell !important; } }
4170
-
4171
- @media (min-width: 992px) and (max-width: 1199px) {
4172
- .visible-sm.visible-md {
4173
- display: block !important; }
4174
- tr.visible-sm.visible-md {
4175
- display: table-row !important; }
4176
- th.visible-sm.visible-md, td.visible-sm.visible-md {
4177
- display: table-cell !important; } }
4178
-
4179
- @media (min-width: 1200px) {
4180
- .visible-sm.visible-lg {
4181
- display: block !important; }
4182
- tr.visible-sm.visible-lg {
4183
- display: table-row !important; }
4184
- th.visible-sm.visible-lg, td.visible-sm.visible-lg {
4185
- display: table-cell !important; } }
4186
-
4187
- .visible-md, tr.visible-md, th.visible-md, td.visible-md {
4188
- display: none !important; }
4189
-
4190
- @media (max-width: 767px) {
4191
- .visible-md.visible-xs {
4192
- display: block !important; }
4193
- tr.visible-md.visible-xs {
4194
- display: table-row !important; }
4195
- th.visible-md.visible-xs, td.visible-md.visible-xs {
4196
- display: table-cell !important; } }
4197
-
4198
- @media (min-width: 768px) and (max-width: 991px) {
4199
- .visible-md.visible-sm {
4200
- display: block !important; }
4201
- tr.visible-md.visible-sm {
4202
- display: table-row !important; }
4203
- th.visible-md.visible-sm, td.visible-md.visible-sm {
4204
- display: table-cell !important; } }
4205
-
4206
- @media (min-width: 992px) and (max-width: 1199px) {
4207
- .visible-md {
4208
- display: block !important; }
4209
- tr.visible-md {
4210
- display: table-row !important; }
4211
- th.visible-md, td.visible-md {
4212
- display: table-cell !important; } }
4213
-
4214
- @media (min-width: 1200px) {
4215
- .visible-md.visible-lg {
4216
- display: block !important; }
4217
- tr.visible-md.visible-lg {
4218
- display: table-row !important; }
4219
- th.visible-md.visible-lg, td.visible-md.visible-lg {
4220
- display: table-cell !important; } }
4221
-
4222
- .visible-lg, tr.visible-lg, th.visible-lg, td.visible-lg {
4223
- display: none !important; }
4224
-
4225
- @media (max-width: 767px) {
4226
- .visible-lg.visible-xs {
4227
- display: block !important; }
4228
- tr.visible-lg.visible-xs {
4229
- display: table-row !important; }
4230
- th.visible-lg.visible-xs, td.visible-lg.visible-xs {
4231
- display: table-cell !important; } }
4232
-
4233
- @media (min-width: 768px) and (max-width: 991px) {
4234
- .visible-lg.visible-sm {
4235
- display: block !important; }
4236
- tr.visible-lg.visible-sm {
4237
- display: table-row !important; }
4238
- th.visible-lg.visible-sm, td.visible-lg.visible-sm {
4239
- display: table-cell !important; } }
4240
-
4241
- @media (min-width: 992px) and (max-width: 1199px) {
4242
- .visible-lg.visible-md {
4243
- display: block !important; }
4244
- tr.visible-lg.visible-md {
4245
- display: table-row !important; }
4246
- th.visible-lg.visible-md, td.visible-lg.visible-md {
4247
- display: table-cell !important; } }
4248
-
4249
- @media (min-width: 1200px) {
4250
- .visible-lg {
4251
- display: block !important; }
4252
- tr.visible-lg {
4253
- display: table-row !important; }
4254
- th.visible-lg, td.visible-lg {
4255
- display: table-cell !important; } }
4256
-
4257
- .hidden-xs {
4258
- display: block !important; }
4259
-
4260
- tr.hidden-xs {
4261
- display: table-row !important; }
4262
-
4263
- th.hidden-xs, td.hidden-xs {
4264
- display: table-cell !important; }
4265
-
4266
- @media (max-width: 767px) {
4267
- .hidden-xs, tr.hidden-xs, th.hidden-xs, td.hidden-xs {
4268
- display: none !important; } }
4269
-
4270
- @media (min-width: 768px) and (max-width: 991px) {
4271
- .hidden-xs.hidden-sm, tr.hidden-xs.hidden-sm, th.hidden-xs.hidden-sm, td.hidden-xs.hidden-sm {
4272
- display: none !important; } }
4273
-
4274
- @media (min-width: 992px) and (max-width: 1199px) {
4275
- .hidden-xs.hidden-md, tr.hidden-xs.hidden-md, th.hidden-xs.hidden-md, td.hidden-xs.hidden-md {
4276
- display: none !important; } }
4277
-
4278
- @media (min-width: 1200px) {
4279
- .hidden-xs.hidden-lg, tr.hidden-xs.hidden-lg, th.hidden-xs.hidden-lg, td.hidden-xs.hidden-lg {
4280
- display: none !important; } }
4281
-
4282
- .hidden-sm {
4283
- display: block !important; }
4284
-
4285
- tr.hidden-sm {
4286
- display: table-row !important; }
4287
-
4288
- th.hidden-sm, td.hidden-sm {
4289
- display: table-cell !important; }
4290
-
4291
- @media (max-width: 767px) {
4292
- .hidden-sm.hidden-xs, tr.hidden-sm.hidden-xs, th.hidden-sm.hidden-xs, td.hidden-sm.hidden-xs {
4293
- display: none !important; } }
4294
-
4295
- @media (min-width: 768px) and (max-width: 991px) {
4296
- .hidden-sm, tr.hidden-sm, th.hidden-sm, td.hidden-sm {
4297
- display: none !important; } }
4298
-
4299
- @media (min-width: 992px) and (max-width: 1199px) {
4300
- .hidden-sm.hidden-md, tr.hidden-sm.hidden-md, th.hidden-sm.hidden-md, td.hidden-sm.hidden-md {
4301
- display: none !important; } }
4302
-
4303
- @media (min-width: 1200px) {
4304
- .hidden-sm.hidden-lg, tr.hidden-sm.hidden-lg, th.hidden-sm.hidden-lg, td.hidden-sm.hidden-lg {
4305
- display: none !important; } }
4306
-
4307
- .hidden-md {
4308
- display: block !important; }
4309
-
4310
- tr.hidden-md {
4311
- display: table-row !important; }
4312
-
4313
- th.hidden-md, td.hidden-md {
4314
- display: table-cell !important; }
4315
-
4316
- @media (max-width: 767px) {
4317
- .hidden-md.hidden-xs, tr.hidden-md.hidden-xs, th.hidden-md.hidden-xs, td.hidden-md.hidden-xs {
4318
- display: none !important; } }
4319
-
4320
- @media (min-width: 768px) and (max-width: 991px) {
4321
- .hidden-md.hidden-sm, tr.hidden-md.hidden-sm, th.hidden-md.hidden-sm, td.hidden-md.hidden-sm {
4322
- display: none !important; } }
4323
-
4324
- @media (min-width: 992px) and (max-width: 1199px) {
4325
- .hidden-md, tr.hidden-md, th.hidden-md, td.hidden-md {
4326
- display: none !important; } }
4327
-
4328
- @media (min-width: 1200px) {
4329
- .hidden-md.hidden-lg, tr.hidden-md.hidden-lg, th.hidden-md.hidden-lg, td.hidden-md.hidden-lg {
4330
- display: none !important; } }
4331
-
4332
- .hidden-lg {
4333
- display: block !important; }
4334
-
4335
- tr.hidden-lg {
4336
- display: table-row !important; }
4337
-
4338
- th.hidden-lg, td.hidden-lg {
4339
- display: table-cell !important; }
4340
-
4341
- @media (max-width: 767px) {
4342
- .hidden-lg.hidden-xs, tr.hidden-lg.hidden-xs, th.hidden-lg.hidden-xs, td.hidden-lg.hidden-xs {
4343
- display: none !important; } }
4344
-
4345
- @media (min-width: 768px) and (max-width: 991px) {
4346
- .hidden-lg.hidden-sm, tr.hidden-lg.hidden-sm, th.hidden-lg.hidden-sm, td.hidden-lg.hidden-sm {
4347
- display: none !important; } }
4348
-
4349
- @media (min-width: 992px) and (max-width: 1199px) {
4350
- .hidden-lg.hidden-md, tr.hidden-lg.hidden-md, th.hidden-lg.hidden-md, td.hidden-lg.hidden-md {
4351
- display: none !important; } }
4352
-
4353
- @media (min-width: 1200px) {
4354
- .hidden-lg, tr.hidden-lg, th.hidden-lg, td.hidden-lg {
4355
- display: none !important; } }
4356
-
4357
- .visible-print, tr.visible-print, th.visible-print, td.visible-print {
4358
- display: none !important; }
4359
-
4360
- @media print {
4361
- .visible-print {
4362
- display: block !important; }
4363
- tr.visible-print {
4364
- display: table-row !important; }
4365
- th.visible-print, td.visible-print {
4366
- display: table-cell !important; }
4367
- .hidden-print, tr.hidden-print, th.hidden-print, td.hidden-print {
4368
- display: none !important; } }
4369
-
4370
- body {
4371
- padding-top: 65px;
4372
- padding-bottom: 50px; }
4373
- body a {
4374
- cursor: pointer; }
4375
-
4376
- .content dl {
4377
- margin-top: 0;
4378
- margin-bottom: 0; }
4379
-
4380
- .header .navbar-default {
4381
- background-image: -ms-linear-gradient(top, #fff 0%, #f3f3f3 100%);
4382
- background-image: -moz-linear-gradient(top, #fff 0%, #f3f3f3 100%);
4383
- background-image: -o-linear-gradient(top, #fff 0%, #f3f3f3 100%);
4384
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FFFFFF), color-stop(1, #f3f3f3));
4385
- background-image: -webkit-linear-gradient(top, #fff 0%, #f3f3f3 100%);
4386
- background-image: linear-gradient(to bottom, #fff 0%, #f3f3f3 100%);
4387
- box-shadow: 0 0 5px rgba(0, 0, 0, 0.085); }
4388
-
4389
- @media (min-width: 768px) {
4390
- .sidebar {
4391
- width: 160px; } }
4392
- @media (min-width: 1200px) {
4393
- .sidebar {
4394
- width: 250px; } }
4395
-
4396
- @media (max-width: 768px) {
4397
- .sidebar.affix {
4398
- position: relative; } }
4399
-
4400
- .sidebar .list-group-item {
4401
- word-break: break-word; }
4402
-
4403
- .nav .toggler-container {
4404
- float: right; }
4405
-
4406
- .table dl {
4407
- margin: 0;
4408
- padding: 0; }
4409
- .table tbody tr.sub-row td {
4410
- border-top: none; }
4411
-
4412
- .onoffswitch {
4413
- position: relative;
4414
- width: 96px;
4415
- -webkit-user-select: none;
4416
- -moz-user-select: none;
4417
- -ms-user-select: none; }
4418
-
4419
- .onoffswitch-checkbox {
4420
- display: none; }
4421
-
4422
- .onoffswitch-label {
4423
- display: block;
4424
- overflow: hidden;
4425
- cursor: pointer;
4426
- border: 2px solid #999999;
4427
- border-radius: 20px; }
4428
-
4429
- .onoffswitch-inner {
4430
- width: 200%;
4431
- margin-left: -100%;
4432
- -moz-transition: margin 0.3s ease-in 0s;
4433
- -webkit-transition: margin 0.3s ease-in 0s;
4434
- -o-transition: margin 0.3s ease-in 0s;
4435
- transition: margin 0.3s ease-in 0s; }
4436
-
4437
- .onoffswitch-inner:before, .onoffswitch-inner:after {
4438
- float: left;
4439
- width: 50%;
4440
- height: 30px;
4441
- padding: 0;
4442
- line-height: 30px;
4443
- font-size: 12px;
4444
- color: white;
4445
- font-family: Trebuchet, Arial, sans-serif;
4446
- font-weight: bold;
4447
- -moz-box-sizing: border-box;
4448
- -webkit-box-sizing: border-box;
4449
- box-sizing: border-box; }
4450
-
4451
- .onoffswitch-inner:before {
4452
- content: "Example";
4453
- padding-left: 8px;
4454
- background-color: #428BCA;
4455
- color: #FFFFFF; }
4456
-
4457
- .onoffswitch-inner:after {
4458
- content: "Attributes";
4459
- padding-right: 8px;
4460
- background-color: #EEEEEE;
4461
- color: #999999;
4462
- text-align: right; }
4463
-
4464
- .onoffswitch-switch {
4465
- width: 15px;
4466
- margin: 7.5px;
4467
- background: #FFFFFF;
4468
- border: 2px solid #999999;
4469
- border-radius: 20px;
4470
- position: absolute;
4471
- top: 0;
4472
- bottom: 0;
4473
- right: 62px;
4474
- -moz-transition: all 0.3s ease-in 0s;
4475
- -webkit-transition: all 0.3s ease-in 0s;
4476
- -o-transition: all 0.3s ease-in 0s;
4477
- transition: all 0.3s ease-in 0s; }
4478
-
4479
- .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
4480
- margin-left: 0; }
4481
-
4482
- .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
4483
- right: 0px; }
4484
-
4485
- _cloke.scss [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
4486
- display: none !important; }
4487
-
4488
- .required-type {
4489
- background-color: #f9f9f9; }
4490
-
4491
- .struct-main-attr-name {
4492
- color: #b0b0b0; }
4493
-
4494
- .attribute-prefix {
4495
- color: #aaa; }
4496
-
4497
- rs-attribute-description dt {
4498
- text-transform: capitalize; }
4499
-
4500
- .attribute-table div[class*='col-'] {
4501
- padding: 8px;
4502
- line-height: 1.42857; }
4503
- .attribute-table .head {
4504
- border-bottom: 2px solid #ddd;
4505
- font-weight: bold; }
4506
- .attribute-table .content .row {
4507
- border-top: 1px solid #ddd; }
4508
- .attribute-table .content .row:nth-child(odd) {
4509
- background-color: #f9f9f9; }
4510
-
4511
- /*# sourceMappingURL=main.css.map */