smock 0.1.119 → 0.1.120
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 +1 -1
- data/app/assets/stylesheets/includes/_colors.sass +3 -0
- data/app/assets/stylesheets/includes/_molecules.sass +4 -0
- data/app/assets/stylesheets/includes/_space_helpers.sass +1 -1
- data/app/assets/stylesheets/includes/_typography.sass +4 -0
- data/app/assets/stylesheets/modules/_modal.sass +61 -0
- data/app/assets/stylesheets/modules/_service.sass +11 -1
- data/app/assets/stylesheets/modules/_service_card.sass +3 -2
- data/app/assets/stylesheets/modules/_social.sass +1 -1
- data/app/assets/stylesheets/smock.sass +5 -1
- data/original_svg_images/svg__briefing.svg +73 -0
- data/original_svg_images/svg__delivery.svg +67 -0
- data/original_svg_images/svg__description.svg +63 -0
- data/original_svg_images/svg__mail.svg +55 -0
- data/original_svg_images/svg__thumb.svg +53 -0
- metadata +10 -4
data/Gemfile.lock
CHANGED
@@ -0,0 +1,61 @@
|
|
1
|
+
.modal__container
|
2
|
+
top: 0
|
3
|
+
left: 0
|
4
|
+
position: fixed
|
5
|
+
width: 100%
|
6
|
+
height: 100%
|
7
|
+
|
8
|
+
.modal__backdrop
|
9
|
+
background: $black
|
10
|
+
position: fixed
|
11
|
+
top: 0
|
12
|
+
right: 0
|
13
|
+
bottom: 0
|
14
|
+
left: 0
|
15
|
+
width: 100%
|
16
|
+
height: 100%
|
17
|
+
opacity: 0.8
|
18
|
+
|
19
|
+
.modal
|
20
|
+
position: fixed
|
21
|
+
z-index: 100
|
22
|
+
opacity: 100
|
23
|
+
top: 50%
|
24
|
+
left: 50%
|
25
|
+
transform: translate(-50%, -50%)
|
26
|
+
|
27
|
+
.modal__middle
|
28
|
+
background: $white
|
29
|
+
+space(padding-left, 1)
|
30
|
+
+space(padding-right, 1)
|
31
|
+
border-radius: 0 0 5px 5px
|
32
|
+
+space(padding-top)
|
33
|
+
|
34
|
+
.modal__header
|
35
|
+
background: transparent
|
36
|
+
margin: 0
|
37
|
+
text-align: center
|
38
|
+
color: inherit
|
39
|
+
font-size: 2em
|
40
|
+
line-height: 2.142857143em
|
41
|
+
background: $green
|
42
|
+
border-radius: 10px 10px 0 0
|
43
|
+
h3
|
44
|
+
+space(padding, 0.5)
|
45
|
+
color: $white
|
46
|
+
margin: 0
|
47
|
+
|
48
|
+
.login-providers
|
49
|
+
text-align: center
|
50
|
+
|
51
|
+
.login-providers__or
|
52
|
+
+space(margin-top)
|
53
|
+
display: block
|
54
|
+
&::before, &::after
|
55
|
+
content: ""
|
56
|
+
+border
|
57
|
+
width: 35%
|
58
|
+
height: 1px
|
59
|
+
display: inline-block
|
60
|
+
+space(margin-left, 0.5)
|
61
|
+
+space(margin-right, 0.5)
|
@@ -69,4 +69,14 @@
|
|
69
69
|
.service__description--expanded
|
70
70
|
overflow: none
|
71
71
|
margin-bottom: 0
|
72
|
-
max-height: none
|
72
|
+
max-height: none
|
73
|
+
|
74
|
+
#fixed-wrapper
|
75
|
+
position: relative
|
76
|
+
|
77
|
+
#fixed-sidebar.absolute
|
78
|
+
position: absolute
|
79
|
+
|
80
|
+
#fixed-sidebar.fixed
|
81
|
+
position: fixed
|
82
|
+
padding-top: 22px
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
.service__card__image
|
5
5
|
+space(height, 8)
|
6
|
-
+space(margin-bottom)
|
6
|
+
+space(margin-bottom, 0.5)
|
7
7
|
position: relative
|
8
8
|
img
|
9
9
|
width: 100%
|
@@ -67,4 +67,5 @@
|
|
67
67
|
|
68
68
|
.service__card__text
|
69
69
|
+space(height, 3)
|
70
|
-
overflow: hidden
|
70
|
+
overflow: hidden
|
71
|
+
+space(margin-bottom, 0.5)
|
@@ -47,6 +47,7 @@
|
|
47
47
|
@import "modules/service_collection"
|
48
48
|
@import "modules/tooltip"
|
49
49
|
@import "modules/metric"
|
50
|
+
@import "modules/modal"
|
50
51
|
|
51
52
|
html.vr
|
52
53
|
background-image: -webkit-linear-gradient(right, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 51%,rgba(255,255,255,0) 100%), -webkit-linear-gradient(bottom, rgba(128,128,128,1) 0%, rgba(128,128,128,0) 8%, rgba(128,128,128,0) 100%)
|
@@ -163,6 +164,9 @@ html.vr
|
|
163
164
|
.button
|
164
165
|
+button($orange)
|
165
166
|
|
167
|
+
.button--facebook
|
168
|
+
+button($facebook)
|
169
|
+
|
166
170
|
.button--muted
|
167
171
|
+secondary-button($orange)
|
168
172
|
|
@@ -231,4 +235,4 @@ html.vr
|
|
231
235
|
display: block
|
232
236
|
text-transform: uppercase
|
233
237
|
font-weight: bold
|
234
|
-
font-style: italic
|
238
|
+
font-style: italic
|
@@ -0,0 +1,73 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3
|
+
|
4
|
+
<svg
|
5
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
6
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
7
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
10
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
12
|
+
version="1.1"
|
13
|
+
id="Layer_1"
|
14
|
+
x="0px"
|
15
|
+
y="0px"
|
16
|
+
viewBox="0 0 35.3 49.200001"
|
17
|
+
enable-background="new 0 0 56.7 56.7"
|
18
|
+
xml:space="preserve"
|
19
|
+
inkscape:version="0.48.5 r10040"
|
20
|
+
width="100%"
|
21
|
+
height="100%"
|
22
|
+
sodipodi:docname="svg__briefing.svg"><metadata
|
23
|
+
id="metadata17"><rdf:RDF><cc:Work
|
24
|
+
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
25
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
26
|
+
id="defs15" /><sodipodi:namedview
|
27
|
+
pagecolor="#ffffff"
|
28
|
+
bordercolor="#666666"
|
29
|
+
borderopacity="1"
|
30
|
+
objecttolerance="10"
|
31
|
+
gridtolerance="10"
|
32
|
+
guidetolerance="10"
|
33
|
+
inkscape:pageopacity="0"
|
34
|
+
inkscape:pageshadow="2"
|
35
|
+
inkscape:window-width="640"
|
36
|
+
inkscape:window-height="480"
|
37
|
+
id="namedview13"
|
38
|
+
showgrid="false"
|
39
|
+
fit-margin-top="0"
|
40
|
+
fit-margin-left="0"
|
41
|
+
fit-margin-right="0"
|
42
|
+
fit-margin-bottom="0"
|
43
|
+
inkscape:zoom="4.1622575"
|
44
|
+
inkscape:cx="17.65"
|
45
|
+
inkscape:cy="24.550001"
|
46
|
+
inkscape:window-x="199"
|
47
|
+
inkscape:window-y="90"
|
48
|
+
inkscape:window-maximized="0"
|
49
|
+
inkscape:current-layer="Layer_1" /><g
|
50
|
+
id="g3"
|
51
|
+
transform="translate(-10.7,-3.7)"><path
|
52
|
+
d="m 22,15.9 h 12.7 c 2.1,0 3.9,-1.7 3.9,-3.9 V 11.8 C 38.6,9.7 36.9,7.9 34.7,7.9 H 32.9 V 7.6 C 32.9,5.5 31.2,3.7 29,3.7 h -1.4 c -2.1,0 -3.9,1.7 -3.9,3.9 V 8 H 22 c -2.1,0 -3.9,1.7 -3.9,3.9 v 0.2 c 0.1,2.1 1.8,3.8 3.9,3.8 z m -1.9,-4 c 0,-1 0.8,-1.9 1.9,-1.9 h 2.7 c 0.5,0 1,-0.4 1,-1 V 7.6 c 0,-1 0.8,-1.9 1.9,-1.9 H 29 c 1,0 1.9,0.8 1.9,1.9 V 9 c 0,0.5 0.4,1 1,1 h 2.7 c 1,0 1.9,0.8 1.9,1.9 v 0.2 c 0,1 -0.8,1.9 -1.9,1.9 H 22 c -1,0 -1.9,-0.8 -1.9,-1.9 l 0,-0.2 0,0 z"
|
53
|
+
id="path5"
|
54
|
+
inkscape:connector-curvature="0"
|
55
|
+
style="fill:#bfbfbf" /><circle
|
56
|
+
cx="28.4"
|
57
|
+
cy="8.1999998"
|
58
|
+
r="0.80000001"
|
59
|
+
id="circle7"
|
60
|
+
sodipodi:cx="28.4"
|
61
|
+
sodipodi:cy="8.1999998"
|
62
|
+
sodipodi:rx="0.80000001"
|
63
|
+
sodipodi:ry="0.80000001"
|
64
|
+
style="fill:#bfbfbf"
|
65
|
+
d="m 29.2,8.1999998 c 0,0.4418278 -0.358173,0.8 -0.8,0.8 -0.441828,0 -0.8,-0.3581722 -0.8,-0.8 0,-0.4418278 0.358172,-0.8 0.8,-0.8 0.441827,0 0.8,0.3581722 0.8,0.8 z" /><path
|
66
|
+
d="m 45,9.1 h -4.5 c -0.5,0 -1,0.4 -1,1 0,0.5 0.4,1 1,1 H 44 V 50.9 H 12.7 V 11.1 h 3.5 c 0.5,0 1,-0.4 1,-1 0,-0.6 -0.4,-1 -1,-1 h -4.5 c -0.5,0 -1,0.4 -1,1 v 41.8 c 0,0.5 0.4,1 1,1 H 45 c 0.5,0 1,-0.4 1,-1 V 10.1 c 0,-0.5 -0.4,-1 -1,-1 z"
|
67
|
+
id="path9"
|
68
|
+
inkscape:connector-curvature="0"
|
69
|
+
style="fill:#bfbfbf" /><path
|
70
|
+
d="M 36.8,24.6 24.7,39.3 20.5,34.6 c -0.4,-0.4 -1,-0.4 -1.4,-0.1 -0.4,0.3 -0.4,1 -0.1,1.4 l 5,5.5 c 0.2,0.2 0.5,0.3 0.7,0.3 0,0 0,0 0,0 0.3,0 0.6,-0.1 0.7,-0.4 L 38.2,25.6 c 0.3,-0.4 0.3,-1 -0.1,-1.4 -0.3,-0.1 -1,-0.1 -1.3,0.4 z"
|
71
|
+
id="path11"
|
72
|
+
inkscape:connector-curvature="0"
|
73
|
+
style="fill:#bfbfbf" /></g></svg>
|
@@ -0,0 +1,67 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3
|
+
|
4
|
+
<svg
|
5
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
6
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
7
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
10
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
12
|
+
version="1.1"
|
13
|
+
id="Layer_1"
|
14
|
+
x="0px"
|
15
|
+
y="0px"
|
16
|
+
viewBox="0 0 49.900001 44.100001"
|
17
|
+
enable-background="new 0 0 56.7 56.7"
|
18
|
+
xml:space="preserve"
|
19
|
+
inkscape:version="0.48.5 r10040"
|
20
|
+
width="100%"
|
21
|
+
height="100%"
|
22
|
+
sodipodi:docname="svg__delivery.svg"><metadata
|
23
|
+
id="metadata3009"><rdf:RDF><cc:Work
|
24
|
+
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
25
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
26
|
+
id="defs3007" /><sodipodi:namedview
|
27
|
+
pagecolor="#ffffff"
|
28
|
+
bordercolor="#666666"
|
29
|
+
borderopacity="1"
|
30
|
+
objecttolerance="10"
|
31
|
+
gridtolerance="10"
|
32
|
+
guidetolerance="10"
|
33
|
+
inkscape:pageopacity="0"
|
34
|
+
inkscape:pageshadow="2"
|
35
|
+
inkscape:window-width="640"
|
36
|
+
inkscape:window-height="480"
|
37
|
+
id="namedview3005"
|
38
|
+
showgrid="false"
|
39
|
+
fit-margin-top="0"
|
40
|
+
fit-margin-left="0"
|
41
|
+
fit-margin-right="0"
|
42
|
+
fit-margin-bottom="0"
|
43
|
+
inkscape:zoom="4.1622575"
|
44
|
+
inkscape:cx="25.05"
|
45
|
+
inkscape:cy="23.450001"
|
46
|
+
inkscape:window-x="238"
|
47
|
+
inkscape:window-y="114"
|
48
|
+
inkscape:window-maximized="0"
|
49
|
+
inkscape:current-layer="Layer_1" /><g
|
50
|
+
id="g2995"
|
51
|
+
transform="translate(-3.3,-7.7)"><path
|
52
|
+
d="M 14.7,16.5 39,17.9 c 0,0 0,0 0.1,0 0.5,0 1,-0.4 1,-0.9 0,-0.6 -0.4,-1 -0.9,-1.1 L 14.9,14.5 c -0.5,0 -1,0.4 -1.1,0.9 -0.1,0.6 0.3,1.1 0.9,1.1 z"
|
53
|
+
id="path2997"
|
54
|
+
inkscape:connector-curvature="0"
|
55
|
+
style="fill:#bfbfbf" /><path
|
56
|
+
d="m 19.4,13.1 24.3,1.4 c 0,0 0,0 0.1,0 0.5,0 1,-0.4 1,-0.9 0,-0.6 -0.4,-1 -0.9,-1.1 L 19.6,11.1 c -0.5,0 -1,0.4 -1.1,0.9 0,0.6 0.4,1 0.9,1.1 z"
|
57
|
+
id="path2999"
|
58
|
+
inkscape:connector-curvature="0"
|
59
|
+
style="fill:#bfbfbf" /><path
|
60
|
+
d="m 53.1,9.7 c 0,0 0,0 0,0 C 53,9.6 53,9.5 52.9,9.4 c 0,0 0,-0.1 -0.1,-0.1 -0.1,-0.1 -0.2,-0.1 -0.3,-0.2 0,0 0,0 0,0 0,0 0,0 0,0 C 52.4,9 52.3,9 52.2,9 c 0,0 0,0 0,0 L 19.8,7.7 c -0.2,0 -0.4,0 -0.6,0.2 L 3.8,18 c 0,0 0,0 -0.1,0.1 0,0 -0.1,0 -0.1,0 0,0 0,0.1 -0.1,0.1 0,0.1 -0.1,0.1 -0.1,0.2 0,0.1 -0.1,0.1 -0.1,0.2 0,0.1 0,0.1 0,0.2 0,0 0,0.1 0,0.1 V 48 c 0,0.5 0.4,1 0.9,1 l 35.2,2.8 c 0,0 0.1,0 0.1,0 0.1,0 0.3,0 0.4,-0.1 0,0 0.1,0 0.1,-0.1 0.1,0 0.1,-0.1 0.2,-0.1 0,0 0,0 0,0 0,0 0,0 0,0 L 52.9,38.3 c 0.2,-0.2 0.3,-0.4 0.3,-0.7 V 10.1 c 0,-0.2 0,-0.3 -0.1,-0.4 z M 20,9.8 49.6,11 39.2,19.9 7.4,18.1 20,9.8 z M 5.3,19.9 38.5,21.8 V 49.7 L 5.3,47.1 V 19.9 z M 51.2,37.2 40.5,48.3 V 21.4 l 10.7,-9.1 0,24.9 0,0 z"
|
61
|
+
id="path3001"
|
62
|
+
inkscape:connector-curvature="0"
|
63
|
+
style="fill:#bfbfbf" /><path
|
64
|
+
d="M 27,25.6 16.2,24.9 c -1.6,-0.1 -2.9,1.1 -3,2.6 -0.1,1.5 1.1,2.9 2.6,3 l 10.8,0.7 c 0.1,0 0.1,0 0.2,0 1.5,0 2.7,-1.2 2.8,-2.6 0,-0.8 -0.2,-1.5 -0.7,-2 C 28.4,26 27.8,25.7 27,25.6 z M 26.8,29.2 16,28.6 c -0.4,0 -0.8,-0.4 -0.8,-0.9 0,-0.4 0.4,-0.8 0.9,-0.8 0,0 0,0 0,0 l 10.8,0.7 c 0.2,0 0.4,0.1 0.6,0.3 0.1,0.2 0.2,0.4 0.2,0.6 -0.1,0.4 -0.4,0.7 -0.9,0.7 z"
|
65
|
+
id="path3003"
|
66
|
+
inkscape:connector-curvature="0"
|
67
|
+
style="fill:#bfbfbf" /></g></svg>
|
@@ -0,0 +1,63 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3
|
+
|
4
|
+
<svg
|
5
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
6
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
7
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
10
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
12
|
+
version="1.1"
|
13
|
+
id="Layer_1"
|
14
|
+
x="0px"
|
15
|
+
y="0px"
|
16
|
+
viewBox="0 0 40.000001 49.900001"
|
17
|
+
enable-background="new 0 0 56.7 56.7"
|
18
|
+
xml:space="preserve"
|
19
|
+
inkscape:version="0.48.5 r10040"
|
20
|
+
width="100%"
|
21
|
+
height="100%"
|
22
|
+
sodipodi:docname="svg__description.svg"><metadata
|
23
|
+
id="metadata3024"><rdf:RDF><cc:Work
|
24
|
+
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
25
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
26
|
+
id="defs3022" /><sodipodi:namedview
|
27
|
+
pagecolor="#ffffff"
|
28
|
+
bordercolor="#666666"
|
29
|
+
borderopacity="1"
|
30
|
+
objecttolerance="10"
|
31
|
+
gridtolerance="10"
|
32
|
+
guidetolerance="10"
|
33
|
+
inkscape:pageopacity="0"
|
34
|
+
inkscape:pageshadow="2"
|
35
|
+
inkscape:window-width="640"
|
36
|
+
inkscape:window-height="480"
|
37
|
+
id="namedview3020"
|
38
|
+
showgrid="false"
|
39
|
+
fit-margin-top="0"
|
40
|
+
fit-margin-left="0"
|
41
|
+
fit-margin-right="0"
|
42
|
+
fit-margin-bottom="0"
|
43
|
+
inkscape:zoom="4.1622575"
|
44
|
+
inkscape:cx="19.85"
|
45
|
+
inkscape:cy="25.550001"
|
46
|
+
inkscape:window-x="302"
|
47
|
+
inkscape:window-y="148"
|
48
|
+
inkscape:window-maximized="0"
|
49
|
+
inkscape:current-layer="Layer_1" /><g
|
50
|
+
id="g3012"
|
51
|
+
transform="translate(-8.5,-4)"><path
|
52
|
+
d="m 47.7,11.7 -7,-6.9 C 40.2,4.3 39.5,4 38.8,4 l 0,0 H 11.2 C 9.7,4 8.5,5.2 8.5,6.7 v 44.5 c 0,1.5 1.2,2.7 2.7,2.7 h 34.6 c 1.5,0 2.7,-1.2 2.7,-2.7 V 13.6 c 0,-0.7 -0.3,-1.4 -0.8,-1.9 z m -2,0.9 h -5.9 l 0,-5.8 5.9,5.8 z m 0.1,39.3 H 11.2 c -0.4,0 -0.7,-0.3 -0.7,-0.7 V 6.7 C 10.5,6.3 10.8,6 11.2,6 h 26.6 l 0,7.5 c 0,0.6 0.4,1 1,1 h 7.6 v 36.6 c 0.1,0.5 -0.2,0.8 -0.6,0.8 z"
|
53
|
+
id="path3014"
|
54
|
+
inkscape:connector-curvature="0"
|
55
|
+
style="fill:#bfbfbf" /><path
|
56
|
+
d="M 39.1,43.7 H 18 c -0.6,0 -1,0.4 -1,1 0,0.6 0.4,1 1,1 h 21.1 c 0.6,0 1,-0.4 1,-1 0,-0.6 -0.5,-1 -1,-1 z"
|
57
|
+
id="path3016"
|
58
|
+
inkscape:connector-curvature="0"
|
59
|
+
style="fill:#bfbfbf" /><path
|
60
|
+
d="m 39.2,32.9 c -5.5,-2.1 -6.7,-3.1 -7,-3.3 v -0.4 c 0.6,-0.8 1.1,-1.7 1.5,-2.8 0.5,-0.5 0.9,-1.2 0.9,-2 0,-0.5 -0.1,-1 -0.4,-1.4 v -2.1 c 0,-3.3 -2.1,-5.2 -5.6,-5.2 -3.4,0 -5.6,2 -5.6,5.2 V 23 c -0.3,0.4 -0.4,0.9 -0.4,1.4 0,0.8 0.3,1.5 0.9,2 0.3,1.1 0.8,2 1.5,2.8 v 0.4 c -0.3,0.3 -1.6,1.3 -7,3.4 -0.7,0.3 -1.1,0.9 -1.1,1.7 v 2.7 c 0,1 0.8,1.8 1.8,1.8 h 19.9 c 1,0 1.8,-0.8 1.8,-1.8 v -2.7 c 0,-0.8 -0.5,-1.5 -1.2,-1.8 z m -0.8,4.2 H 19 v -2.3 c 6.9,-2.7 7.8,-3.8 8,-4.6 0,-0.1 0,-0.2 0,-0.3 v -1.1 c 0,-0.3 -0.1,-0.5 -0.3,-0.7 -0.6,-0.6 -1.1,-1.5 -1.4,-2.5 -0.1,-0.2 -0.2,-0.4 -0.4,-0.5 -0.2,-0.1 -0.3,-0.4 -0.3,-0.6 0,-0.2 0.1,-0.4 0.2,-0.5 0.1,-0.2 0.2,-0.4 0.2,-0.6 V 21 c 0,-2.1 1.2,-3.2 3.6,-3.2 2.4,0 3.6,1 3.6,3.2 v 2.4 c 0,0.2 0.1,0.5 0.2,0.6 0.1,0.1 0.2,0.3 0.2,0.5 0,0.2 -0.1,0.5 -0.3,0.6 -0.2,0.1 -0.3,0.3 -0.4,0.5 -0.3,1 -0.8,1.9 -1.4,2.5 -0.2,0.2 -0.3,0.4 -0.3,0.7 v 1.1 c 0,0.1 0,0.2 0,0.3 0.3,0.8 1.1,1.9 8,4.6 l 0.2,2.3 0,0 z"
|
61
|
+
id="path3018"
|
62
|
+
inkscape:connector-curvature="0"
|
63
|
+
style="fill:#bfbfbf" /></g></svg>
|
@@ -0,0 +1,55 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3
|
+
|
4
|
+
<svg
|
5
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
6
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
7
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
10
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
12
|
+
version="1.1"
|
13
|
+
id="Layer_1"
|
14
|
+
x="0px"
|
15
|
+
y="0px"
|
16
|
+
viewBox="0 0 735.4 476.5"
|
17
|
+
enable-background="new 0 0 1280 800"
|
18
|
+
xml:space="preserve"
|
19
|
+
inkscape:version="0.48.5 r10040"
|
20
|
+
width="100%"
|
21
|
+
height="100%"
|
22
|
+
sodipodi:docname="svg__mail.svg"><metadata
|
23
|
+
id="metadata3035"><rdf:RDF><cc:Work
|
24
|
+
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
25
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
26
|
+
id="defs3033" /><sodipodi:namedview
|
27
|
+
pagecolor="#ffffff"
|
28
|
+
bordercolor="#666666"
|
29
|
+
borderopacity="1"
|
30
|
+
objecttolerance="10"
|
31
|
+
gridtolerance="10"
|
32
|
+
guidetolerance="10"
|
33
|
+
inkscape:pageopacity="0"
|
34
|
+
inkscape:pageshadow="2"
|
35
|
+
inkscape:window-width="640"
|
36
|
+
inkscape:window-height="480"
|
37
|
+
id="namedview3031"
|
38
|
+
showgrid="false"
|
39
|
+
fit-margin-top="0"
|
40
|
+
fit-margin-left="0"
|
41
|
+
fit-margin-right="0"
|
42
|
+
fit-margin-bottom="0"
|
43
|
+
inkscape:zoom="0.2328125"
|
44
|
+
inkscape:cx="363.5"
|
45
|
+
inkscape:cy="241"
|
46
|
+
inkscape:window-x="606"
|
47
|
+
inkscape:window-y="675"
|
48
|
+
inkscape:window-maximized="0"
|
49
|
+
inkscape:current-layer="Layer_1" /><g
|
50
|
+
id="g3027"
|
51
|
+
transform="translate(-276.5,-164.5)"><path
|
52
|
+
d="M 1011.9,592 V 215.3 c 0,-14.7 -6.6,-27.8 -16.4,-37.7 -1.6,-1.6 -3.3,-3.3 -4.9,-3.3 -9.8,-6.6 -19.7,-9.8 -29.5,-9.8 H 327.3 c -11.5,0 -21.3,3.3 -31.1,9.8 l 0,0 c -11.5,9.8 -19.7,22.9 -19.7,39.3 v 376.7 c 0,13.1 4.9,26.2 14.7,36 9.8,9.8 22.9,14.7 36,14.7 h 632.2 c 13.1,0 26.2,-4.9 36,-14.7 10,-8.1 16.5,-21.2 16.5,-34.3 z M 913.6,208.7 645.1,379.1 374.8,208.7 h 538.8 z m 47.5,389.8 H 327.3 c -4.9,0 -6.6,-1.6 -6.6,-6.6 V 225.1 l 312.8,196.5 c 6.6,4.9 16.4,4.9 22.9,0 L 967.6,225.1 v 365.2 c 0,3.3 -1.6,4.9 -1.6,4.9 -1.6,3.3 -3.2,3.3 -4.9,3.3 z"
|
53
|
+
id="path3029"
|
54
|
+
inkscape:connector-curvature="0"
|
55
|
+
style="fill:#bfbfbf" /></g></svg>
|
@@ -0,0 +1,53 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3
|
+
|
4
|
+
<svg
|
5
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
6
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
7
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
10
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
12
|
+
version="1.1"
|
13
|
+
id="Layer_1"
|
14
|
+
x="0px"
|
15
|
+
y="0px"
|
16
|
+
viewBox="0 0 39.4 48.3"
|
17
|
+
enable-background="new 0 0 56.7 56.7"
|
18
|
+
xml:space="preserve"
|
19
|
+
inkscape:version="0.48.5 r10040"
|
20
|
+
width="100%"
|
21
|
+
height="100%"
|
22
|
+
sodipodi:docname="svg__thumb.svg"><metadata
|
23
|
+
id="metadata9"><rdf:RDF><cc:Work
|
24
|
+
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
25
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
26
|
+
id="defs7" /><sodipodi:namedview
|
27
|
+
pagecolor="#ffffff"
|
28
|
+
bordercolor="#666666"
|
29
|
+
borderopacity="1"
|
30
|
+
objecttolerance="10"
|
31
|
+
gridtolerance="10"
|
32
|
+
guidetolerance="10"
|
33
|
+
inkscape:pageopacity="0"
|
34
|
+
inkscape:pageshadow="2"
|
35
|
+
inkscape:window-width="640"
|
36
|
+
inkscape:window-height="480"
|
37
|
+
id="namedview5"
|
38
|
+
showgrid="false"
|
39
|
+
fit-margin-top="0"
|
40
|
+
fit-margin-left="0"
|
41
|
+
fit-margin-right="0"
|
42
|
+
fit-margin-bottom="0"
|
43
|
+
inkscape:zoom="4.1622575"
|
44
|
+
inkscape:cx="27.49661"
|
45
|
+
inkscape:cy="20.346188"
|
46
|
+
inkscape:window-x="0"
|
47
|
+
inkscape:window-y="0"
|
48
|
+
inkscape:window-maximized="0"
|
49
|
+
inkscape:current-layer="Layer_1" /><path
|
50
|
+
d="m 1.7,41.099999 c 0.1,0.4 0.5,0.6 0.9,0.6 h 5 c 0.7,0.7 1.3,1.5 2.0000001,2.1 2.9999999,2.8 6.9999999,4.4 11.0999999,4.5 2.3,0 4.5,0 4.8,0 5.3,0 5.8,-3.5 5.8,-5 0,-0.1 0,-0.2 0,-0.4 1.9,-0.2 4,-1.2 4,-4.1 0,-0.2 0,-1 -0.1,-1.5 0.9,-0.3 1.7,-0.8 2.2,-1.4 0.8,-1 0.8,-3.2 0.8,-3.3 0,-0.8 -0.2,-1.6 -0.7,-2.4 0.2,-0.2 0.4,-0.4 0.6,-0.6 0.8,-0.8 1.3,-1.3 1.3,-2.9 0,-2.4 -1.4,-3.3 -3.5,-4.5 -2.3,-1.3 -5.3,-1.9 -9,-1.9 h -0.6 c 0.3,-2.1 1,-4.1 2,-6 l 0.6,-1.1 c 1.3,-2.5 2,-4.4999998 2,-5.8999998 0.1,-3.8 -2,-6.3 -6,-7.2 L 24.4,-7.9555981e-7 c -0.1,0 -0.2,0 -0.2,0 -0.2,0 -0.4,0.0999999955598 -0.5,0.0999999955598 -0.2,0.1 -0.4,0.4 -0.5,0.60000001 L 22.4,4.3999992 c -0.6,2.5 -1.8,4.8 -3.6,6.6999998 l -3.8,4.1 c -0.3,0.3 -0.6,0.7 -0.9,1.1 -0.4,0.6 -1.1,1.4 -1.9,2.5 l -1.1,1.4 c -1.1,1.5 -1.8999999,2.4 -2.3,2.7 -0.4,0.3 -1.1,0.4 -2,0.4 h -4 c -0.4,0 -0.8,0.2 -0.9,0.6 -1.20000001,2.8 -1.9,5.7 -1.9,8.6 0,2.9 0.59999999,5.8 1.7,8.6 z m 1.8,-15.7 h 3.3 c 1.4,0 2.5000001,-0.3 3.2,-0.8 0.4,-0.3 1.1,-0.9 2.7,-3.1 l 1,-1.4 c 0.9,-1.2 1.5,-2 1.9,-2.5 0.3,-0.3 0.5,-0.6 0.8,-0.9 l 3.8,-4.1 c 2,-2.1 3.4,-4.7999998 4.1,-7.5999998 l 0.6,-2.7 c 2.8,0.8 4,2.4 4,5.2 0,0.7 -0.3,2.1999995 -1.7,4.8999998 l -0.6,1.1 c -1.2,2.3 -1.9,4.7 -2.2,7.1 l -0.1,0.8 c 0,0.3 0,0.6 0.2,0.8 0.2,0.2 0.5,0.3 0.8,0.3 H 27 c 3.4,0 6.1,0.6 8,1.7 2.1,1.2 2.5,1.6 2.5,2.8 0,0.8 -0.1,0.8 -0.7,1.4 -0.2,0.2 -0.5,0.5 -0.9,0.9 l -0.1,0.1 -6.4,0.3 c -0.6,0 -1,0.5 -1,1 0,0.6 0.5,1 1,0.9 l 6.2,-0.3 c 0.4,0.6 0.5,1.1 0.5,1.5 0,0.8 -0.2,1.8 -0.4,2 -0.3,0.3 -0.8,0.6 -1.4,0.8 l -0.4,0.1 -5.8,0.2 c -0.6,0 -1,0.5 -1,1 0,0.6 0.5,1 1,1 l 5,-0.2 c 0,0.4 0,1 0,1.2 0,1 -0.2,2 -2.5,2.2 l -0.7,0.1 -2.8,0 h 0 c -0.6,0 -1,0.4 -1,1 0,0.6 0.4,1 1,1 l 2,0 c 0,0.1 0,0.2 0,0.3 0,1.3 -0.4,3 -3.8,3 -0.2,0 -2.5,0 -4.7,0 -3.6,0 -7.1,-1.4 -9.8,-3.9 -0.7,-0.6 -1.3999999,-1.3 -2,-2.1 l -0.2,-0.2 c -0.2,-0.2 -0.5,-0.3 -0.8,-0.3 H 3 c -0.9,-2.4 -1.3,-4.8 -1.3,-7.2 0.3,-2.7 0.8,-5.1 1.8,-7.4 z"
|
51
|
+
id="path3"
|
52
|
+
inkscape:connector-curvature="0"
|
53
|
+
style="fill:#bfbfbf" /></svg>
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: smock
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.120
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-10-
|
12
|
+
date: 2014-10-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: sass
|
@@ -148,6 +148,7 @@ files:
|
|
148
148
|
- app/assets/stylesheets/modules/_hero.sass
|
149
149
|
- app/assets/stylesheets/modules/_metric.sass
|
150
150
|
- app/assets/stylesheets/modules/_metrics.sass
|
151
|
+
- app/assets/stylesheets/modules/_modal.sass
|
151
152
|
- app/assets/stylesheets/modules/_nav.sass
|
152
153
|
- app/assets/stylesheets/modules/_pagination.sass
|
153
154
|
- app/assets/stylesheets/modules/_profile.sass
|
@@ -410,6 +411,11 @@ files:
|
|
410
411
|
- original_svg_images/icon-linkedin.svg
|
411
412
|
- original_svg_images/icon-pintrest.svg
|
412
413
|
- original_svg_images/icon-website.svg
|
414
|
+
- original_svg_images/svg__briefing.svg
|
415
|
+
- original_svg_images/svg__delivery.svg
|
416
|
+
- original_svg_images/svg__description.svg
|
417
|
+
- original_svg_images/svg__mail.svg
|
418
|
+
- original_svg_images/svg__thumb.svg
|
413
419
|
- smock.gemspec
|
414
420
|
homepage: https://github.com/envato/smock
|
415
421
|
licenses:
|
@@ -426,7 +432,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
426
432
|
version: '0'
|
427
433
|
segments:
|
428
434
|
- 0
|
429
|
-
hash: -
|
435
|
+
hash: -1148055751628510391
|
430
436
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
431
437
|
none: false
|
432
438
|
requirements:
|
@@ -435,7 +441,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
435
441
|
version: '0'
|
436
442
|
segments:
|
437
443
|
- 0
|
438
|
-
hash: -
|
444
|
+
hash: -1148055751628510391
|
439
445
|
requirements: []
|
440
446
|
rubyforge_project: smock
|
441
447
|
rubygems_version: 1.8.21
|