smock 0.1.6 → 0.1.7
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.
- data/Gemfile.lock +3 -3
- data/README.md +5 -0
- data/app/assets/stylesheets/includes/_colors.css.sass +16 -0
- data/app/assets/stylesheets/includes/_forms.css.sass +29 -0
- data/app/assets/stylesheets/includes/_grid.css.sass +13 -0
- data/app/assets/stylesheets/includes/_layouts.css.sass +28 -0
- data/app/assets/stylesheets/includes/_mixins.css.sass +66 -0
- data/app/assets/stylesheets/includes/_typography.css.sass +58 -0
- data/app/assets/stylesheets/includes/_typography_settings.sass +22 -0
- data/app/assets/stylesheets/includes/icons.css.sass +149 -0
- data/app/assets/stylesheets/modules/_asset_uploader.css.sass +54 -0
- data/app/assets/stylesheets/modules/_categories.css.sass +32 -0
- data/app/assets/stylesheets/modules/_footer.css.sass +100 -0
- data/app/assets/stylesheets/modules/_header.css.sass +32 -0
- data/app/assets/stylesheets/modules/_hero.css.sass +69 -0
- data/app/assets/stylesheets/modules/_nav.css.sass +19 -0
- data/app/assets/stylesheets/modules/_pagination.css.sass +5 -0
- data/app/assets/stylesheets/modules/_search_filters.css.sass +34 -0
- data/app/assets/stylesheets/modules/_service.css.sass +58 -0
- data/app/assets/stylesheets/modules/_styleguide.css.sass +73 -0
- data/app/assets/stylesheets/modules/_testimonials.css.sass +27 -0
- data/app/assets/stylesheets/modules/form/_credit_card.css.sass +15 -0
- data/app/assets/stylesheets/modules/form/_payment_method.css.sass +28 -0
- data/app/assets/stylesheets/modules/header/_categories.css.sass +40 -0
- data/app/assets/stylesheets/modules/header/_dropdown.css.sass +55 -0
- data/app/assets/stylesheets/modules/header/_nav.css.sass +58 -0
- data/app/assets/stylesheets/modules/header/_search.css.sass +32 -0
- data/app/assets/stylesheets/modules/service/_favorites.css.sass +82 -0
- data/app/assets/stylesheets/smock.sass +181 -0
- data/app/assets/stylesheets/thirdparty/bourbon/_bourbon-deprecated-upcoming.scss +13 -0
- data/app/assets/stylesheets/thirdparty/bourbon/_bourbon.scss +74 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_button.scss +374 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_clearfix.scss +23 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_directional-values.scss +111 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_ellipsis.scss +7 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_font-family.scss +5 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_hide-text.scss +10 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_html5-input-types.scss +110 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_position.scss +32 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_prefixer.scss +45 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_retina-image.scss +31 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_size.scss +44 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_timing-functions.scss +32 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_triangle.scss +86 -0
- data/app/assets/stylesheets/thirdparty/bourbon/addons/_word-wrap.scss +8 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss +52 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_appearance.scss +3 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_backface-visibility.scss +6 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_background-image.scss +48 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_background.scss +103 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_border-image.scss +56 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_border-radius.scss +22 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_box-sizing.scss +4 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_calc.scss +4 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_columns.scss +47 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_filter.scss +5 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_flex-box.scss +321 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_font-face.scss +23 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_font-feature-settings.scss +10 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_hidpi-media-query.scss +10 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_hyphens.scss +4 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_image-rendering.scss +14 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_inline-block.scss +8 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_keyframes.scss +35 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_linear-gradient.scss +38 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_perspective.scss +8 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_placeholder.scss +8 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_radial-gradient.scss +39 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_transform.scss +15 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_transition.scss +77 -0
- data/app/assets/stylesheets/thirdparty/bourbon/css3/_user-select.scss +3 -0
- data/app/assets/stylesheets/thirdparty/bourbon/functions/_color-lightness.scss +13 -0
- data/app/assets/stylesheets/thirdparty/bourbon/functions/_flex-grid.scss +39 -0
- data/app/assets/stylesheets/thirdparty/bourbon/functions/_golden-ratio.scss +3 -0
- data/app/assets/stylesheets/thirdparty/bourbon/functions/_grid-width.scss +13 -0
- data/app/assets/stylesheets/thirdparty/bourbon/functions/_linear-gradient.scss +13 -0
- data/app/assets/stylesheets/thirdparty/bourbon/functions/_modular-scale.scss +66 -0
- data/app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-em.scss +13 -0
- data/app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss +15 -0
- data/app/assets/stylesheets/thirdparty/bourbon/functions/_radial-gradient.scss +23 -0
- data/app/assets/stylesheets/thirdparty/bourbon/functions/_strip-units.scss +5 -0
- data/app/assets/stylesheets/thirdparty/bourbon/functions/_tint-shade.scss +9 -0
- data/app/assets/stylesheets/thirdparty/bourbon/functions/_transition-property-name.scss +22 -0
- data/app/assets/stylesheets/thirdparty/bourbon/functions/_unpack.scss +17 -0
- data/app/assets/stylesheets/thirdparty/bourbon/helpers/_gradient-positions-parser.scss +13 -0
- data/app/assets/stylesheets/thirdparty/bourbon/helpers/_linear-positions-parser.scss +61 -0
- data/app/assets/stylesheets/thirdparty/bourbon/helpers/_radial-arg-parser.scss +69 -0
- data/app/assets/stylesheets/thirdparty/bourbon/helpers/_radial-positions-parser.scss +18 -0
- data/app/assets/stylesheets/thirdparty/bourbon/helpers/_render-gradients.scss +26 -0
- data/app/assets/stylesheets/thirdparty/bourbon/helpers/_shape-size-stripper.scss +10 -0
- data/app/assets/stylesheets/thirdparty/bourbon/settings/_asset-pipeline.scss +1 -0
- data/app/assets/stylesheets/thirdparty/bourbon/settings/_prefixer.scss +6 -0
- data/app/assets/stylesheets/thirdparty/bourbon/settings/_px-to-em.scss +1 -0
- data/app/assets/stylesheets/thirdparty/flexbox_mixins.scss +395 -0
- data/app/assets/stylesheets/thirdparty/jquery.fancybox.css.erb +274 -0
- data/app/assets/stylesheets/thirdparty/neat/_neat-helpers.scss +7 -0
- data/app/assets/stylesheets/thirdparty/neat/_neat.scss +21 -0
- data/app/assets/stylesheets/thirdparty/neat/functions/_new-breakpoint.scss +16 -0
- data/app/assets/stylesheets/thirdparty/neat/functions/_private.scss +125 -0
- data/app/assets/stylesheets/thirdparty/neat/grid/_fill-parent.scss +7 -0
- data/app/assets/stylesheets/thirdparty/neat/grid/_grid.scss +5 -0
- data/app/assets/stylesheets/thirdparty/neat/grid/_media.scss +38 -0
- data/app/assets/stylesheets/thirdparty/neat/grid/_omega.scss +61 -0
- data/app/assets/stylesheets/thirdparty/neat/grid/_outer-container.scss +8 -0
- data/app/assets/stylesheets/thirdparty/neat/grid/_pad.scss +8 -0
- data/app/assets/stylesheets/thirdparty/neat/grid/_private.scss +43 -0
- data/app/assets/stylesheets/thirdparty/neat/grid/_reset.scss +12 -0
- data/app/assets/stylesheets/thirdparty/neat/grid/_row.scss +17 -0
- data/app/assets/stylesheets/thirdparty/neat/grid/_shift.scss +16 -0
- data/app/assets/stylesheets/thirdparty/neat/grid/_span-columns.scss +43 -0
- data/app/assets/stylesheets/thirdparty/neat/grid/_to-deprecate.scss +57 -0
- data/app/assets/stylesheets/thirdparty/neat/grid/_visual-grid.scss +41 -0
- data/app/assets/stylesheets/thirdparty/neat/settings/_grid.scss +7 -0
- data/app/assets/stylesheets/thirdparty/neat/settings/_visual-grid.scss +5 -0
- data/app/assets/stylesheets/thirdparty/normalize.css +425 -0
- data/app/assets/stylesheets/thirdparty/nprogress.css +81 -0
- data/app/assets/stylesheets/thirdparty/typecsset.scss +352 -0
- data/app/assets/stylesheets/thirdparty/video-js.css +775 -0
- data/smock.gemspec +2 -2
- metadata +121 -5
@@ -0,0 +1,15 @@
|
|
1
|
+
.credit-card
|
2
|
+
display: none
|
3
|
+
|
4
|
+
.credit-card,
|
5
|
+
.credit-card__numbers,
|
6
|
+
.credit-card__expiry
|
7
|
+
+clearfix
|
8
|
+
|
9
|
+
.credit-card__numbers__card-number
|
10
|
+
+span-columns(3 of 4)
|
11
|
+
.credit-card__numbers__cvv
|
12
|
+
+span-columns(1 of 4)
|
13
|
+
.credit-card__expiry__month,
|
14
|
+
.credit-card__expiry__year
|
15
|
+
+span-columns(2 of 4)
|
@@ -0,0 +1,28 @@
|
|
1
|
+
.payment-method
|
2
|
+
+clearfix
|
3
|
+
span
|
4
|
+
display: inline-block
|
5
|
+
float: left
|
6
|
+
+space(margin-right)
|
7
|
+
input
|
8
|
+
width: auto
|
9
|
+
float: left
|
10
|
+
display: inline
|
11
|
+
margin: 3px
|
12
|
+
+space(height)
|
13
|
+
+space(width)
|
14
|
+
+space(margin-top, 0.5)
|
15
|
+
+space(margin-bottom, 0.5)
|
16
|
+
box-shadow: 0 0 0 0 transparent
|
17
|
+
label[for$="paypal"]
|
18
|
+
background: image-url('@x2/paypal_payment.png') center no-repeat
|
19
|
+
label[for$="braintree"]
|
20
|
+
background: image-url('@x2/creditcard_payment.png') center no-repeat
|
21
|
+
label
|
22
|
+
+space(line-height)
|
23
|
+
+space(height, 2)
|
24
|
+
display: block
|
25
|
+
width: 74px
|
26
|
+
float: left
|
27
|
+
text-indent: -9999px
|
28
|
+
|
@@ -0,0 +1,40 @@
|
|
1
|
+
.header__categories
|
2
|
+
+span-columns(2)
|
3
|
+
+space(line-height, 2)
|
4
|
+
position: relative
|
5
|
+
&:hover
|
6
|
+
.header__categories__dropdown__top-level
|
7
|
+
display: block
|
8
|
+
|
9
|
+
.header__categories__label
|
10
|
+
+space(line-height, 2)
|
11
|
+
+border(3px)
|
12
|
+
display: block
|
13
|
+
text-align: center
|
14
|
+
border-radius: $border-radius
|
15
|
+
cursor: pointer
|
16
|
+
|
17
|
+
.header__categories__down-arrow
|
18
|
+
+space(line-height)
|
19
|
+
display: inline-block
|
20
|
+
//refactor these pixel values
|
21
|
+
height: 10px
|
22
|
+
width: 10px
|
23
|
+
margin-left: 5px
|
24
|
+
background-position: center !important
|
25
|
+
|
26
|
+
.header__categories__dropdown__top-level
|
27
|
+
+span-columns(4 of 2)
|
28
|
+
+space(padding)
|
29
|
+
+border
|
30
|
+
position: absolute
|
31
|
+
z-index: 10000
|
32
|
+
margin: 0
|
33
|
+
list-style: none
|
34
|
+
background: $white
|
35
|
+
display: none
|
36
|
+
|
37
|
+
.header__categories__dropdown__top-level__link
|
38
|
+
text-decoration: none
|
39
|
+
&:hover
|
40
|
+
text-decoration: underline
|
@@ -0,0 +1,55 @@
|
|
1
|
+
.header__login:hover
|
2
|
+
.header__dropdown-container
|
3
|
+
display: block
|
4
|
+
|
5
|
+
.header__dropdown-container
|
6
|
+
+span-columns(3 of 12)
|
7
|
+
+space(top, 2)
|
8
|
+
+space(line-height)
|
9
|
+
+space(padding)
|
10
|
+
+border
|
11
|
+
display: none
|
12
|
+
position: absolute
|
13
|
+
right: 0
|
14
|
+
margin: 0
|
15
|
+
z-index: 10000
|
16
|
+
list-style: none
|
17
|
+
background: $white
|
18
|
+
border-radius: $border-radius
|
19
|
+
|
20
|
+
.header__dropdown
|
21
|
+
margin: 0
|
22
|
+
list-style: none
|
23
|
+
|
24
|
+
.header__dropdown__seperator
|
25
|
+
+top-horizontal-rule
|
26
|
+
|
27
|
+
//dropdown concerning categories
|
28
|
+
.header__categories__dropdown__top-level__link--active
|
29
|
+
text-decoration: underline
|
30
|
+
|
31
|
+
.header__categories__dropdown__top-level__category
|
32
|
+
margin: $typecsset-magic-number / 2 0
|
33
|
+
+typecsset-font-size($base-font-size)
|
34
|
+
|
35
|
+
.header__categories__dropdown__top-level__category--content
|
36
|
+
+typecsset-font-size($base-font-size)
|
37
|
+
margin-top: $typecsset-magic-number * 2
|
38
|
+
|
39
|
+
.header__categories__dropdown__subcategories
|
40
|
+
+span-columns(4 of 4)
|
41
|
+
+shift(4)
|
42
|
+
+space(padding)
|
43
|
+
+space(min-height, 19)
|
44
|
+
+typecsset-font-size($base-font-size)
|
45
|
+
position: absolute
|
46
|
+
top: 0
|
47
|
+
left: -$gutter
|
48
|
+
background: $gray-lightest
|
49
|
+
list-style: none
|
50
|
+
z-index: 10000
|
51
|
+
display: none
|
52
|
+
a
|
53
|
+
text-decoration: none
|
54
|
+
&:hover
|
55
|
+
text-decoration: underline
|
@@ -0,0 +1,58 @@
|
|
1
|
+
.header__nav
|
2
|
+
+span-columns(2)
|
3
|
+
+space(line-height, 2)
|
4
|
+
|
5
|
+
.header__nav--user
|
6
|
+
padding-left: $gutter
|
7
|
+
+flex-wrap(nowrap)
|
8
|
+
|
9
|
+
.header__nav--user--guest
|
10
|
+
@extend .header__nav--user
|
11
|
+
width: $column * 2
|
12
|
+
|
13
|
+
.header__nav-link--button
|
14
|
+
+space(line-height, 2)
|
15
|
+
+border(3px)
|
16
|
+
display: block
|
17
|
+
text-align: center
|
18
|
+
border-radius: $border-radius
|
19
|
+
text-decoration: none
|
20
|
+
font-weight: bold
|
21
|
+
|
22
|
+
.header__nav__arrow
|
23
|
+
+space(line-height)
|
24
|
+
display: inline-block
|
25
|
+
//refactor these pixel values
|
26
|
+
height: 10px
|
27
|
+
width: 10px
|
28
|
+
margin-left: 5px
|
29
|
+
background-position: center !important
|
30
|
+
|
31
|
+
.header__nav__profile
|
32
|
+
+space(line-height, 2)
|
33
|
+
display: block
|
34
|
+
text-align: right
|
35
|
+
|
36
|
+
.header__nav__profile:hover
|
37
|
+
.header__nav__dropdown--container
|
38
|
+
display: block
|
39
|
+
|
40
|
+
.header__nav__dropdown--container
|
41
|
+
+span-columns(2 of 12)
|
42
|
+
+space(top, 2)
|
43
|
+
+space(line-height)
|
44
|
+
+space(padding)
|
45
|
+
+border
|
46
|
+
display: none
|
47
|
+
position: absolute
|
48
|
+
right: 0
|
49
|
+
margin: 0
|
50
|
+
z-index: 10000
|
51
|
+
list-style: none
|
52
|
+
background: $white
|
53
|
+
border-radius: $border-radius
|
54
|
+
|
55
|
+
.header__nav__dropdown
|
56
|
+
list-style: none
|
57
|
+
margin: 0
|
58
|
+
text-align: left
|
@@ -0,0 +1,32 @@
|
|
1
|
+
.header__search
|
2
|
+
+flex-grow(1)
|
3
|
+
position: relative
|
4
|
+
|
5
|
+
.header__search__label
|
6
|
+
display: none
|
7
|
+
|
8
|
+
.header__search__body
|
9
|
+
+span-columns(4 of 4)
|
10
|
+
+space(padding, 0.5)
|
11
|
+
+space(padding-right, 2)
|
12
|
+
+border(1px, $gray-light)
|
13
|
+
+typecsset-font-size($base-font-size)
|
14
|
+
border: 0
|
15
|
+
background: $gray-lightest
|
16
|
+
border-radius: $border-radius
|
17
|
+
|
18
|
+
.header__search__button
|
19
|
+
+space(height, 2)
|
20
|
+
+space(width, 2)
|
21
|
+
position: absolute
|
22
|
+
right: 0
|
23
|
+
top: 0
|
24
|
+
border: 0
|
25
|
+
background: transparent
|
26
|
+
|
27
|
+
.header__search__button__icon
|
28
|
+
width: 75%
|
29
|
+
height: 75%
|
30
|
+
display: block
|
31
|
+
margin: 0 auto
|
32
|
+
background-position: center !important
|
@@ -0,0 +1,82 @@
|
|
1
|
+
.service-favorite
|
2
|
+
clear: both
|
3
|
+
border-bottom: 1px solid red
|
4
|
+
|
5
|
+
.service-favorite__remove,
|
6
|
+
.service-favorite__add
|
7
|
+
display: block
|
8
|
+
|
9
|
+
.service-favorite__remove-button
|
10
|
+
+border(1px, transparent)
|
11
|
+
position: relative
|
12
|
+
float: left
|
13
|
+
display: block
|
14
|
+
background-color: $red
|
15
|
+
border-radius: $border-radius
|
16
|
+
|
17
|
+
.service-favorite__add-button
|
18
|
+
+border
|
19
|
+
position: relative
|
20
|
+
float: left
|
21
|
+
display: block
|
22
|
+
border-radius: $border-radius
|
23
|
+
&:hover
|
24
|
+
.hot-icon__fave--default
|
25
|
+
background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1Ni42OTMgNTYuNjkzIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA1Ni42OTMgNTYuNjkzIj48cGF0aCBmaWxsPSIjRTY1RjUxIiBkPSJNMzguNDM0IDguMzU3Yy00LjA1OCAwLTcuNzc5IDIuMzk2LTEwLjM3MSA0LjYzNy0yLjU5Mi0yLjI0MS02LjMxMy00LjYzNy0xMC4zNzEtNC42MzctOC40MTkgMC0xMy44NTkgNS4zNDMtMTMuODU5IDEzLjYxMSAwIDcuMDk0IDYuMjYzIDEyLjU1NSA2LjI2OSAxMi41NTVsMTUuNDU2IDE0LjkxMWMuNjY2LjY2NiAxLjU1NiAxLjAzMyAyLjUwNiAxLjAzM3MxLjgzNS0uMzYyIDIuNDc5LTEuMDA2bDE1LjUtMTQuOTI3YzEuNDY2LTEuNDAzIDYuMjUxLTYuNDU3IDYuMjUxLTEyLjU2NS0uMDAxLTguMjY5LTUuNDQxLTEzLjYxMi0xMy44Ni0xMy42MTJ6bS0yNS42MjEgMjMuMjI4Yy0uMDUtLjA0NS00Ljk4MS00LjU1NS00Ljk4MS05LjYxNyAwLTYuMTk4IDMuNTAxLTkuNjExIDkuODU5LTkuNjExIDMuNTg3IDAgNy4xNTcgMi45OTYgOC45NjYgNC43ODJsMS40MDUgMS4zODggMS40MDUtMS4zODhjMS44MDktMS43ODYgNS4zNzktNC43ODIgOC45NjYtNC43ODIgNi4zNTggMCA5Ljg1OSAzLjQxNCA5Ljg1OSA5LjYxMSAwIDQuNTIzLTMuODc4IDguNTg1LTUuMDY5IDkuNzI1bC0xNS4xNiAxNC42MDEtMTUuMjUtMTQuNzA5eiIvPjwvc3ZnPg==) no-repeat
|
26
|
+
|
27
|
+
.service-favorite__remove-button--inline
|
28
|
+
@extend .service-favorite__remove-button
|
29
|
+
|
30
|
+
.service-favorite__add-button--inline
|
31
|
+
@extend .service-favorite__add-button
|
32
|
+
|
33
|
+
.service-favorite__add-button--inline, .service-favorite__remove-button--inline
|
34
|
+
+space(width)
|
35
|
+
+space(height)
|
36
|
+
+space(margin-right, 0.2)
|
37
|
+
float: right
|
38
|
+
z-index: 1
|
39
|
+
|
40
|
+
.service-favorite__icon
|
41
|
+
+space(height, 0.75)
|
42
|
+
+space(width, 0.75)
|
43
|
+
display: block
|
44
|
+
position: relative
|
45
|
+
+space(top, 0.125)
|
46
|
+
+space(left, 0.125)
|
47
|
+
|
48
|
+
.service-favorite__icon--inline
|
49
|
+
+space(height, 0.75)
|
50
|
+
+space(width, 0.75)
|
51
|
+
display: block
|
52
|
+
position: relative
|
53
|
+
left: 14%
|
54
|
+
top: 14%
|
55
|
+
|
56
|
+
.service-favorite__count
|
57
|
+
+space(line-height, 2)
|
58
|
+
+space(min-width)
|
59
|
+
text-align: center
|
60
|
+
+border
|
61
|
+
border-radius: 2px
|
62
|
+
font-weight: bold
|
63
|
+
position: relative
|
64
|
+
|
65
|
+
.service-favorite__count--inline
|
66
|
+
@extend .service-favorite__count
|
67
|
+
float: right
|
68
|
+
+space(line-height)
|
69
|
+
padding: 0 $typecsset-magic-number / 4
|
70
|
+
|
71
|
+
.service-featured
|
72
|
+
float: right
|
73
|
+
|
74
|
+
.service-featured__icon
|
75
|
+
+space(height)
|
76
|
+
+space(width)
|
77
|
+
+space(margin-right, 0.5)
|
78
|
+
|
79
|
+
.service-featured__icon--inline
|
80
|
+
+space(height)
|
81
|
+
+space(width)
|
82
|
+
+space(margin-right, 0.5)
|
@@ -0,0 +1,181 @@
|
|
1
|
+
@import "thirdparty/normalize"
|
2
|
+
@import "thirdparty/bourbon/bourbon"
|
3
|
+
@import "thirdparty/neat/neat"
|
4
|
+
|
5
|
+
@import "thirdparty/flexbox_mixins"
|
6
|
+
@import "thirdparty/nprogress"
|
7
|
+
@import "thirdparty/video-js"
|
8
|
+
@import "thirdparty/jquery.fancybox"
|
9
|
+
@import "includes/typography_settigns"
|
10
|
+
@import "thirdparty/typecsset"
|
11
|
+
@import "includes/typography"
|
12
|
+
@import "includes/grid"
|
13
|
+
@import "includes/colors"
|
14
|
+
@import "includes/icons"
|
15
|
+
@import "includes/mixins"
|
16
|
+
@import "includes/forms"
|
17
|
+
@import "includes/layouts"
|
18
|
+
|
19
|
+
@import "modules/styleguide"
|
20
|
+
@import "modules/header"
|
21
|
+
@import "modules/footer"
|
22
|
+
@import "modules/hero"
|
23
|
+
@import "modules/categories"
|
24
|
+
@import "modules/search_filters"
|
25
|
+
@import "modules/nav"
|
26
|
+
@import "modules/service"
|
27
|
+
@import "modules/service/*"
|
28
|
+
@import "modules/pagination"
|
29
|
+
@import "modules/testimonials"
|
30
|
+
@import "modules/asset_uploader"
|
31
|
+
@import "modules/form/credit_card"
|
32
|
+
@import "modules/form/payment_method"
|
33
|
+
|
34
|
+
|
35
|
+
.hero--affiliates
|
36
|
+
background: image-url('heroes/affiliates.jpg') center no-repeat
|
37
|
+
background-size: cover
|
38
|
+
width: 100%
|
39
|
+
color: $white
|
40
|
+
+mask(#292f38, 0.75)
|
41
|
+
+space(margin-bottom)
|
42
|
+
a
|
43
|
+
color: $white
|
44
|
+
|
45
|
+
.hero-header__content--centered
|
46
|
+
+outer-container
|
47
|
+
min-width: $max-width // forcing non responsive for the moment
|
48
|
+
+space(padding-top, 2)
|
49
|
+
+space(padding-bottom, 2)
|
50
|
+
text-align: center
|
51
|
+
position: relative
|
52
|
+
|
53
|
+
.hero-header__title
|
54
|
+
+span-columns(8 of 12)
|
55
|
+
+shift(2)
|
56
|
+
|
57
|
+
.hero-header__description
|
58
|
+
+span-columns(6 of 12)
|
59
|
+
+shift(3)
|
60
|
+
+space(margin-bottom)
|
61
|
+
|
62
|
+
.hero-header__icon
|
63
|
+
+space(height, 3)
|
64
|
+
+space(margin-bottom)
|
65
|
+
+span-columns(2 of 12)
|
66
|
+
+shift(5)
|
67
|
+
background-position: center !important
|
68
|
+
|
69
|
+
.content
|
70
|
+
+outer-container
|
71
|
+
min-width: $max-width // forcing non responsive for the moment
|
72
|
+
+space(margin-bottom)
|
73
|
+
|
74
|
+
.image--mast
|
75
|
+
+space(min-height, 14)
|
76
|
+
+space(margin-bottom)
|
77
|
+
img
|
78
|
+
display: block
|
79
|
+
|
80
|
+
.block
|
81
|
+
+span-columns(6)
|
82
|
+
+shift(3)
|
83
|
+
+bottom-horizontal-rule(2, 3px)
|
84
|
+
&:last-of-type
|
85
|
+
+hide-bottom-horizontal-rule
|
86
|
+
|
87
|
+
.block__text__heading
|
88
|
+
margin-bottom: 0
|
89
|
+
|
90
|
+
.block__text__content
|
91
|
+
margin-bottom: 0
|
92
|
+
|
93
|
+
.block__text
|
94
|
+
+span-columns(4 of 6)
|
95
|
+
|
96
|
+
.block__aside
|
97
|
+
+span-columns(2 of 6)
|
98
|
+
text-align: right
|
99
|
+
|
100
|
+
.block__icon
|
101
|
+
+space(height, 3)
|
102
|
+
background-position: center right !important
|
103
|
+
|
104
|
+
.block__icon--top
|
105
|
+
+space(margin-top)
|
106
|
+
|
107
|
+
.button
|
108
|
+
+span-columns(4)
|
109
|
+
+shift(4)
|
110
|
+
border: 0
|
111
|
+
box-shadow: inset 0 0 0 0 transparent
|
112
|
+
background-color: $orange
|
113
|
+
border-radius: 4px
|
114
|
+
text-align: center
|
115
|
+
text-decoration: none
|
116
|
+
color: $white
|
117
|
+
font-weight: bold
|
118
|
+
+space(line-height, 2)
|
119
|
+
|
120
|
+
.button--large
|
121
|
+
width: 100%
|
122
|
+
margin-left: 0
|
123
|
+
+typecsset-font-size($first-font-size)
|
124
|
+
+space(line-height, 3)
|
125
|
+
|
126
|
+
.hint
|
127
|
+
+space(line-height, 2)
|
128
|
+
+span-columns(12)
|
129
|
+
text-align: center
|
130
|
+
|
131
|
+
.container
|
132
|
+
+outer-container
|
133
|
+
min-width: $max-width
|
134
|
+
|
135
|
+
.assumed-user-warning
|
136
|
+
background: black image-url('assume-user-eyes.jpg') no-repeat center center
|
137
|
+
background-size: cover
|
138
|
+
height: 100px
|
139
|
+
|
140
|
+
.header-strip
|
141
|
+
background-color: $blue
|
142
|
+
.strip__close
|
143
|
+
float: right
|
144
|
+
color: $white
|
145
|
+
&:hover
|
146
|
+
text-decoration: none
|
147
|
+
color: lighten($blue, 30%)
|
148
|
+
|
149
|
+
.header-strip__container
|
150
|
+
+outer-container
|
151
|
+
min-width: $max-width
|
152
|
+
text-align: center
|
153
|
+
+space(line-height, 2)
|
154
|
+
color: $white
|
155
|
+
|
156
|
+
.header-strip__action
|
157
|
+
color: $white
|
158
|
+
text-decoration: underline
|
159
|
+
&:hover
|
160
|
+
text-decoration: none
|
161
|
+
color: $white
|
162
|
+
|
163
|
+
.marketing-countdown
|
164
|
+
+space(margin-left)
|
165
|
+
text-align: center
|
166
|
+
float: left
|
167
|
+
|
168
|
+
.marketing-countdown__svg
|
169
|
+
+space(height, 5)
|
170
|
+
display: block
|
171
|
+
margin: 0 auto
|
172
|
+
+space(margin-bottom)
|
173
|
+
|
174
|
+
.marketing-countdown__copy
|
175
|
+
+typecsset-font-size($first-font-size)
|
176
|
+
color: $green
|
177
|
+
display: block
|
178
|
+
text-transform: uppercase
|
179
|
+
font-weight: bold
|
180
|
+
font-style: italic
|
181
|
+
|