netguru_theme 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +22 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +29 -0
  6. data/Rakefile +2 -0
  7. data/app/assets/javascripts/netguru_theme.js +1 -0
  8. data/app/assets/stylesheets/_netguru-theme.scss +14 -0
  9. data/app/assets/stylesheets/netguru-theme/components/_navbar-search.scss +27 -0
  10. data/app/assets/stylesheets/netguru-theme/components/_user-card.scss +99 -0
  11. data/app/assets/stylesheets/netguru-theme/settings/_bootstrap-components.scss +52 -0
  12. data/app/assets/stylesheets/netguru-theme/settings/_bootstrap-overrides.scss +10 -0
  13. data/app/assets/stylesheets/netguru-theme/settings/_bootstrap-variables.scss +846 -0
  14. data/app/assets/stylesheets/netguru-theme/settings/_custom-variables.scss +29 -0
  15. data/app/assets/stylesheets/netguru-theme/settings/bootstrap-overrides/_badges.scss +8 -0
  16. data/app/assets/stylesheets/netguru-theme/settings/bootstrap-overrides/_buttons.scss +27 -0
  17. data/app/assets/stylesheets/netguru-theme/settings/bootstrap-overrides/_dropdowns.scss +8 -0
  18. data/app/assets/stylesheets/netguru-theme/settings/bootstrap-overrides/_forms.scss +21 -0
  19. data/app/assets/stylesheets/netguru-theme/settings/bootstrap-overrides/_input-groups.scss +10 -0
  20. data/app/assets/stylesheets/netguru-theme/settings/bootstrap-overrides/_labels.scss +17 -0
  21. data/app/assets/stylesheets/netguru-theme/settings/bootstrap-overrides/_modals.scss +15 -0
  22. data/app/assets/stylesheets/netguru-theme/settings/bootstrap-overrides/_navbar.scss +13 -0
  23. data/app/assets/stylesheets/netguru-theme/settings/bootstrap-overrides/_navs.scss +67 -0
  24. data/app/assets/stylesheets/netguru-theme/settings/bootstrap-overrides/_type.scss +26 -0
  25. data/app/assets/stylesheets/netguru-theme/utilities/_functions.scss +0 -0
  26. data/app/assets/stylesheets/netguru-theme/utilities/_mixins.scss +66 -0
  27. data/app/assets/stylesheets/netguru-theme/utilities/_presentional-classes.scss +14 -0
  28. data/app/assets/stylesheets/netguru-theme/utilities/_typography.scss +12 -0
  29. data/lib/netguru_theme.rb +9 -0
  30. data/lib/netguru_theme/version.rb +3 -0
  31. data/netguru_theme.gemspec +27 -0
  32. metadata +144 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 5cd468ea8ac49c629fba7f47a1bf8badc0a4b157
