slow-steps 0.1.3 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,20 +1,17 @@
1
+ /* Last full read through 29/12/2020
2
+ *
3
+ *##############################################
4
+ *# about /_sass/about.sass
5
+ *##############################################
6
+ *
7
+ */
1
8
 
2
- .about__head
3
- align-items: center
4
- backdrop-filter: blur(8px)
5
- background-color: rgba($env-primary, .5)
6
- color: $white
7
- display: flex
8
- height: $mobile-navbar-height * 4
9
- justify-content: center
10
- padding-top: $mobile-navbar-height
11
- text-align: center
12
- span
13
- animation-duration: .1s
14
- animation-fill-mode: forwards
15
- animation-iteration-count: 1
16
- animation-name: fadeInOpacity
17
- opacity: 0
9
+
10
+ .hero
11
+ overflow: hidden
12
+
13
+ .hero__image--fixed
14
+ position: fixed
18
15
 
19
16
  @keyframes fadeInOpacity
20
17
  0%
@@ -24,20 +21,8 @@
24
21
  opacity: 1
25
22
 
26
23
 
27
- .about__head__bg
28
- background-image: url($baseurl + 'assets/img/pwp_device_group.png')
29
- filter: contrast(3) brightness(.6)
30
- background-position: center
31
- background-repeat: no-repeat
32
- background-size: cover
33
- height: $mobile-navbar-height * 5
34
- position: fixed
35
- width: 100vw
36
- z-index: -1
37
-
38
24
  .about__copy
39
25
  align-items: center
40
- background-color: $env-primary
41
26
  color: $white
42
27
  display: flex
43
28
  flex-direction: column
@@ -55,7 +40,6 @@
55
40
 
56
41
  .team__head
57
42
  align-items: flex-end
58
- background-color: rgba($env-primary, .5)
59
43
  border-bottom: solid 1px $opd-blue-confidence
60
44
  display: flex
61
45
  height: 10rem
@@ -8,11 +8,14 @@
8
8
 
9
9
  // Oxford Product Design
10
10
 
11
- $opd-blue-confidence: rgba(62, 86, 112, 1)
11
+ // #46627d
12
+ $opd-blue-confidence: rgba(70, 98, 125, 1)
12
13
 
13
- $opd-orange-confidence: rgba(210, 84, 75, 1)
14
+ // #da5e51
15
+ $opd-orange-confidence: rgba(218, 94, 81, 1)
14
16
 
15
- $opd-blue-trust: rgba(179, 201, 226, 1)
17
+ // #9CBBD2
18
+ $opd-blue-trust: rgba(174, 201, 229, 1)
16
19
 
17
20
  $opd-grey-neutral: rgba(178, 178, 178, 1)
18
21
 
@@ -51,7 +54,7 @@ $led: rgb(255, 70, 0)
51
54
 
52
55
  // Object colors
53
56
 
54
- $secondary-navbar-color: rgba(255, 255, 255, .3)
57
+ $secondary-navbar-color: rgba(255, 255, 255, .8)
55
58
 
56
59
 
57
60
  // Color set mixins
@@ -4,7 +4,7 @@
4
4
  // in assets/css/gaitq_env.sass we import this AFTER
5
5
  // @import 'colors/env/env.sass'
6
6
 
7
- @media screen and ( min-width: 768px )
7
+ @media screen and ( min-width: 1024px )
8
8
 
9
9
  .navbar
10
10
  background-color: $env-primary
@@ -1,5 +1,5 @@
1
1
 
2
- // Colouring theme for pwp env
2
+ // Colouring theme for clinician env
3
3
 
4
4
  $env-primary: $opd-blue-confidence
5
5
 
