kickstart_rails 3.0.42 → 3.0.43

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dec7a79c168fab7ca6367949a911b8d98c8ff066
4
- data.tar.gz: afa58a07e02fc6b714b1e6ac8bce395534197545
3
+ metadata.gz: 28947d5c671b3b02527e5596132c42e5b48a0806
4
+ data.tar.gz: 379f8e028e58e09eb15afe87b61be1ae4e611190
5
5
  SHA512:
6
- metadata.gz: d26afb65dc8adc9f9fbd3a6245546a538233246844a5095930e853c1dd1db6412633be85cccdcd920e62fb9e77f1f0065f983f3769fde4225a87c1788c370d1e
7
- data.tar.gz: 9e579483663e30940ff4cfbda8dd5591bc5cf6e6ab531d249c9a62ecb8f9694fbbcedf51999e7c72af2b92dbf4c1ef0a11b868483ea46195e2ff94f6e57cd408
6
+ metadata.gz: e093588cb31033296eb87ee2a3e8b49af0bed9d676cc88ce914049971dec7020a769121933144e510bfeeaf26655ec2cbd2adc62a8c427729dafae5edb889b0e
7
+ data.tar.gz: 40208883d959b8706400cf68b6a8909cf84b88aa335ea11a470c08728cdb35173d3c0c0f87a7e75ea0fe689a725dd59870b2bc7b793fde25dc2d71bc65264c83
@@ -1,3 +1,3 @@
1
1
  module Kickstart_rails
2
- VERSION = "3.0.42"
2
+ VERSION = "3.0.43"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kickstart_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.42
4
+ version: 3.0.43
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Kochanowicz
@@ -119,28 +119,8 @@ files:
119
119
  - app/assets/stylesheets/core/components/_tables.sass
120
120
  - app/assets/stylesheets/core/components/_tabs.sass
121
121
  - app/assets/stylesheets/core/components/_tooltips.sass
122
- - app/assets/stylesheets/docs.sass
123
- - app/assets/stylesheets/fullpage.sass
124
122
  - app/assets/stylesheets/index.scss
125
- - app/assets/stylesheets/kickstart-semantic.sass
126
- - app/assets/stylesheets/kickstart.sass
127
123
  - app/assets/stylesheets/kickstart_rails.scss
128
- - app/assets/stylesheets/pages/docs/form.sass
129
- - app/assets/stylesheets/pages/docs/grid.sass
130
- - app/assets/stylesheets/pages/docs/index.sass
131
- - app/assets/stylesheets/pages/docs/ui/alerts.sass
132
- - app/assets/stylesheets/pages/docs/ui/buttons.sass
133
- - app/assets/stylesheets/pages/docs/ui/forms.sass
134
- - app/assets/stylesheets/pages/docs/ui/images.sass
135
- - app/assets/stylesheets/pages/docs/ui/labels.sass
136
- - app/assets/stylesheets/pages/docs/ui/modals.sass
137
- - app/assets/stylesheets/pages/docs/ui/navigation.sass
138
- - app/assets/stylesheets/pages/docs/ui/notifications.sass
139
- - app/assets/stylesheets/pages/docs/ui/tables.sass
140
- - app/assets/stylesheets/pages/docs/ui/tabs.sass
141
- - app/assets/stylesheets/pages/docs/ui/tooltips.sass
142
- - app/assets/stylesheets/pages/docs/ui/typography.sass
143
- - app/assets/stylesheets/pages/index.sass
144
124
  - app/assets/stylesheets/themes/default/theme.sass
145
125
  - app/assets/stylesheets/vendor/_index.sass
146
126
  - app/assets/stylesheets/vendor/switch/README.md