4
+ data.tar.gz: d879c1f2812d34a0f3e7b7f948900f7c2915f6a3
5
+ SHA512:
6
+ metadata.gz: 8827164d3a98b0254677344873e71cdcd4be88dc260aaf01e0d40199afe16637364ad360bc000fbd15b2e34985a907ee2ff51f5255c23dc7171059fa10c9c863
7
+ data.tar.gz: 19a95f63a72c2c50148a8038ad26f9aa81a437fcb0cc671e7b2b1ba252ddfd82e7b4562a8b8f8dc7a3712075806ea6791cf3252c151be5d049e91ad1737458af
data/.gitignore ADDED
@@ -0,0 +1,22 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in netguru_theme.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 netguru
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # NetguruTheme
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'netguru_theme'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install netguru_theme
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( https://github.com/netguru/netguru_theme/fork )
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1 @@
1
+ //= require bootstrap
@@ -0,0 +1,14 @@
1
+ @import 'bourbon';
2
+
3
+ @import 'netguru-theme/settings/custom-variables';
4
+ @import 'netguru-theme/settings/bootstrap-variables';
5
+
6
+ @import 'netguru-theme/utilities/functions';
7
+ @import 'netguru-theme/utilities/mixins';
8
+ @import 'netguru-theme/utilities/typography';
9
+ @import 'netguru-theme/utilities/presentional-classes';
10
+
11
+ @import 'netguru-theme/settings/bootstrap-components';
12
+ @import 'netguru-theme/settings/bootstrap-overrides';
13
+
14
+ @import 'netguru-theme/components/*';
@@ -0,0 +1,27 @@
1
+ .navbar {
2
+ &-search-input {
3
+ background: $header-search-background-color;
4
+ color: $header-search-text-color;
5
+ border: 1px solid $header-search-border-color;
6
+ &:focus {
7
+ @include box-shadow(none);
8
+ border: 1px solid lighten($header-search-border-color, 20)
9
+ }
10
+ @include placeholder($header-search-placeholder-color);
11
+ }
12
+
13
+ &-search-button {
14
+ background: $header-search-background-color;
15
+ border: 1px solid $header-search-border-color;
16
+ color: $header-search-button-color;
17
+ padding: 7px 12px;
18
+ &:hover {
19
+ color: lighten($header-search-button-color, 20);
20
+ }
21
+ &:focus {
22
+ outline: none;
23
+ color: lighten($header-search-button-color, 20);
24
+ border: 1px solid lighten($header-search-border-color, 20);
25
+ }
26
+ }
27
+ }
@@ -0,0 +1,99 @@
1
+ //
2
+ // User card
3
+ // --------------------------------------------------
4
+
5
+ .user-card {
6
+ border-radius: $border-radius-large;
7
+ border: 1px solid $gray-light;
8
+ overflow: hidden;
9
+
10
+ &-header {
11
+ padding: $half-gutter-width;
12
+ }
13
+
14
+ &-content {
15
+ overflow: hidden;
16
+ position: relative;
17
+ > .content-part {
18
+ border-top: 1px solid $gray-light;
19
+ padding: $half-gutter-width;
20
+ }
21
+ }
22
+
23
+ &-avatar {
24
+ @include circle(64px);
25
+ background: $gray-light;
26
+ float: left;
27
+ }
28
+
29
+ &-name {
30
+ font-size: $font-size-large;
31
+ font-weight: bold;
32
+ margin-top: $half-gutter-width / 2;
33
+ }
34
+
35
+ &-profession {
36
+ background: $brand-primary;
37
+ }
38
+
39
+ .label-skill {
40
+ background: $gray-light;
41
+ }
42
+
43
+ &-projects-list {
44
+ margin: $half-gutter-width / 2 0 0;
45
+ padding: 0;
46
+ li {
47
+ margin-top: -1px;
48
+ list-style: none;
49
+ line-height: $line-height-computed + 4px;
50
+ }
51
+ }
52
+
53
+ .intro {
54
+ @include quantity($line-height-computed + 5px);
55
+ color: $white;
56
+ display: inline-block;
57
+ font-size: $font-size-extra-small;
58
+ font-weight: bold;
59
+ margin-right: $half-gutter-width / 2;
60
+ text-align: center;
61
+ }
62
+
63
+ &-current-project {
64
+ background: $gray-light;
65
+ color: $white;
66
+ padding: $half-gutter-width;
67
+ a {
68
+ color: $white;
69
+ font-weight: bold;
70
+ text-decoration: underline;
71
+ }
72
+ }
73
+
74
+ &-download {
75
+ @include centered-vertically;
76
+ font-weight: bold;
77
+ text-align: center;
78
+ .glyphicon {
79
+ font-size: $font-size-large * 2;
80
+ }
81
+ }
82
+
83
+ &-download-link {
84
+ @include absolute(top 0 left 0);
85
+ @include quantity(100%);
86
+ z-index: 9;
87
+ opacity: 0;
88
+ &:hover {
89
+ opacity: 1;
90
+ background: transparentize($brand-primary, .2);
91
+ color: $white;
92
+ text-decoration: underline;
93
+ }
94
+ }
95
+
96
+ p {
97
+ margin-bottom: $half-gutter-width;
98
+ }
99
+ }
@@ -0,0 +1,52 @@
1
+ // please do not change the order
2
+ // more: https://github.com/twbs/bootstrap-sass/tree/master/vendor/assets/stylesheets/bootstrap
3
+
4
+ // Core variables and mixins
5
+ @import "bootstrap/variables";
6
+ @import "bootstrap/mixins";
7
+
8
+ // Reset
9
+ @import "bootstrap/normalize";
10
+ @import "bootstrap/print";
11
+
12
+ // Core CSS
13
+ @import "bootstrap/scaffolding";
14
+ @import "bootstrap/type";
15
+ @import "bootstrap/code";
16
+ @import "bootstrap/grid";
17
+ @import "bootstrap/tables";
18
+ @import "bootstrap/forms";
19
+ @import "bootstrap/buttons";
20
+
21
+ // Components
22
+ @import "bootstrap/component-animations";
23
+ @import "bootstrap/glyphicons";
24
+ @import "bootstrap/dropdowns";
25
+ @import "bootstrap/button-groups";
26
+ @import "bootstrap/input-groups";
27
+ @import "bootstrap/navs";
28
+ @import "bootstrap/navbar";
29
+ @import "bootstrap/breadcrumbs";
30
+ @import "bootstrap/pagination";
31
+ @import "bootstrap/pager";
32
+ @import "bootstrap/labels";
33
+ @import "bootstrap/badges";
34
+ @import "bootstrap/jumbotron";
35
+ @import "bootstrap/thumbnails";
36
+ @import "bootstrap/alerts";
37
+ @import "bootstrap/progress-bars";
38
+ @import "bootstrap/media";
39
+ @import "bootstrap/list-group";
40
+ @import "bootstrap/panels";
41
+ @import "bootstrap/wells";
42
+ @import "bootstrap/close";
43
+
44
+ // Components w/ JavaScript
45
+ @import "bootstrap/modals";
46
+ @import "bootstrap/tooltip";
47
+ @import "bootstrap/popovers";
48
+ @import "bootstrap/carousel";
49
+
50
+ // Utility classes
51
+ @import "bootstrap/utilities";
52
+ @import "bootstrap/responsive-utilities";
@@ -0,0 +1,10 @@
1
+ @import 'bootstrap-overrides/badges';
2
+ @import 'bootstrap-overrides/buttons';
3
+ @import 'bootstrap-overrides/dropdowns';
4
+ @import 'bootstrap-overrides/forms';
5
+ @import 'bootstrap-overrides/input-groups';
6
+ @import 'bootstrap-overrides/labels';
7
+ @import 'bootstrap-overrides/modals';
8
+ @import 'bootstrap-overrides/navbar';
9
+ @import 'bootstrap-overrides/navs';
10
+ @import 'bootstrap-overrides/type';
@@ -0,0 +1,846 @@
1
+ //
2
+ // Variables
3
+ // --------------------------------------------------
4
+
5
+
6
+ //== Colors
7
+ //
8
+ //## Gray and brand colors for use across Bootstrap.
9
+
10
+ $gray-darker: #505b65;
11
+ $gray-dark: lighten($gray-darker, 10%);
12
+ $gray: lighten($gray-darker, 20%);
13
+ $gray-light: lighten($gray-darker, 50%);
14
+ $gray-lighter: lighten($gray-darker, 60%);
15
+
16
+ $brand-primary: #f5a122;
17
+ $brand-success: #00ab2d;
18
+ $brand-info: #23a9db;
19
+ $brand-warning: #ffc805;
20
+ $brand-danger: #ff7851;
21
+
22
+ //== Scaffolding
23
+ //
24
+ //## Settings for some of the most global styles.
25
+
26
+ //** Background color for `<body>`.
27
+ // $body-bg: #fff !default;
28
+ //** Global text color on `<body>`.
29
+ $text-color: $gray-dark;
30
+
31
+ //** Global textual link color.
32
+ $link-color: $brand-primary;
33
+ //** Link hover color set via `darken()` function.
34
+ $link-hover-color: darken($link-color, 15%);
35
+
36
+
37
+ //== Typography
38
+ //
39
+ //## Font, line-height, and color for body text, headings, and more.
40
+
41
+ // $font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
42
+ // $font-family-serif: Georgia, "Times New Roman", Times, serif !default;
43
+ //** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
44
+ // $font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace !default;
45
+ // $font-family-base: $font-family-sans-serif !default;
46
+
47
+ // $font-size-base: 14px !default;
48
+ // $font-size-large: ceil(($font-size-base * 1.25)) !default; // ~18px
49
+ // $font-size-small: ceil(($font-size-base * 0.85)) !default; // ~12px
50
+
51
+ // $font-size-h1: floor(($font-size-base * 2.6)) !default; // ~36px
52
+ // $font-size-h2: floor(($font-size-base * 2.15)) !default; // ~30px
53
+ // $font-size-h3: ceil(($font-size-base * 1.7)) !default; // ~24px
54
+ // $font-size-h4: ceil(($font-size-base * 1.25)) !default; // ~18px
55
+ // $font-size-h5: $font-size-base !default;
56
+ // $font-size-h6: ceil(($font-size-base * 0.85)) !default; // ~12px
57
+
58
+ //** Unit-less `line-height` for use in components like buttons.
59
+ // $line-height-base: 1.428571429 !default; // 20/14
60
+ //** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
61
+ // $line-height-computed: floor(($font-size-base * $line-height-base)) !default; // ~20px
62
+
63
+ //** By default, this inherits from the `<body>`.
64
+ // $headings-font-family: inherit !default;
65
+ $headings-font-weight: 300;
66
+ // $headings-line-height: 1.1 !default;
67
+ // $headings-color: inherit !default;
68
+
69
+
70
+ //== Iconography
71
+ //
72
+ //## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
73
+
74
+ //** Load fonts from this directory.
75
+
76
+ // [converter] Asset helpers such as Sprockets and Node.js Mincer do not resolve relative paths
77
+ $icon-font-path: "/assets/bootstrap/";
78
+
79
+ //** File name for all font files.
80
+ // $icon-font-name: "glyphicons-halflings-regular" !default;
81
+ //** Element ID within SVG icon file.
82
+ // $icon-font-svg-id: "glyphicons_halflingsregular" !default;
83
+
84
+
85
+ //== Components
86
+ //
87
+ //## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
88
+
89
+ // $padding-base-vertical: 6px !default;
90
+ // $padding-base-horizontal: 12px !default;
91
+
92
+ // $padding-large-vertical: 10px !default;
93
+ // $padding-large-horizontal: 16px !default;
94
+
95
+ // $padding-small-vertical: 5px !default;
96
+ // $padding-small-horizontal: 10px !default;
97
+
98
+ // $padding-xs-vertical: 1px !default;
99
+ // $padding-xs-horizontal: 5px !default;
100
+
101
+ // $line-height-large: 1.33 !default;
102
+ // $line-height-small: 1.5 !default;
103
+
104
+ $border-radius-base: 3px !default;
105
+ $border-radius-large: 5px !default;
106
+ $border-radius-small: 1px !default;
107
+
108
+ //** Global color for active items (e.g., navs or dropdowns).
109
+ // $component-active-color: #fff !default;
110
+ //** Global background color for active items (e.g., navs or dropdowns).
111
+ // $component-active-bg: $brand-primary !default;
112
+
113
+ //** Width of the `border` for generating carets that indicator dropdowns.
114
+ // $caret-width-base: 4px !default;
115
+ //** Carets increase slightly in size for larger components.
116
+ // $caret-width-large: 5px !default;
117
+
118
+
119
+ //== Tables
120
+ //
121
+ //## Customizes the `.table` component with basic values, each used across all table variations.
122
+
123
+ //** Padding for `<th>`s and `<td>`s.
124
+ // $table-cell-padding: 8px !default;
125
+ //** Padding for cells in `.table-condensed`.
126
+ // $table-condensed-cell-padding: 5px !default;
127
+
128
+ //** Default background color used for all tables.
129
+ // $table-bg: transparent !default;
130
+ //** Background color used for `.table-striped`.
131
+ $table-bg-accent: $gray-lighter;
132
+ //** Background color used for `.table-hover`.
133
+ $table-bg-hover: $gray-lighter;
134
+ // $table-bg-active: $table-bg-hover !default;
135
+
136
+ //** Border color for table and cell borders.
137
+ $table-border-color: $gray-light;
138
+
139
+
140
+ //== Buttons
141
+ //
142
+ //## For each of Bootstrap's buttons, define text, background and border color.
143
+
144
+ $btn-font-weight: bold;
145
+
146
+ $btn-default-color: $text-color;
147
+ $btn-default-bg: $gray-lighter;
148
+ $btn-default-border: $gray-light;
149
+
150
+ // $btn-primary-color: #fff !default;
151
+ $btn-primary-bg: lighten($brand-primary, 9%);
152
+ $btn-primary-border: $brand-primary;
153
+
154
+ // $btn-success-color: #fff !default;
155
+ // $btn-success-bg: $brand-success !default;
156
+ // $btn-success-border: darken($btn-success-bg, 5%) !default;
157
+
158
+ // $btn-info-color: #fff !default;
159
+ // $btn-info-bg: $brand-info !default;
160
+ // $btn-info-border: darken($btn-info-bg, 5%) !default;
161
+
162
+ // $btn-warning-color: #fff !default;
163
+ // $btn-warning-bg: $brand-warning !default;
164
+ // $btn-warning-border: darken($btn-warning-bg, 5%) !default;
165
+
166
+ // $btn-danger-color: #fff !default;
167
+ // $btn-danger-bg: $brand-danger !default;
168
+ // $btn-danger-border: darken($btn-danger-bg, 5%) !default;
169
+
170
+ // $btn-link-disabled-color: $gray-light !default;
171
+
172
+
173
+ //== Forms
174
+ //
175
+ //##
176
+
177
+ //** `<input>` background color
178
+ // $input-bg: #fff !default;
179
+ //** `<input disabled>` background color
180
+ // $input-bg-disabled: $gray-lighter !default;
181
+
182
+ //** Text color for `<input>`s
183
+ $input-color: $gray-dark;
184
+ //** `<input>` border color
185
+ $input-border: $gray-light;
186
+ //** `<input>` border radius
187
+ $input-border-radius: $border-radius-base;
188
+ //** Border color for inputs on focus
189
+ $input-border-focus: $brand-primary;
190
+
191
+ //** Placeholder text color
192
+ $input-color-placeholder: $gray-light;
193
+
194
+ //** Default `.form-control` height
195
+ // $input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 2) !default;
196
+ //** Large `.form-control` height
197
+ // $input-height-large: (ceil($font-size-large * $line-height-large) + ($padding-large-vertical * 2) + 2) !default;
198
+ //** Small `.form-control` height
199
+ // $input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2) !default;
200
+
201
+ // $legend-color: $gray-dark !default;
202
+ // $legend-border-color: #e5e5e5 !default;
203
+
204
+ //** Background color for textual input addons
205
+ // $input-group-addon-bg: $gray-lighter !default;
206
+ //** Border color for textual input addons
207
+ // $input-group-addon-border-color: $input-border !default;
208
+
209
+
210
+ //== Dropdowns
211
+ //
212
+ //## Dropdown menu container and contents.
213
+
214
+ //** Background for the dropdown menu.
215
+ // $dropdown-bg: #fff !default;
216
+ //** Dropdown menu `border-color`.
217
+ $dropdown-border: $gray-light;
218
+ //** Dropdown menu `border-color` **for IE8**.
219
+ // $dropdown-fallback-border: #ccc !default;
220
+ //** Divider color for between dropdown items.
221
+ // $dropdown-divider-bg: #e5e5e5 !default;
222
+
223
+ //** Dropdown link text color.
224
+ // $dropdown-link-color: $gray-dark !default;
225
+ //** Hover color for dropdown links.
226
+ $dropdown-link-hover-color: $brand-primary;
227
+ //** Hover background for dropdown links.
228
+ $dropdown-link-hover-bg: none;
229
+
230
+ //** Active dropdown menu item text color.
231
+ // $dropdown-link-active-color: $component-active-color !default;
232
+ //** Active dropdown menu item background color.
233
+ // $dropdown-link-active-bg: $component-active-bg !default;
234
+
235
+ //** Disabled dropdown menu item background color.
236
+ $dropdown-link-disabled-color: $gray-lighter;
237
+
238
+ //** Text color for headers within dropdown menus.
239
+ $dropdown-header-color: $gray-lighter;
240
+
241
+ //** Deprecated `$dropdown-caret-color` as of v3.1.0
242
+ $dropdown-caret-color: $brand-primary;
243
+
244
+
245
+ //-- Z-index master list
246
+ //
247
+ // Warning: Avoid customizing these values. They're used for a bird's eye view
248
+ // of components dependent on the z-axis and are designed to all work together.
249
+ //
250
+ // Note: These variables are not generated into the Customizer.
251
+
252
+ // $zindex-navbar: 1000 !default;
253
+ // $zindex-dropdown: 1000 !default;
254
+ // $zindex-popover: 1060 !default;
255
+ // $zindex-tooltip: 1070 !default;
256
+ // $zindex-navbar-fixed: 1030 !default;
257
+ // $zindex-modal-background: 1040 !default;
258
+ // $zindex-modal: 1050 !default;
259
+
260
+
261
+ //== Media queries breakpoints
262
+ //
263
+ //## Define the breakpoints at which your layout will change, adapting to different screen sizes.
264
+
265
+ // Extra small screen / phone
266
+ //** Deprecated `$screen-xs` as of v3.0.1
267
+ // $screen-xs: 480px !default;
268
+ //** Deprecated `$screen-xs-min` as of v3.2.0
269
+ // $screen-xs-min: $screen-xs !default;
270
+ //** Deprecated `$screen-phone` as of v3.0.1
271
+ // $screen-phone: $screen-xs-min !default;
272
+
273
+ // Small screen / tablet
274
+ //** Deprecated `$screen-sm` as of v3.0.1
275
+ // $screen-sm: 768px !default;
276
+ // $screen-sm-min: $screen-sm !default;
277
+ //** Deprecated `$screen-tablet` as of v3.0.1
278
+ // $screen-tablet: $screen-sm-min !default;
279
+
280
+ // Medium screen / desktop
281
+ //** Deprecated `$screen-md` as of v3.0.1
282
+ // $screen-md: 992px !default;
283
+ // $screen-md-min: $screen-md !default;
284
+ //** Deprecated `$screen-desktop` as of v3.0.1
285
+ // $screen-desktop: $screen-md-min !default;
286
+
287
+ // Large screen / wide desktop
288
+ //** Deprecated `$screen-lg` as of v3.0.1
289
+ // $screen-lg: 1200px !default;
290
+ // $screen-lg-min: $screen-lg !default;
291
+ //** Deprecated `$screen-lg-desktop` as of v3.0.1
292
+ // $screen-lg-desktop: $screen-lg-min !default;
293
+
294
+ // So media queries don't overlap when required, provide a maximum
295
+ // $screen-xs-max: ($screen-sm-min - 1) !default;
296
+ // $screen-sm-max: ($screen-md-min - 1) !default;
297
+ // $screen-md-max: ($screen-lg-min - 1) !default;
298
+
299
+
300
+ //== Grid system
301
+ //
302
+ //## Define your custom responsive grid.
303
+
304
+ //** Number of columns in the grid.
305
+ // $grid-columns: 12 !default;
306
+ //** Padding between columns. Gets divided in half for the left and right.
307
+ $grid-gutter-width: 30px;
308
+ // Navbar collapse
309
+ //** Point at which the navbar becomes uncollapsed.
310
+ // $grid-float-breakpoint: $screen-sm-min !default;
311
+ //** Point at which the navbar begins collapsing.
312
+ // $grid-float-breakpoint-max: ($grid-float-breakpoint - 1) !default;
313
+
314
+
315
+ //== Container sizes
316
+ //
317
+ //## Define the maximum width of `.container` for different screen sizes.
318
+
319
+ // Small screen / tablet
320
+ // $container-tablet: ((720px + $grid-gutter-width)) !default;
321
+ //** For `$screen-sm-min` and up.
322
+ // $container-sm: $container-tablet !default;
323
+
324
+ // Medium screen / desktop
325
+ // $container-desktop: ((940px + $grid-gutter-width)) !default;
326
+ //** For `$screen-md-min` and up.
327
+ // $container-md: $container-desktop !default;
328
+
329
+ // Large screen / wide desktop
330
+ $container-large-desktop: ((1380px + $grid-gutter-width));
331
+ //** For `$screen-lg-min` and up.
332
+ // $container-lg: $container-large-desktop !default;
333
+
334
+
335
+ //== Navbar
336
+ //
337
+ //##
338
+
339
+ // Basics of a navbar
340
+ $navbar-height: 50px;
341
+ // $navbar-margin-bottom: $line-height-computed !default;
342
+ // $navbar-border-radius: $border-radius-base !default;
343
+ // $navbar-padding-horizontal: floor(($grid-gutter-width / 2)) !default;
344
+ // $navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2) !default;
345
+ // $navbar-collapse-max-height: 340px !default;
346
+
347
+ $navbar-default-color: $navbar-text;
348
+ $navbar-default-bg: $brand-secondary;
349
+ // $navbar-default-border: darken($navbar-default-bg, 6.5%) !default;
350
+
351
+ // Navbar links
352
+ $navbar-default-link-color: $navbar-text;
353
+ $navbar-default-link-hover-color: $brand-primary;
354
+ $navbar-default-link-hover-bg: $navbar-default-bg;
355
+ $navbar-default-link-active-color: $brand-primary;
356
+ $navbar-default-link-active-bg: $navbar-default-bg;
357
+ // $navbar-default-link-disabled-color: #ccc !default;
358
+ // $navbar-default-link-disabled-bg: transparent !default;
359
+
360
+ // Navbar brand label
361
+ // $navbar-default-brand-color: $navbar-default-link-color !default;
362
+ // $navbar-default-brand-hover-color: darken($navbar-default-brand-color, 10%) !default;
363
+ // $navbar-default-brand-hover-bg: transparent !default;
364
+
365
+ // Navbar toggle
366
+ // $navbar-default-toggle-hover-bg: #ddd !default;
367
+ // $navbar-default-toggle-icon-bar-bg: #888 !default;
368
+ // $navbar-default-toggle-border-color: #ddd !default;
369
+
370
+
371
+ // Inverted navbar
372
+ // Reset inverted navbar basics
373
+ // $navbar-inverse-color: $gray-light !default;
374
+ // $navbar-inverse-bg: #222 !default;
375
+ // $navbar-inverse-border: darken($navbar-inverse-bg, 10%) !default;
376
+
377
+ // Inverted navbar links
378
+ // $navbar-inverse-link-color: $gray-light !default;
379
+ // $navbar-inverse-link-hover-color: #fff !default;
380
+ // $navbar-inverse-link-hover-bg: transparent !default;
381
+ // $navbar-inverse-link-active-color: $navbar-inverse-link-hover-color !default;
382
+ // $navbar-inverse-link-active-bg: darken($navbar-inverse-bg, 10%) !default;
383
+ // $navbar-inverse-link-disabled-color: #444 !default;
384
+ // $navbar-inverse-link-disabled-bg: transparent !default;
385
+
386
+ // Inverted navbar brand label
387
+ // $navbar-inverse-brand-color: $navbar-inverse-link-color !default;
388
+ // $navbar-inverse-brand-hover-color: #fff !default;
389
+ // $navbar-inverse-brand-hover-bg: transparent !default;
390
+
391
+ // Inverted navbar toggle
392
+ // $navbar-inverse-toggle-hover-bg: #333 !default;
393
+ // $navbar-inverse-toggle-icon-bar-bg: #fff !default;
394
+ // $navbar-inverse-toggle-border-color: #333 !default;
395
+
396
+
397
+ //== Navs
398
+ //
399
+ //##
400
+
401
+ //=== Shared nav styles
402
+ // $nav-link-padding: 10px 15px !default;
403
+ $nav-link-hover-bg: transparent;
404
+
405
+ // $nav-disabled-link-color: $gray-light !default;
406
+ // $nav-disabled-link-hover-color: $gray-light !default;
407
+
408
+ // $nav-open-link-hover-color: #fff !default;
409
+
410
+ //== Tabs
411
+ $nav-tabs-border-color: $gray-light;
412
+
413
+ $nav-tabs-link-hover-border-color: $brand-primary;
414
+
415
+ $nav-tabs-active-link-hover-bg: transparent;
416
+ $nav-tabs-active-link-hover-color: $brand-primary;
417
+ $nav-tabs-active-link-hover-border-color: $nav-tabs-link-hover-border-color;
418
+
419
+ $nav-tabs-justified-link-border-color: none;
420
+ $nav-tabs-justified-active-link-border-color: none;
421
+
422
+ //== Pills
423
+ // $nav-pills-border-radius: $border-radius-base !default;
424
+ // $nav-pills-active-link-hover-bg: $component-active-bg !default;
425
+ // $nav-pills-active-link-hover-color: $component-active-color !default;
426
+
427
+
428
+ //== Pagination
429
+ //
430
+ //##
431
+
432
+ // $pagination-color: $link-color !default;
433
+ // $pagination-bg: #fff !default;
434
+ // $pagination-border: #ddd !default;
435
+
436
+ // $pagination-hover-color: $link-hover-color !default;
437
+ // $pagination-hover-bg: $gray-lighter !default;
438
+ // $pagination-hover-border: #ddd !default;
439
+
440
+ // $pagination-active-color: #fff !default;
441
+ // $pagination-active-bg: $brand-primary !default;
442
+ // $pagination-active-border: $brand-primary !default;
443
+
444
+ // $pagination-disabled-color: $gray-light !default;
445
+ // $pagination-disabled-bg: #fff !default;
446
+ // $pagination-disabled-border: #ddd !default;
447
+
448
+
449
+ //== Pager
450
+ //
451
+ //##
452
+
453
+ // $pager-bg: $pagination-bg !default;
454
+ // $pager-border: $pagination-border !default;
455
+ // $pager-border-radius: 15px !default;
456
+
457
+ // $pager-hover-bg: $pagination-hover-bg !default;
458
+
459
+ // $pager-active-bg: $pagination-active-bg !default;
460
+ // $pager-active-color: $pagination-active-color !default;
461
+
462
+ // $pager-disabled-color: $pagination-disabled-color !default;
463
+
464
+
465
+ //== Jumbotron
466
+ //
467
+ //##
468
+
469
+ // $jumbotron-padding: 30px !default;
470
+ // $jumbotron-color: inherit !default;
471
+ // $jumbotron-bg: $gray-lighter !default;
472
+ // $jumbotron-heading-color: inherit !default;
473
+ // $jumbotron-font-size: ceil(($font-size-base * 1.5)) !default;
474
+
475
+
476
+ //== Form states and alerts
477
+ //
478
+ //## Define colors for form feedback states and, by default, alerts.
479
+
480
+ // $state-success-text: #3c763d !default;
481
+ // $state-success-bg: #dff0d8 !default;
482
+ // $state-success-border: darken(adjust-hue($state-success-bg, -10), 5%) !default;
483
+
484
+ // $state-info-text: #31708f !default;
485
+ // $state-info-bg: #d9edf7 !default;
486
+ // $state-info-border: darken(adjust-hue($state-info-bg, -10), 7%) !default;
487
+
488
+ // $state-warning-text: #8a6d3b !default;
489
+ // $state-warning-bg: #fcf8e3 !default;
490
+ // $state-warning-border: darken(adjust-hue($state-warning-bg, -10), 5%) !default;
491
+
492
+ // $state-danger-text: #a94442 !default;
493
+ // $state-danger-bg: #f2dede !default;
494
+ // $state-danger-border: darken(adjust-hue($state-danger-bg, -10), 5%) !default;
495
+
496
+
497
+ //== Tooltips
498
+ //
499
+ //##
500
+
501
+ //** Tooltip max width
502
+ // $tooltip-max-width: 200px !default;
503
+ //** Tooltip text color
504
+ // $tooltip-color: #fff !default;
505
+ //** Tooltip background color
506
+ // $tooltip-bg: #000 !default;
507
+ // $tooltip-opacity: .9 !default;
508
+
509
+ //** Tooltip arrow width
510
+ // $tooltip-arrow-width: 5px !default;
511
+ //** Tooltip arrow color
512
+ // $tooltip-arrow-color: $tooltip-bg !default;
513
+
514
+
515
+ //== Popovers
516
+ //
517
+ //##
518
+
519
+ //** Popover body background color
520
+ // $popover-bg: #fff !default;
521
+ //** Popover maximum width
522
+ // $popover-max-width: 276px !default;
523
+ //** Popover border color
524
+ // $popover-border-color: rgba(0,0,0,.2) !default;
525
+ //** Popover fallback border color
526
+ // $popover-fallback-border-color: #ccc !default;
527
+
528
+ //** Popover title background color
529
+ // $popover-title-bg: darken($popover-bg, 3%) !default;
530
+
531
+ //** Popover arrow width
532
+ // $popover-arrow-width: 10px !default;
533
+ //** Popover arrow color
534
+ // $popover-arrow-color: #fff !default;
535
+
536
+ //** Popover outer arrow width
537
+ // $popover-arrow-outer-width: ($popover-arrow-width + 1) !default;
538
+ //** Popover outer arrow color
539
+ // $popover-arrow-outer-color: fade_in($popover-border-color, 0.05) !default;
540
+ //** Popover outer arrow fallback color
541
+ // $popover-arrow-outer-fallback-color: darken($popover-fallback-border-color, 20%) !default;
542
+
543
+
544
+ //== Labels
545
+ //
546
+ //##
547
+
548
+ //** Default label background color
549
+ // $label-default-bg: $gray-light !default;
550
+ //** Primary label background color
551
+ // $label-primary-bg: $brand-primary !default;
552
+ //** Success label background color
553
+ // $label-success-bg: $brand-success !default;
554
+ //** Info label background color
555
+ // $label-info-bg: $brand-info !default;
556
+ //** Warning label background color
557
+ // $label-warning-bg: $brand-warning !default;
558
+ //** Danger label background color
559
+ // $label-danger-bg: $brand-danger !default;
560
+
561
+ //** Default label text color
562
+ // $label-color: #fff !default;
563
+ //** Default text color of a linked label
564
+ // $label-link-hover-color: #fff !default;
565
+
566
+
567
+ //== Modals
568
+ //
569
+ //##
570
+
571
+ //** Padding applied to the modal body
572
+ // $modal-inner-padding: 15px;
573
+
574
+ //** Padding applied to the modal title
575
+ // $modal-title-padding: 15px !default;
576
+ //** Modal title line-height
577
+ // $modal-title-line-height: $line-height-base !default;
578
+
579
+ //** Background color of modal content area
580
+ // $modal-content-bg: #fff !default;
581
+ //** Modal content border color
582
+ // $modal-content-border-color: rgba(0,0,0,.2) !default;
583
+ //** Modal content border color **for IE8**
584
+ // $modal-content-fallback-border-color: #999 !default;
585
+
586
+ //** Modal backdrop background color
587
+ $modal-backdrop-bg: $brand-secondary;
588
+ //** Modal backdrop opacity
589
+ $modal-backdrop-opacity: .85;
590
+ //** Modal header border color
591
+ $modal-header-border-color: $gray-light;
592
+ //** Modal footer border color
593
+ // $modal-footer-border-color: $modal-header-border-color !default;
594
+
595
+ // $modal-lg: 900px !default;
596
+ // $modal-md: 600px !default;
597
+ // $modal-sm: 300px !default;
598
+
599
+
600
+ //== Alerts
601
+ //
602
+ //## Define alert colors, border radius, and padding.
603
+
604
+ // $alert-padding: 15px !default;
605
+ // $alert-border-radius: $border-radius-base !default;
606
+ // $alert-link-font-weight: bold !default;
607
+
608
+ // $alert-success-bg: $state-success-bg !default;
609
+ // $alert-success-text: $state-success-text !default;
610
+ // $alert-success-border: $state-success-border !default;
611
+
612
+ // $alert-info-bg: $state-info-bg !default;
613
+ // $alert-info-text: $state-info-text !default;
614
+ // $alert-info-border: $state-info-border !default;
615
+
616
+ // $alert-warning-bg: $state-warning-bg !default;
617
+ // $alert-warning-text: $state-warning-text !default;
618
+ // $alert-warning-border: $state-warning-border !default;
619
+
620
+ // $alert-danger-bg: $state-danger-bg !default;
621
+ // $alert-danger-text: $state-danger-text !default;
622
+ // $alert-danger-border: $state-danger-border !default;
623
+
624
+
625
+ //== Progress bars
626
+ //
627
+ //##
628
+
629
+ //** Background color of the whole progress component
630
+ // $progress-bg: #f5f5f5 !default;
631
+ //** Progress bar text color
632
+ // $progress-bar-color: #fff !default;
633
+
634
+ //** Default progress bar color
635
+ // $progress-bar-bg: $brand-primary !default;
636
+ //** Success progress bar color
637
+ // $progress-bar-success-bg: $brand-success !default;
638
+ //** Warning progress bar color
639
+ // $progress-bar-warning-bg: $brand-warning !default;
640
+ //** Danger progress bar color
641
+ // $progress-bar-danger-bg: $brand-danger !default;
642
+ //** Info progress bar color
643
+ // $progress-bar-info-bg: $brand-info !default;
644
+
645
+
646
+ //== List group
647
+ //
648
+ //##
649
+
650
+ //** Background color on `.list-group-item`
651
+ // $list-group-bg: #fff !default;
652
+ //** `.list-group-item` border color
653
+ // $list-group-border: #ddd !default;
654
+ //** List group border radius
655
+ // $list-group-border-radius: $border-radius-base !default;
656
+
657
+ //** Background color of single list items on hover
658
+ // $list-group-hover-bg: #f5f5f5 !default;
659
+ //** Text color of active list items
660
+ // $list-group-active-color: $component-active-color !default;
661
+ //** Background color of active list items
662
+ // $list-group-active-bg: $component-active-bg !default;
663
+ //** Border color of active list elements
664
+ // $list-group-active-border: $list-group-active-bg !default;
665
+ //** Text color for content within active list items
666
+ // $list-group-active-text-color: lighten($list-group-active-bg, 40%) !default;
667
+
668
+ //** Text color of disabled list items
669
+ // $list-group-disabled-color: $gray-light !default;
670
+ //** Background color of disabled list items
671
+ // $list-group-disabled-bg: $gray-lighter !default;
672
+ //** Text color for content within disabled list items
673
+ // $list-group-disabled-text-color: $list-group-disabled-color !default;
674
+
675
+ // $list-group-link-color: #555 !default;
676
+ // $list-group-link-hover-color: $list-group-link-color !default;
677
+ // $list-group-link-heading-color: #333 !default;
678
+
679
+
680
+ //== Panels
681
+ //
682
+ //##
683
+
684
+ // $panel-bg: #fff !default;
685
+ // $panel-body-padding: 15px !default;
686
+ // $panel-heading-padding: 10px 15px !default;
687
+ // $panel-footer-padding: $panel-heading-padding !default;
688
+ // $panel-border-radius: $border-radius-base !default;
689
+
690
+ //** Border color for elements within panels
691
+ // $panel-inner-border: #ddd !default;
692
+ // $panel-footer-bg: #f5f5f5 !default;
693
+
694
+ // $panel-default-text: $gray-dark !default;
695
+ // $panel-default-border: #ddd !default;
696
+ // $panel-default-heading-bg: #f5f5f5 !default;
697
+
698
+ // $panel-primary-text: #fff !default;
699
+ // $panel-primary-border: $brand-primary !default;
700
+ // $panel-primary-heading-bg: $brand-primary !default;
701
+
702
+ // $panel-success-text: $state-success-text !default;
703
+ // $panel-success-border: $state-success-border !default;
704
+ // $panel-success-heading-bg: $state-success-bg !default;
705
+
706
+ // $panel-info-text: $state-info-text !default;
707
+ // $panel-info-border: $state-info-border !default;
708
+ // $panel-info-heading-bg: $state-info-bg !default;
709
+
710
+ // $panel-warning-text: $state-warning-text !default;
711
+ // $panel-warning-border: $state-warning-border !default;
712
+ // $panel-warning-heading-bg: $state-warning-bg !default;
713
+
714
+ // $panel-danger-text: $state-danger-text !default;
715
+ // $panel-danger-border: $state-danger-border !default;
716
+ // $panel-danger-heading-bg: $state-danger-bg !default;
717
+
718
+
719
+ //== Thumbnails
720
+ //
721
+ //##
722
+
723
+ //** Padding around the thumbnail image
724
+ // $thumbnail-padding: 4px !default;
725
+ //** Thumbnail background color
726
+ // $thumbnail-bg: $body-bg !default;
727
+ //** Thumbnail border color
728
+ // $thumbnail-border: #ddd !default;
729
+ //** Thumbnail border radius
730
+ // $thumbnail-border-radius: $border-radius-base !default;
731
+
732
+ //** Custom text color for thumbnail captions
733
+ // $thumbnail-caption-color: $text-color !default;
734
+ //** Padding around the thumbnail caption
735
+ // $thumbnail-caption-padding: 9px !default;
736
+
737
+
738
+ //== Wells
739
+ //
740
+ //##
741
+
742
+ // $well-bg: #f5f5f5 !default;
743
+ // $well-border: darken($well-bg, 7%) !default;
744
+
745
+
746
+ //== Badges
747
+ //
748
+ //##
749
+
750
+ // $badge-color: #fff !default;
751
+ //** Linked badge text color on hover
752
+ // $badge-link-hover-color: #fff !default;
753
+ // $badge-bg: $gray-light !default;
754
+
755
+ //** Badge text color in active nav link
756
+ // $badge-active-color: $link-color !default;
757
+ //** Badge background color in active nav link
758
+ // $badge-active-bg: #fff !default;
759
+
760
+ // $badge-font-weight: bold !default;
761
+ // $badge-line-height: 1 !default;
762
+ $badge-border-radius: $border-radius-base;
763
+
764
+
765
+ //== Breadcrumbs
766
+ //
767
+ //##
768
+
769
+ // $breadcrumb-padding-vertical: 8px !default;
770
+ // $breadcrumb-padding-horizontal: 15px !default;
771
+ //** Breadcrumb background color
772
+ // $breadcrumb-bg: #f5f5f5 !default;
773
+ //** Breadcrumb text color
774
+ // $breadcrumb-color: #ccc !default;
775
+ //** Text color of current page in the breadcrumb
776
+ // $breadcrumb-active-color: $gray-light !default;
777
+ //** Textual separator for between breadcrumb elements
778
+ // $breadcrumb-separator: "/" !default;
779
+
780
+
781
+ //== Carousel
782
+ //
783
+ //##
784
+
785
+ // $carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6) !default;
786
+
787
+ // $carousel-control-color: #fff !default;
788
+ // $carousel-control-width: 15% !default;
789
+ // $carousel-control-opacity: .5 !default;
790
+ // $carousel-control-font-size: 20px !default;
791
+
792
+ // $carousel-indicator-active-bg: #fff !default;
793
+ // $carousel-indicator-border-color: #fff !default;
794
+
795
+ // $carousel-caption-color: #fff !default;
796
+
797
+
798
+ //== Close
799
+ //
800
+ //##
801
+
802
+ // $close-font-weight: bold !default;
803
+ // $close-color: #000 !default;
804
+ // $close-text-shadow: 0 1px 0 #fff !default;
805
+
806
+
807
+ //== Code
808
+ //
809
+ //##
810
+
811
+ $code-color: #e6db74;
812
+ $code-bg: #272832;
813
+
814
+ // $kbd-color: #fff !default;
815
+ $kbd-bg: $brand-primary;
816
+
817
+ $pre-bg: $code-bg;
818
+ $pre-color: $code-color;
819
+ $pre-border-color: transparent;
820
+ // $pre-scrollable-max-height: 340px !default;
821
+
822
+
823
+ //== Type
824
+ //
825
+ //##
826
+
827
+ //** Horizontal offset for forms and lists.
828
+ // $component-offset-horizontal: 180px !default;
829
+ //** Text muted color
830
+ // $text-muted: $gray-light !default;
831
+ //** Abbreviations and acronyms border color
832
+ // $abbr-border-color: $gray-light !default;
833
+ //** Headings small color
834
+ // $headings-small-color: $gray-light !default;
835
+ //** Blockquote small color
836
+ // $blockquote-small-color: $gray-light !default;
837
+ //** Blockquote font size
838
+ // $blockquote-font-size: ($font-size-base * 1.25) !default;
839
+ //** Blockquote border color
840
+ $blockquote-border-color: $brand-primary;
841
+ //** Page header border color
842
+ // $page-header-border-color: $gray-lighter !default;
843
+ //** Width of horizontal description list titles
844
+ // $dl-horizontal-offset: $component-offset-horizontal !default;
845
+ //** Horizontal line color.
846
+ $hr-border: lighten($brand-primary, 25%);