@@ -0,0 +1,2 @@
1
+ .white
2
+ color: $white
@@ -0,0 +1,227 @@
1
+
2
+
3
+ .contact__wrapper
4
+ display: flex
5
+ width: 100%
6
+ background-color: $white
7
+ padding: 5rem 0
8
+ flex-direction: column
9
+
10
+ .contact--left
11
+ width: auto
12
+ padding: 0 1rem
13
+ padding-bottom: 5rem
14
+
15
+ .contact--right
16
+ //width: 100%
17
+ padding: 0 1rem
18
+
19
+ .form-instruction
20
+ padding-bottom: 2rem
21
+
22
+ .contact-form
23
+ width: 100%
24
+ display: block
25
+
26
+ form
27
+ border: solid 1px rgba($env-primary, .2)
28
+ border-radius: 4px
29
+ padding: 2rem
30
+ label
31
+ font-size: $font-size * .8
32
+ color: $black
33
+
34
+ .google-map
35
+ //grid-area: googleMap
36
+ width: 100%
37
+
38
+ //padding: 0 5rem
39
+ //filter: sepia(.3)
40
+ iframe
41
+ width: 100%
42
+ height: 40vh
43
+ border: solid 1px rgba($env-primary, .2)
44
+
45
+ .contact-details
46
+ display: flex
47
+ flex-direction: column
48
+ padding: 4rem 0
49
+ p
50
+ padding-bottom: 2rem
51
+ .fas
52
+ color: $env-primary
53
+ a
54
+ color: $black
55
+ transition: all .2s ease-in-out
56
+ //text-decoration: none
57
+ &:hover
58
+ color: $env-primary
59
+ .social-media-link
60
+ font-size: $font-size * 1.4
61
+
62
+ .form-element
63
+ width: 100%
64
+ height: 40px
65
+ border-radius: 4px
66
+ //font-size: 1rem
67
+ font-weight: 100
68
+ margin: 2vh 0
69
+ border: none
70
+ background-color: $pure-white
71
+ padding: .1rem 0 .4rem 0
72
+ text-indent: 1rem
73
+
74
+ &::placeholder
75
+ color: rgba($env-primary, .3)
76
+
77
+ .btn-contact
78
+ background: $env-primary
79
+ color: #ffffff
80
+ cursor: pointer
81
+ font-size: $font-size * .8
82
+ padding: 1rem 2rem
83
+ border: 0
84
+ transition: all .3s
85
+ border-radius: 4px
86
+ width: auto
87
+ position: relative
88
+
89
+ .social-media
90
+ display: flex
91
+ justify-content: center
92
+ padding: 0
93
+ margin: 0
94
+ z-index: 9999
95
+
96
+ .social-media-item
97
+ list-style: none
98
+ padding-right: 2rem
99
+
100
+ .social-media-link
101
+ color: $grey
102
+ transition: all .3s ease-in-out
103
+
104
+
105
+
106
+ @media screen and ( min-width: 1024px )
107
+
108
+ .contact__wrapper
109
+ display: flex
110
+ flex-direction: row
111
+ width: 100%
112
+ background-color: $white
113
+ padding: 5rem 0
114
+
115
+ .contact--left
116
+ width: 40%
117
+ padding: 0 5rem
118
+
119
+ .contact--right
120
+ width: 60%
121
+ padding: 0 5rem
122
+
123
+ .form-instruction
124
+ padding-bottom: 2rem
125
+
126
+ .contact-form
127
+ width: 100%
128
+ display: block
129
+
130
+ form
131
+ border: solid 1px rgba($env-primary, .2)
132
+ border-radius: 4px
133
+ padding: 2rem
134
+ label
135
+ font-size: $font-size * .8
136
+ color: $black
137
+
138
+ .google-map
139
+ //grid-area: googleMap
140
+ width: 100%
141
+
142
+ //padding: 0 5rem
143
+ //filter: sepia(.3)
144
+ iframe
145
+ width: 100%
146
+ height: 40vh
147
+ border: solid 1px rgba($env-primary, .2)
148
+
149
+ .contact-details
150
+ display: flex
151
+ flex-direction: column
152
+ padding: 4rem 0
153
+ p
154
+ padding-bottom: 2rem
155
+ .fas
156
+ color: $env-primary
157
+ a
158
+ color: $black
159
+ transition: all .2s ease-in-out
160
+ text-decoration: none
161
+ &:hover
162
+ color: $env-primary
163
+ .social-media-link
164
+ font-size: $font-size * 2
165
+
166
+ .form-element
167
+ width: 100%
168
+ height: 40px
169
+ border-radius: 4px
170
+ //font-size: 1rem
171
+ font-weight: 100
172
+ margin: 2vh 0
173
+ border: none
174
+ background-color: $pure-white
175
+ padding: .1rem 0 .4rem 0
176
+ text-indent: 1rem
177
+
178
+ &::placeholder
179
+ color: rgba($env-primary, .3)
180
+
181
+ .btn-contact
182
+ background: $env-primary
183
+ color: #ffffff
184
+ cursor: pointer
185
+ font-size: $font-size * .8
186
+ padding: 1rem 2rem
187
+ border: 0
188
+ transition: all .3s
189
+ border-radius: 4px
190
+ width: auto
191
+ position: relative
192
+
193
+ &::after
194
+ content: "\f054"
195
+ font-family: "Font Awesome 5 Free"
196
+ font-weight: 900
197
+ position: absolute
198
+ //left: 85%
199
+ top: 28%
200
+ right: 5%
201
+ bottom: 0
202
+ opacity: 0
203
+
204
+ &:hover
205
+ background: rgba($env-primary, .9)
206
+ transition: all .5s
207
+ box-shadow: 0px 6px 15px rgba($env-primary, .3)
208
+ padding: 1rem 3rem 1rem 2.1rem
209
+
210
+ &::after
211
+ opacity: 1
212
+ transition: all 0.3s
213
+
214
+ .social-media
215
+ display: flex
216
+ justify-content: flex-start
217
+ padding: 0
218
+ margin: 0
219
+ z-index: 9999
220
+
221
+ .social-media-item
222
+ list-style: none
223
+ padding-right: 2rem
224
+
225
+ .social-media-link
226
+ color: $grey
227
+ transition: all .3s ease-in-out
@@ -6,19 +6,17 @@
6
6
  *