@@ -1,99 +0,0 @@
1
- // Docs
2
- // ====
3
- // Generation of css for the getkickstart.com homepage.
4
- // Page-level styling goes elsewhere.
5
-
6
- // Choose your theme
7
- @import themes/default/theme
8
-
9
- // Basic layout
10
- // ------------
11
-
12
- body
13
- background-color: map-get($white, darkest)
14
-
15
- .wrapper
16
- +container
17
-
18
- #above-footer
19
- +above-footer
20
- position: relative
21
-
22
- #screen
23
- +screen
24
- max-width: $xxl-monitor
25
- box-shadow: 0px 0px $space map-get($gray, darker)
26
- margin: 0px auto
27
- background: white
28
-
29
- // Navigation
30
- // ----------
31
-
32
- .main-navigation
33
- +navbar($collapse: true, $layout: 'fluid', $background-color: transparent)
34
-
35
- nav.expand
36
- background: white
37
- color: map-get($black, light)
38
-
39
- > ul > li > a:not([role=button])
40
- color: map-get($black, light)
41
-
42
- svg
43
- fill: map-get($black, light)
44
-
45
- svg
46
- height: 30px
47
- fill: white
48
-
49
- // Footer
50
- // ------
51
-
52
- footer.main
53
- background: map-get($gray, light)
54
- padding: $space 0
55
- color: white
56
-
57
- a
58
- color: white
59
- text-decoration: underline
60
-
61
- // Growl
62
- .growl
63
- +alert
64
-
65
- &.warning
66
- background-color: map-get($colors, yellow)
67
- color: black
68
-
69
- // Iframes
70
- // -------
71
-
72
- iframe.animation
73
- max-width: 500px
74
- height: 200px
75
- display: block
76
- margin-left: auto
77
- margin-right: auto
78
- margin-bottom: 25px
79
- overflow: hidden
80
-
81
- // Components
82
- // ----------
83
-
84
- // Buttons
85
- .button
86
- +button
87
-
88
- &.button-primary
89
- +button-color($primary-color)
90
-
91
- // Notices
92
- .notice
93
- +label
94
-
95
- // Switches
96
- // --------
97
-
98
- .switch
99
- +switch
@@ -1,7 +0,0 @@
1
- @import themes/default/theme
2
-
3
- .main-navigation
4
- +navbar($background-color: white)
5
-
6
- svg
7
- fill: map-get($black, lighter)
@@ -1,10 +0,0 @@
1
- // Kickstart Semantic
2
- // ==================
3
- // This is just a starter file for using Kickstrap via Sass
4
- // Rename this file to something you like (e.g. style.sass) and import it by
5
- // the same .css name from your html/jade file.
6
-
7
- // Choose your theme
8
- @import themes/default/theme
9
-
10
- // Now write your own Sass
@@ -1,344 +0,0 @@
1
- /*
2
- * Kickstart
3
- * =========
4
- */
5
- // For users who prefer to not use Sass, this will generate a CSS file with
6
- // classes for all the components.
7
-
8
- // Import the semantic index
9
- @import themes/default/theme
10
-
11
- // Generate color classes (This is as close as I can get to being dry.)
12
- =color-classes($prefix, $background-color: false, $color: false)
13
- $color-names: "red", "orange", "yellow", "green", "blue", "violet"
14
- @each $name, $value in $colors
15
- .#{$prefix}-#{unquote($name)}
16
- @if $background-color
17
- background-color: $value
18
- @if $color
19
- color: $value
20
-
21
- // LAYOUT
22
- // ------
23
-
24
- #above-footer
25
- +above-footer
26
-
27
- #screen
28
- +screen
29
-
30
- // Assign mixins to static component classes
31
-
32
- // ALERTS
33
- // ------
34
-
35
- .alert
36
- +alert
37
-
38
- &.alert-red
39
- background: map-get($colors, red)
40
- &.alert-green
41
- background: map-get($colors, green)
42
- &.alert-yellow
43
- background: map-get($colors, yellow)
44
- color: $default-font-color
45
-
46
- // BUTTONS
47
- // -------
48
- .button
49
- +button
50
- // TODO: Make loop
51
- &.button-primary
52
- +button-color($primary-color)
53
-
54
- &.button-secondary
55
- +button-color($secondary-color)
56
-
57
- &.button-clear
58
- +button-color(transparent)
59
-
60
- &.button-red
61
- +button-color(map-get($colors, red))
62
-
63
- &.button-orange
64
- +button-color(map-get($colors, orange))
65
-
66
- &.button-yellow
67
- +button-color(map-get($colors, yellow))
68
-
69
- &.button-green
70
- +button-color(map-get($colors, green))
71
-
72
- &.button-blue
73
- +button-color(map-get($colors, blue))
74
-
75
- &.button-violet
76
- +button-color(map-get($colors, violet))
77
-
78
- &.button-small
79
- +button-size($size: 0.85)
80
-
81
- &.button-large
82
- +button-size($size: 1.2)
83
-
84
- .button-group
85
- +button-group
86
-
87
- &.button-primary
88
- > li > *:not(ul)
89
- +button-color($primary-color)
90
-
91
- &.button-secondary
92
- > li > *:not(ul)
93
- +button-color($secondary-color)
94
-
95
- &.button-clear
96
- > li > *:not(ul)
97
- +button-color(transparent)
98
-
99
- &.button-red
100
- > li > *:not(ul)
101
- +button-color(map-get($colors, red))
102
-
103
- &.button-orange
104
- > li > *:not(ul)
105
- +button-color(map-get($colors, orange))
106
-
107
- &.button-yellow
108
- > li > *:not(ul)
109
- +button-color(map-get($colors, yellow))
110
-
111
- &.button-green
112
- > li > *:not(ul)
113
- +button-color(map-get($colors, green))
114
-
115
- &.button-blue
116
- > li > *:not(ul)
117
- +button-color(map-get($colors, blue))
118
-
119
- &.button-violet
120
- > li > *:not(ul)
121
- +button-color(map-get($colors, violet))
122
-
123
- &.button-small
124
- > li > *:not(ul)
125
- +button-size($size: 0.85)
126
-
127
- &.button-large
128
- > li > *:not(ul)
129
- +button-size($size: 1.2)
130
-
131
- // FORMS
132
- // -----
133
- .form
134
- +form
135
-
136
- .form-horizontal
137
- +form-horizontal
138
-
139
- .form-left
140
- +form-left
141
-
142
- .form_group
143
- +form_group('vertical')
144
-
145
- &.form_group-horizontal,
146
- .form_group-horizontal,
147
- .form-horizontal &
148
- +form_group('horizontal')
149
-
150
- // GRID
151
- // ----
152
- .container
153
- +container
154
-
155
- .row
156
- +row
157
-
158
- @for $i from 1 through 12
159
- .col-#{$i}
160
- +column($i)
161
-
162
- .col-half
163
- +column('half')
164
-
165
- .col-third
166
- +column('third')
167
-
168
- .col-twothirds
169
- +column('twothirds')
170
-
171
- // Left offsets
172
- @each $screen in '', 'xs-', 'sm-', 'rg-', 'md-', 'lg-', 'xl-'
173
- .col-left-#{$screen}third
174
- +left('third')
175
-
176
- .col-left-#{$screen}twothirds
177
- +left('twothirds')
178
-
179
- .col-left-#{$screen}half
180
- +left('half')
181
-
182
- @for $i from 1 through 12
183
- .col-left-#{$screen}#{$i}
184
- +left($i)
185
-
186
- // Right offsets
187
- @each $screen in '', 'xs-', 'sm-', 'rg-', 'md-', 'lg-', 'xl-'
188
- .col-right-#{$screen}third
189
- +right('third')
190
-
191
- .col-right-#{$screen}twothirds
192
- +right('twothirds')
193
-
194
- .col-right-#{$screen}half
195
- +right('half')
196
-
197
- @for $i from 1 through 12
198
- .col-right-#{$screen}#{$i}
199
- +right($i)
200
-
201
- // IMAGES
202
- // ------
203
-
204
- .thumbnail-content
205
- +thumbnail-content
206
-
207
- .thumbnail
208
- +thumbnail
209
-
210
- // LABELS
211
- // ------
212
-
213
- .label
214
- +label
215
-
216
- &.label-red
217
- +label(map-get($colors, red))
218
-
219
- &.label-orange
220
- +label(map-get($colors, orange))
221
-
222
- &.label-yellow
223
- +label(map-get($colors, yellow))
224
-
225
- &.label-green
226
- +label(map-get($colors, green))
227
-
228
- &.label-blue
229
- +label(map-get($colors, blue))
230
-
231
- &.label-violet
232
- +label(map-get($colors, violet))
233
-
234
- &.label-primary
235
- +label($primary-color)
236
-
237
- &.label-secondary
238
- +label($secondary-color)
239
-
240
- // MODALS
241
- // ------
242
-
243
- .modal
244
- +modal
245
-
246
- // NAVIGATION
247
- // ----------
248
-
249
- .navbar
250
- +navbar
251
-
252
- &.navbar-dark
253
- +navbar-color($background-color: map-get($black, lighter))
254
-
255
- &.navbar-collapse
256
- +navbar($collapse: true)
257
-
258
- &.navbar-fluid
259
- +navbar-fluid
260
-
261
- &.navbar-fluid_fixed
262
- +navbar-fluid_fixed
263
-
264
- &.navbar-fixed
265
- +navbar-fixed
266
-
267
- .pagination
268
- +pagination
269
-
270
- // TABLES
271
- // ------
272
- .table
273
- +table
274
-
275
- &.table-blank
276
- +table-blank
277
-
278
- &.table-zebra
279
- +table-zebra
280
-
281
- &.table-hover
282
- +table-hover
283
-
284
- // TABS
285
- // ----
286
- .tabs
287
- +tabs
288
-
289
- .tab_pane_container
290
- +tab_pane_container
291
-
292
- // TOOLTIPS
293
- // --------
294
-
295
- .tooltip_trigger
296
- +tooltip_trigger
297
-
298
- // TYPOGRAPHY
299
- // ----------
300
-
301
- .xxl
302
- +heading-xxl
303
-
304
- .xl
305
- +heading-xl
306
-
307
- .lg
308
- +heading-lg
309
-
310
- .md
311
- +heading-md
312
-
313
- .rg
314
- +heading-rg
315
-
316
- .sm
317
- +heading-sm
318
-
319
- .xs
320
- +heading-xs
321
-
322
- .xxs
323
- +heading-xxs
324
-
325
- .readable
326
- +p(true)
327
-
328
- p, ul li, table, table td, table th
329
- +p(true)
330
-
331
- .page-heading
332
- +page-heading
333
-
334
- .hero
335
- +hero
336
-
337
- .list
338
- +list
339
-
340
- .list-unstyled
341
- +list-unstyled
342
-
343
- .list-horizontal
344
- +list-horizontal
File without changes
@@ -1,73 +0,0 @@
1
- @import ../../themes/default/theme
2
-
3
- .row
4
- +row
5
-
6
- .col-2
7
- +column(2)
8
-
9
- .col-3
10
- +column(3)
11
-
12
- .col-6
13
- +column(6)
14
-
15
- .col-4
16
- +column(4)
17
-
18
- .col-9
19
- +column(9)
20
-
21
- .col-12
22
- +column(12)
23
-
24
- .col-left-6
25
- +left(6)
26
-
27
- .col-left-1
28
- +left(1)
29
-
30
- .col-left-3
31
- +left(3)
32
-
33
- .col-left-4
34
- +left(4)
35
-
36
- .col-left-2
37
- +left(2)
38
-
39
- .col-right-3
40
- +right(3)
41
-
42
- .col-right-4
43
- +right(4)
44
-
45
- .col-right-6
46
- +right(6)
47
-
48
- .col-right-twothirds
49
- +right('twothirds')
50
-
51
- .col-left-twothirds
52
- +left('twothirds')
53
-
54
- .col-third
55
- +column('third')
56
-
57
- .col-twothirds
58
- +column('twothirds')
59
-
60
- .col-example
61
- +root-element
62
- background: map-get($white, darker)
63
- color: map-get($black, lighter)
64
- text-align: center
65
-
66
- &.gray
67
- background: white
68
- margin:
69
- bottom: 0
70
- top: $space/2
71
-
72
- table
73
- +table
@@ -1,217 +0,0 @@
1
- // Docs index
2
- // ==================
3
- // Generic styles that should be shared across the documentation
4
-
5
- @import themes/default/theme
6
-
7
- h1
8
- +heading-rg
9
-
10
- h2
11
- +heading-xs
12
-
13
- h3, h4, h5, h6
14
- +heading-xxs
15
-
16
- .docs-nav
17
- +navbar($collapse: true, $layout: 'fluid')
18
- margin-top: -$space
19
-
20
- .fixed-area
21
- margin-top: -$space
22
-
23
- @media screen and (max-width: $phablet)
24
- +container
25
-
26
- .fixed-main, .fixed-toc
27
- @media screen and (min-width: $phablet)
28
- float: left
29
-
30
- form.switches
31
- margin-bottom: $space
32
-
33
- .fixed-main
34
- @media screen and (min-width: $phablet)
35
- width: 50%
36
-
37
- @media screen and (min-width: $tablet)
38
- width: 75%
39
-
40
- @media screen and (min-width: $large-monitor)
41
- width: 80%
42
-
43
- .fixed-toc
44
- width: 100%
45
- font-size: 1rem
46
- line-height: 2rem
47
-
48
- @media screen and (min-width: $tablet)
49
- font-size: 0.85rem
50
-
51
- a
52
- color: map-get($colors, blue)
53
-
54
- ul
55
- +list($style: 'unstyled')
56
- margin-bottom: 0
57
-
58
- > li
59
- margin-bottom: 0
60
-
61
- > ul
62
- // border-left: 1px solid map-get($colors, blue)
63
- padding-left: $space/3
64
- margin-bottom: $space/3
65
-
66
- h1
67
- +heading-xs
68
-
69
- @media screen and(min-width: $phablet)
70
- padding: $space
71
- width: 50%
72
-
73
- @media screen and (min-width: $tablet)
74
- width: 25%
75
-
76
- @media screen and (min-width: $large-monitor)
77
- width: 20%
78
-
79
- // When in fixed position
80
- &.fixed
81
- .fixed-toc
82
- @media screen and (min-width: $phablet)
83
- position: fixed
84
- top: 0px
85
- bottom: 0
86
- left: 0
87
- right: 50%
88
- overflow: auto
89
-
90
- @media screen and (min-width: $tablet)
91
- right: 75%
92
-
93
- @media screen and (min-width: $large-monitor)
94
- right: 80%
95
-
96
- @media screen and (min-width: $xl-monitor)
97
- left: calc(50vw - #{$xl-monitor/2})
98
-
99
- @media screen and (min-width: $xxl-monitor)
100
- left: calc(50vw - #{$xxl-monitor/2})
101
-
102
- .fixed-main
103
- @media screen and (min-width: $phablet)
104
- margin-left: 50%
105
-
106
- @media screen and (min-width: $tablet)
107
- margin-left: 25%
108
-
109
- @media screen and (min-width: $large-monitor)
110
- margin-left: 20%
111
-
112
- .document
113
- margin-bottom: $space * 4
114
-
115
- .code
116
- background: #1d1f21
117
- padding: $space/4
118
-
119
- p:first-child
120
- display: none
121
-
122
- @media screen and (min-width: $phablet)
123
- .article, .code
124
- padding: $space
125
-
126
- @media screen and (min-width: $desktop)
127
- display: flex
128
- justify-content: flex-start
129
- align-items: stretch
130
- margin:
131
- bottom: 0
132
- top: 0
133
-
134
- .article, .code
135
- width: 50%
136
- border-bottom: 1px solid map-get($white, darker)
137
-
138
- .code
139
- border-color: darken(map-get($colors, blue), 35%)
140
-
141
- .article.article-full
142
- width: 100%
143
- position: relative
144
-
145
- padding-right: calc(50% + #{$space})
146
-
147
- &:after
148
- content: ' '
149
- display: block
150
- position: absolute
151
- top: 0
152
- right: 0
153
- left: 50%
154
- bottom: -1px
155
- // background: lighten(#1d1f21, 10%)
156
- background: black
157
- border-bottom: 1px solid map-get($black, light)
158
-
159
- .page_heading
160
- +page_heading
161
-
162
- h1
163
- +heading-md
164
-
165
- @media screen and (min-width: $phablet)
166
- padding-left: $space
167
- margin-bottom: 0
168
-
169
- @media screen and (min-width: $phablet)
170
- margin-top: $space
171
-
172
- @media screen and (min-width: $desktop)
173
- margin-bottom: 0
174
-
175
- // Highlight JS
176
-
177
- code, pre, kbd, samp
178
- &.hljs
179
- font-size: 0.9rem
180
- font-family: $mono-font-family
181
-
182
- // Main page overrides
183
- .main-navigation
184
- svg
185
- fill: map-get($black, lighter)
186
-
187
- +navbar($collapse: true, $background-color: white)
188
-
189
- // Optional doc blocks toggling
190
- .if-semantic, .if-jquery
191
- display: none
192
-
193
- span.ifnot-semantic, span.ifnot-jquery
194
- display: inline
195
-
196
- body.show-semantic
197
- .ifnot-semantic
198
- display: none
199
-
200
- .if-semantic
201
- display: block
202
-
203
- span.if-semantic
204
- display: inline
205
-
206
- body.show-jquery
207
- .ifnot-jquery
208
- display: none
209
-
210
- .if-jquery
211
- display: block
212
-
213
- span.if-jquery
214
- display: inline
215
-
216
- .example
217
- margin-bottom: $space
@@ -1,5 +0,0 @@
1
- @import ../../../themes/default/theme
2
-
3
- .alert
4
- +alert
5
- background: map-get($colors, blue)
@@ -1,52 +0,0 @@
1
- @import ../../../themes/default/theme
2
-
3
- .button
4
- &.button-green
5
- +button-color(map-get($colors, green))
6
- &.button-red
7
- +button-color(map-get($colors, red))
8
- &.button-blue
9
- +button-color(map-get($colors, blue))
10
- &.button-yellow
11
- +button-color(map-get($colors, yellow))
12
- &.button-orange
13
- +button-color(map-get($colors, orange))
14
-
15
- &.button-small
16
- +button-size(0.85)
17
-
18
- &.button-large
19
- +button-size(1.2)
20
-
21
- .button-group
22
- +button-group
23
-
24
- &.button-green
25
- button
26
- +button-color(map-get($colors, green))
27
- &.button-violet
28
- button
29
- +button-color(map-get($colors, violet))
30
- &.button-red
31
- button
32
- +button-color(map-get($colors, red))
33
-
34
- &.button-small
35
- button
36
- +button-size(0.85)
37
-
38
- &.button-large
39
- button
40
- +button-size(1.2)
41
-
42
- .notice
43
- +label($background-color: map-get($colors, yellow))
44
-
45
- .row
46
- +row
47
-
48
- .col-4
49
- +column(4)
50
-
51
- .list-unstyled
52
- +list('unstyled')
@@ -1,31 +0,0 @@
1
- @import ../../../themes/default/theme
2
-
3
- form.form
4
- +form
5
-
6
- input[type="submit"]
7
- +button($primary-color)
8
-
9
- &.form_horizontal
10
- +form('horizontal')
11
-
12
- &.form-left
13
- +form('left')
14
-
15
- .form_group
16
- +form_group
17
-
18
- &.form_group-horizontal
19
- +form_group('horizontal')
20
-
21
- .row
22
- +row
23
-
24
- .col-third
25
- +column('third')
26
-
27
- .col-twothirds
28
- +column('twothirds')
29
-
30
- .col-twothirds.col-left-third
31
- +column('twothirds', 0, 'third')
@@ -1,7 +0,0 @@
1
- @import ../../../themes/default/theme
2
-
3
- .thumbnail
4
- +thumbnail
5
-
6
- .thumbnail-content
7
- +thumbnail_content
@@ -1,10 +0,0 @@
1
- @import ../../../themes/default/theme
2
-
3
- .label
4
- +label
5
-
6
- &.label-red
7
- +label(map-get($colors, red))
8
-
9
- &.label-green
10
- +label(map-get($colors, green))
@@ -1,18 +0,0 @@
1
- @import ../../../themes/default/theme
2
-
3
- .modal, .modal-example
4
- +modal
5
-
6
- .modal-example
7
- +modal
8
-
9
- &.override
10
- max-width: 100%
11
- display: block
12
- position: static
13
- box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5)
14
- left: auto
15
- right: auto
16
- top: auto
17
- bottom: auto
18
- margin: 0
@@ -1,14 +0,0 @@
1
- @import ../../../themes/default/theme
2
-
3
- .navbar
4
- +navbar
5
-
6
- &.navbar-blue
7
- +navbar-color(map-get($colors, blue))
8
-
9
- .pagination
10
- +pagination
11
-
12
- .document
13
- img
14
- max-width: 100%
@@ -1,17 +0,0 @@
1
- @import ../../../themes/default/theme
2
-
3
- .growl
4
- +alert
5
-
6
- &.alert-yellow
7
- background-color: map-get($colors, yellow)
8
- color: black
9
-
10
- &.alert-red
11
- background-color: map-get($colors, red)
12
-
13
- &.alert-blue
14
- background-color: map-get($colors, blue)
15
-
16
- &.alert-green
17
- background-color: map-get($colors, green)
@@ -1,13 +0,0 @@
1
- @import ../../../themes/default/theme
2
-
3
- .table
4
- +table
5
-
6
- &.table-blank
7
- +table-blank
8
-
9
- &.table-zebra
10
- +table-zebra
11
-
12
- &.table-hover
13
- +table-hover
@@ -1,7 +0,0 @@
1
- @import ../../../themes/default/theme
2
-
3
- .tabs
4
- +tabs
5
-
6
- .tab_pane_container
7
- +tab_pane_container
@@ -1,7 +0,0 @@
1
- @import ../../../themes/default/theme
2
-
3
- .tooltip_trigger
4
- +tooltip_trigger
5
-
6
- .list-unstyled
7
- +list('unstyled')
@@ -1,56 +0,0 @@
1
- @import ../../../themes/default/theme
2
-
3
- .example
4
- h1
5
- +heading-lg
6
-
7
- &.xxl
8
- +heading-xxl
9
-
10
- &.xl
11
- +heading-xl
12
-
13
- &.lg
14
- +heading-lg
15
-
16
- &.md
17
- +heading-md
18
-
19
- &.rg
20
- +heading-rg
21
-
22
- &.sm
23
- +heading-sm
24
-
25
- &.xs
26
- +heading-xs
27
-
28
- &.xxs
29
- +heading-xxs
30
-
31
- h2
32
- +heading-md
33
-
34
- h3
35
- +heading-rg
36
-
37
- h4
38
- +heading-sm
39
-
40
- h5
41
- +heading-xs
42
-
43
- h6
44
- +heading-xxs
45
-
46
- p.readable
47
- +p(true)
48
-
49
- .page-heading
50
- +page-heading
51
-
52
- .list-unstyled
53
- +list($style: 'unstyled')
54
-
55
- &.list-horizontal
56
- +list($style: 'unstyled horizontal')
@@ -1,105 +0,0 @@
1
- // Index Page
2
- // ==========
3
- // Homepage for getkickstart.com
4
-
5
- @import themes/default/theme
6
-
7
- video
8
- max-width: 100%
9
- margin-bottom: -$space/2
10
-
11
- .index-hero
12
- background-color: white
13
- background: url('/img/hero.jpg')
14
- background-repeat: no-repeat
15
- background-position: center center
16
- background-size: 200% 100%
17
- padding: ($space * 2)
18
- margin:
19
- top: -72px
20
- bottom: $space
21
- padding-top: 70px
22
-
23
- @media screen and (min-width: $desktop)
24
- padding: ($space * 4)
25
- margin-bottom: $space * 4
26
- height: 500px
27
- background-size: $xxl-monitor 100%
28
-
29
- svg
30
- display: block
31
- margin: 0px auto
32
- max-width: 70%
33
- width: 700px
34
- fill: white
35
-
36
- h2
37
- +heading-sm
38
- text-align: center
39
- color: white
40
- opacity: 0.75
41
-
42
- @media screen and (min-width: $desktop)
43
- +heading-md
44
-
45
- .first-pitch, .second-pitch, .third-pitch
46
- +row
47
-
48
- @media screen and (min-width: $tablet)
49
- margin-bottom: $space * 3
50
-
51
- h1
52
- +heading-md
53
-
54
- p
55
- +p(true)
56
-
57
- .first-pitch
58
- .feature-image
59
- +column('third')
60
-
61
- img
62
- max-width: 100%
63
-
64
- .feature
65
- +column('twothirds')
66
- margin:
67
- bottom: $space * 2
68
-
69
- .second-pitch
70
- .feature
71
- +column('third')
72
-
73
- h1
74
- +heading-rg
75
-
76
- .third-pitch
77
- .feature
78
- +column('half')
79
-
80
- @media screen and (min-width: $desktop)
81
- +column(3)
82
-
83
- h1
84
- +heading-sm
85
-
86
- .specs
87
- +row
88
-
89
- h1
90
- +heading-xs
91
- +column(12)
92
-
93
- .spec
94
- +column(6)
95
-
96
- @media screen and (min-width: $desktop)
97
- +column(3)
98
-
99
- dl
100
- font-size: 0.85rem
101
-
102
- dt
103
- font-weight: bold
104
- dd
105
- margin-left: 0