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,32 @@
|
|
1
|
+
.categories__list
|
2
|
+
+space(margin-top, 1)
|
3
|
+
margin-left: 0
|
4
|
+
|
5
|
+
.categories__category__link,
|
6
|
+
.categories__subcategories__category__link
|
7
|
+
text-decoration: none
|
8
|
+
|
9
|
+
.categories__list,
|
10
|
+
.categories__subcategories__list
|
11
|
+
list-style: none
|
12
|
+
|
13
|
+
.categories__subcategories__list
|
14
|
+
+space(margin-left, 1)
|
15
|
+
|
16
|
+
.categories__category--current
|
17
|
+
+top-horizontal-rule(1)
|
18
|
+
+bottom-horizontal-rule(1)
|
19
|
+
|
20
|
+
&:first-child
|
21
|
+
+remove-top-horizontal-rule
|
22
|
+
|
23
|
+
&:last-child
|
24
|
+
+remove-bottom-horizontal-rule
|
25
|
+
|
26
|
+
.categories__category--current,
|
27
|
+
.categories__subcategories__category--current
|
28
|
+
> a
|
29
|
+
font-weight: bold
|
30
|
+
|
31
|
+
.categories__subcategories__category__link
|
32
|
+
font-weight: normal
|
@@ -0,0 +1,100 @@
|
|
1
|
+
.footer-banner
|
2
|
+
+space(margin-bottom)
|
3
|
+
background: $black
|
4
|
+
padding: $typecsset-magic-number * 2 0
|
5
|
+
|
6
|
+
.footer-banner__envato
|
7
|
+
+span-columns(2 of 12)
|
8
|
+
|
9
|
+
.footer-banner__envato-logo
|
10
|
+
+space(min-height, 2)
|
11
|
+
+space(margin-bottom)
|
12
|
+
display: block
|
13
|
+
width: 100%
|
14
|
+
background: image-url('@x2/envato-large-inverse.png') center no-repeat
|
15
|
+
background-size: contain
|
16
|
+
|
17
|
+
.footer-banner__text
|
18
|
+
clear: left
|
19
|
+
+typecsset-font-size($second-font-size)
|
20
|
+
color: $gray
|
21
|
+
a
|
22
|
+
color: $white
|
23
|
+
|
24
|
+
.footer-list
|
25
|
+
margin: 0
|
26
|
+
list-style: none
|
27
|
+
+span-columns(3)
|
28
|
+
|
29
|
+
.footer-list--sister-site
|
30
|
+
margin: 0
|
31
|
+
list-style: none
|
32
|
+
+span-columns(5)
|
33
|
+
+shift(1)
|
34
|
+
margin-right: 0
|
35
|
+
|
36
|
+
.footer-list__label
|
37
|
+
+space(margin-top)
|
38
|
+
+space(margin-bottom)
|
39
|
+
font-weight: bold
|
40
|
+
|
41
|
+
.footer-list__item--sister-site
|
42
|
+
+space(margin-bottom)
|
43
|
+
overflow: hidden
|
44
|
+
&:last-of-type
|
45
|
+
margin-bottom: 0
|
46
|
+
|
47
|
+
.footer__sister-site__image
|
48
|
+
+space(max-height, 5)
|
49
|
+
display: block
|
50
|
+
width: auto
|
51
|
+
margin: 0 auto
|
52
|
+
|
53
|
+
.footer__sister-site__link
|
54
|
+
display: block
|
55
|
+
|
56
|
+
.footer__sister-site__link--image
|
57
|
+
display: block
|
58
|
+
+span-columns(2 of 5)
|
59
|
+
|
60
|
+
.footer__sister-site__description
|
61
|
+
+span-columns(3 of 5)
|
62
|
+
|
63
|
+
.sub-footer
|
64
|
+
+span-columns(12 of 12)
|
65
|
+
+top-horizontal-rule(2)
|
66
|
+
+space(margin-bottom, 2)
|
67
|
+
+space(margin-top, 1)
|
68
|
+
color: $gray-light
|
69
|
+
p
|
70
|
+
+span-columns(5 of 12)
|
71
|
+
|
72
|
+
.sub-footer__envato
|
73
|
+
+span-columns(2 of 12)
|
74
|
+
+shift(5)
|
75
|
+
text-indent: -999999px
|
76
|
+
background: image-url('@x2/envato-large.png') center right no-repeat
|
77
|
+
background-position: cover
|
78
|
+
background-size: contain
|
79
|
+
|
80
|
+
.footer-list--social
|
81
|
+
margin: 0
|
82
|
+
+space(margin-top)
|
83
|
+
list-style: none
|
84
|
+
overflow: hidden
|
85
|
+
|
86
|
+
.footer-list__item--social
|
87
|
+
float: left
|
88
|
+
a
|
89
|
+
+space(padding-top, 0.25)
|
90
|
+
+space(height, 2)
|
91
|
+
display: block
|
92
|
+
i
|
93
|
+
+space(margin-right, 0.5)
|
94
|
+
+space(line-height, 2)
|
95
|
+
+space(height, 1.5)
|
96
|
+
+space(width, 1.5)
|
97
|
+
display: block
|
98
|
+
|
99
|
+
.footer-list__item-body
|
100
|
+
display: none
|
@@ -0,0 +1,32 @@
|
|
1
|
+
@import header/categories
|
2
|
+
@import header/nav
|
3
|
+
@import header/search
|
4
|
+
@import header/dropdown
|
5
|
+
|
6
|
+
.header
|
7
|
+
+space(padding-top)
|
8
|
+
+space(padding-bottom)
|
9
|
+
|
10
|
+
.header--inverse
|
11
|
+
background: $black
|
12
|
+
|
13
|
+
.header
|
14
|
+
.container
|
15
|
+
position: relative
|
16
|
+
min-width: $max-width
|
17
|
+
|
18
|
+
.header__logo
|
19
|
+
+span-columns(3)
|
20
|
+
+space(line-height, 2)
|
21
|
+
background: image-url('@x2/logo.png') 0 4px no-repeat
|
22
|
+
background-size: contain
|
23
|
+
text-indent: -99999px
|
24
|
+
|
25
|
+
.header__logo--inverse
|
26
|
+
background: image-url('@x2/logo-inverse.png') 0 4px no-repeat
|
27
|
+
background-size: contain
|
28
|
+
|
29
|
+
.header__utilities
|
30
|
+
+span-columns(5)
|
31
|
+
+flexbox
|
32
|
+
+flex-wrap(nowrap)
|
@@ -0,0 +1,69 @@
|
|
1
|
+
$hero-background: #5f636a
|
2
|
+
|
3
|
+
@mixin banner-section($background_color, $background_image)
|
4
|
+
background-color: $background_color
|
5
|
+
background-image: image-url($background_image)
|
6
|
+
background-repeat: repeat-x
|
7
|
+
background-position: top center
|
8
|
+
+clearfix
|
9
|
+
|
10
|
+
@mixin hero($image)
|
11
|
+
color: white
|
12
|
+
background-size: cover
|
13
|
+
+banner-section($hero-background, "heroes/#{$image}")
|
14
|
+
+space(min-height, 12)
|
15
|
+
+space(padding-top, 5)
|
16
|
+
+space(padding-bottom, 2)
|
17
|
+
background-position: center center
|
18
|
+
+mask(#292f38, 0.5)
|
19
|
+
|
20
|
+
.hero__container
|
21
|
+
+outer-container
|
22
|
+
min-width: $max-width
|
23
|
+
position: relative
|
24
|
+
|
25
|
+
.hero__headings
|
26
|
+
+span-columns(10 of 12)
|
27
|
+
|
28
|
+
.hero__headings__main
|
29
|
+
+space(margin-bottom)
|
30
|
+
|
31
|
+
.hero__headings__secondary
|
32
|
+
+span-columns(8 of 10)
|
33
|
+
|
34
|
+
.hero__video-link
|
35
|
+
+span-columns(2 of 12)
|
36
|
+
text-align: center
|
37
|
+
|
38
|
+
.hero--business-online-marketing
|
39
|
+
+hero('business-online-marketing.jpg')
|
40
|
+
.hero--mobile-apps
|
41
|
+
+hero('mobile-apps.jpg')
|
42
|
+
.hero--ecommerce-cms-development
|
43
|
+
+hero('ecommerce-cms-development.jpg')
|
44
|
+
.hero--websites-programming
|
45
|
+
+hero('websites-programming.jpg')
|
46
|
+
.hero--design-graphics
|
47
|
+
+hero('design-graphics.jpg')
|
48
|
+
.hero--wordpress
|
49
|
+
+hero('wordpress.jpg')
|
50
|
+
.hero--logo-design-branding
|
51
|
+
+hero('logo-design-branding.jpg')
|
52
|
+
.hero--video-animation
|
53
|
+
+hero('video-animation.jpg')
|
54
|
+
|
55
|
+
.hero__heading__video-launcher
|
56
|
+
text-decoration: none
|
57
|
+
color: white
|
58
|
+
+typecsset-font-size($first-font-size)
|
59
|
+
|
60
|
+
.hero__heading__video-launcher__play
|
61
|
+
+space(border-radius, 6)
|
62
|
+
+space(height, 3)
|
63
|
+
+space(width, 3)
|
64
|
+
margin: 0 auto
|
65
|
+
display: block
|
66
|
+
|
67
|
+
.hero__heading__video-launcher__unipen
|
68
|
+
+space(border-radius, 6)
|
69
|
+
box-shadow: 0 0 0 3px $white
|
@@ -0,0 +1,19 @@
|
|
1
|
+
.pop-sub-nav--search
|
2
|
+
|
3
|
+
.pop-sub-nav__list
|
4
|
+
list-style: none
|
5
|
+
margin: 0
|
6
|
+
+clearfix
|
7
|
+
+bottom-horizontal-rule
|
8
|
+
text-align: right
|
9
|
+
|
10
|
+
.pop-sub-nav-item
|
11
|
+
position: relative
|
12
|
+
display: inline-block
|
13
|
+
+space(padding-top, 1)
|
14
|
+
+space(padding-left, 0.5)
|
15
|
+
+space(padding-right, 0.5)
|
16
|
+
text-transform: capitalize
|
17
|
+
|
18
|
+
&.is-active
|
19
|
+
font-weight: bold
|
@@ -0,0 +1,34 @@
|
|
1
|
+
.search-filters__price__label
|
2
|
+
display: block
|
3
|
+
|
4
|
+
// FIXME: Hardcoded colors
|
5
|
+
.search-filters__price--min
|
6
|
+
color: $gray
|
7
|
+
|
8
|
+
.search-filters__price__input,
|
9
|
+
.search-filters__price__input--left
|
10
|
+
+border(1px, $gray-light)
|
11
|
+
+space(margin-right, 0.2)
|
12
|
+
border: 0
|
13
|
+
border-radius: $border-radius
|
14
|
+
text-align: center
|
15
|
+
color: $black
|
16
|
+
|
17
|
+
.search-filters__price__submit__button
|
18
|
+
+space(width)
|
19
|
+
+space(height)
|
20
|
+
+typecsset-font-size($base-font-size)
|
21
|
+
float: right
|
22
|
+
background: $gray
|
23
|
+
border-radius: $border-radius
|
24
|
+
text-align: center
|
25
|
+
color: $white
|
26
|
+
|
27
|
+
// FIXME: generic selector?
|
28
|
+
.search-filters__price,
|
29
|
+
.search-filters__turnaround,
|
30
|
+
.search-filters__country
|
31
|
+
+space(padding, 1)
|
32
|
+
+space(margin-bottom, 1)
|
33
|
+
background: $gray-lightest
|
34
|
+
border-radius: $border-radius
|
@@ -0,0 +1,58 @@
|
|
1
|
+
.service
|
2
|
+
position: relative
|
3
|
+
+clearfix
|
4
|
+
+space(margin-bottom)
|
5
|
+
|
6
|
+
.service__title
|
7
|
+
+typecsset-font-size($base-font-size)
|
8
|
+
+space(line-height, 2)
|
9
|
+
margin-bottom: 0
|
10
|
+
|
11
|
+
.service__title__details
|
12
|
+
color: $gray
|
13
|
+
|
14
|
+
.service__gallery
|
15
|
+
+space(height, 5)
|
16
|
+
+span-columns(6 of 9)
|
17
|
+
+flexbox
|
18
|
+
+flex-wrap(nowrap)
|
19
|
+
|
20
|
+
.service__gallery__item
|
21
|
+
text-decoration: none
|
22
|
+
position: relative
|
23
|
+
top: -2px
|
24
|
+
+flex-grow(1)
|
25
|
+
|
26
|
+
.service__gallery__image
|
27
|
+
display: block
|
28
|
+
width: auto
|
29
|
+
height: 100%
|
30
|
+
margin: 0 auto
|
31
|
+
|
32
|
+
.service__info
|
33
|
+
+span-columns(3 of 9)
|
34
|
+
+space(min-height, 5)
|
35
|
+
+space(padding-bottom, 2)
|
36
|
+
+typecsset-font-size($small-font-size)
|
37
|
+
position: relative
|
38
|
+
|
39
|
+
.service__price
|
40
|
+
+typecsset-font-size($first-font-size)
|
41
|
+
font-weight: bold
|
42
|
+
|
43
|
+
.service__provider
|
44
|
+
position: absolute
|
45
|
+
bottom: 0
|
46
|
+
+space(height, 2)
|
47
|
+
width: 100%
|
48
|
+
|
49
|
+
.service__provider__name a
|
50
|
+
font-weight: bold
|
51
|
+
|
52
|
+
.service__provider__avatar
|
53
|
+
float: left
|
54
|
+
+space(margin-right, 0.5)
|
55
|
+
+space(height, 2)
|
56
|
+
|
57
|
+
img
|
58
|
+
height: 100%
|
@@ -0,0 +1,73 @@
|
|
1
|
+
.style-group__example
|
2
|
+
+space(margin-bottom, 2)
|
3
|
+
|
4
|
+
.style-group__example__label
|
5
|
+
clear: both
|
6
|
+
display: block
|
7
|
+
+bottom-horizontal-rule
|
8
|
+
|
9
|
+
.style-group__example__colors
|
10
|
+
margin: 0
|
11
|
+
list-style: none
|
12
|
+
+space(margin-bottom)
|
13
|
+
overflow: hidden
|
14
|
+
|
15
|
+
.style-group__example__color
|
16
|
+
+span-columns(2 of 12)
|
17
|
+
+border
|
18
|
+
border-radius: $border-radius
|
19
|
+
text-align: center
|
20
|
+
padding: $typecsset-magic-number / 2
|
21
|
+
|
22
|
+
|
23
|
+
.style-group__example__color__name,
|
24
|
+
.style-group__example__color__hex
|
25
|
+
display: block
|
26
|
+
|
27
|
+
.style-group__example__color__swatch
|
28
|
+
+space(height, 5)
|
29
|
+
width: 100%
|
30
|
+
|
31
|
+
.style-group__example__color__swatch--blue
|
32
|
+
@extend .style-group__example__color__swatch
|
33
|
+
background: $blue
|
34
|
+
|
35
|
+
.style-group__example__color__swatch--green
|
36
|
+
@extend .style-group__example__color__swatch
|
37
|
+
background: $green
|
38
|
+
|
39
|
+
.style-group__example__color__swatch--orange
|
40
|
+
@extend .style-group__example__color__swatch
|
41
|
+
background: $orange
|
42
|
+
|
43
|
+
.style-group__example__color__swatch--yellow
|
44
|
+
@extend .style-group__example__color__swatch
|
45
|
+
background: $yellow
|
46
|
+
|
47
|
+
.style-group__example__color__swatch--red
|
48
|
+
@extend .style-group__example__color__swatch
|
49
|
+
background: $red
|
50
|
+
|
51
|
+
.style-group__example__color__swatch--black
|
52
|
+
@extend .style-group__example__color__swatch
|
53
|
+
background: $black
|
54
|
+
|
55
|
+
.style-group__example__color__swatch--gray-dark
|
56
|
+
@extend .style-group__example__color__swatch
|
57
|
+
background: $gray-dark
|
58
|
+
|
59
|
+
.style-group__example__color__swatch--gray
|
60
|
+
@extend .style-group__example__color__swatch
|
61
|
+
background: $gray
|
62
|
+
|
63
|
+
.style-group__example__color__swatch--gray-light
|
64
|
+
@extend .style-group__example__color__swatch
|
65
|
+
background: $gray-light
|
66
|
+
|
67
|
+
.style-group__example__color__swatch--gray-lightest
|
68
|
+
@extend .style-group__example__color__swatch
|
69
|
+
background: $gray-lightest
|
70
|
+
|
71
|
+
.style-group__example__color__swatch--white
|
72
|
+
@extend .style-group__example__color__swatch
|
73
|
+
background: $white
|
@@ -0,0 +1,27 @@
|
|
1
|
+
.testimonials
|
2
|
+
+top-horizontal-rule(3)
|
3
|
+
+span-columns(7 of 8)
|
4
|
+
|
5
|
+
.testimonial
|
6
|
+
font-family: $font-stack-serif
|
7
|
+
display: block
|
8
|
+
overflow: hidden
|
9
|
+
|
10
|
+
.testimonial--single
|
11
|
+
clear: both
|
12
|
+
width: 100%
|
13
|
+
margin: 0
|
14
|
+
+space(margin-bottom)
|
15
|
+
|
16
|
+
.testimonial__image
|
17
|
+
+span-columns(2 of 7)
|
18
|
+
+space(min-height, 7)
|
19
|
+
img
|
20
|
+
display: block
|
21
|
+
border-radius: $border-radius
|
22
|
+
|
23
|
+
.testimonial__content
|
24
|
+
+span-columns(5 of 7)
|
25
|
+
|
26
|
+
.testimonial__content__body
|
27
|
+
margin-bottom: 0
|