7
7
  */
8
8
 
9
- .hero
10
- height: 65vh
11
- height: calc(var(--vh, 1vh) * 65)
9
+ .image__filter--blur
10
+ @include image-filter--blur
12
11
 
13
12
  .hero__overlay
14
13
  background-color: $env-primary
15
14
 
16
- .hero__strap
17
- align-self: flex-end
15
+ .bg--env-100
18
16
  background-color: $env-primary
19
- color: $white
20
- padding-bottom: 5.5vh
21
- width: 100vw
17
+
18
+ .bg--env-50
19
+ background-color: rgba($env-primary, .5)
22
20
 
23
21
  .hero__follow
24
22
  background-color: $env-primary
@@ -35,53 +33,20 @@
35
33
  padding: 5rem 0
36
34
  width: 50%
37
35
 
38
- // This is basically a button and should to be centralised
36
+ .image--guarantee
37
+ @include image-filter-rotate
38
+
39
39
  .action__call
40
- bottom: 0
41
- font-size: $font-size * .8
42
- margin: -100px auto
43
- padding: 2rem
44
- position: relative
45
- text-decoration: none
46
- transition: .2s ease
47
40
 
48
41
  &:before
49
42
  background-color: rgba($env-secondary, .2)
50
- border-radius: 3rem
51
- content: ''
52
- display: block
53
- height: 6rem
54
- left: 0
55
- position: absolute
56
- top: 0
57
- transition: .2s ease
58
- width: 6rem
59
43
 
60
44
  span
61
45
  color: $env-primary
62
- font-weight: 900
63
- position: relative
64
46
 
65
47
  svg
66
- fill: none
67
- margin-left: 10px
68
- position: relative
69
48
  stroke: $env-primary
70
- stroke-linecap: round
71
- stroke-linejoin: round
72
- stroke-width: 2
73
- top: 0
74
- transform: translateX(-10px)
75
- transition: .2s ease
76
49
 
77
50
  &:hover
78
51
  &::before
79
52
  background-color: rgba($env-secondary, 1)
80
- width: 100%
81
-
82
- svg
83
- stroke: $white
84
- transform: translateX(0)
85
-
86
- span
87
- color: $white
@@ -45,7 +45,7 @@ $landing-height: 100vh
45
45
  position: absolute
46
46
 
47
47
  .hero__filter
48
- @include image-filter
48
+ @include image-filter--mix
49
49
 
50
50
  .env--pwp
51
51
  background-color: $opd-orange-confidence
@@ -6,14 +6,19 @@
6
6
  *
7
7
  */
8
8
 
9
- .hero
10
- height: 90vh
11
- height: calc(var(--vh, 1vh) * 90)
9
+ .image__filter--blur
10
+ @include image-filter--blur
12
11
 
13
12
  .hero__overlay
14
13
  background-color: $env-primary
15
14
 
16
- .hero__strap
15
+ .bg--env-100
16
+ background-color: $env-primary
17
+
18
+ .bg--env-50
19
+ background-color: rgba($env-primary, .5)
20
+
21
+ .hero__strap--env
17
22
  color: $env-secondary
18
23
 
19
24
  .hero__strap--start
@@ -48,7 +53,7 @@
48
53
  height: 50%
49
54
 
50
55
  .image--guarantee
51
- filter: grayscale(1) contrast(.8) brightness(.9) sepia(.4) hue-rotate(180deg)
56
+ @include image-filter-rotate
52
57
 
53
58
  .strap__guarantee
54
59
  border-top: solid 1px $soft-white