slow-steps 0.1.11 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +21 -0
- data/README.md +35 -37
- data/_config.yml +1 -1
- data/_includes/footer/footer_full.html +15 -3
- data/_includes/functions/calc-svg-coord.html +18 -23
- data/_includes/functions/pull_page_args.html +3 -3
- data/_includes/head/head.html +9 -30
- data/_includes/head/stylesheets.html +20 -0
- data/_includes/image-post.html +12 -0
- data/_includes/image.html +50 -5
- data/_includes/navigation/global.html +47 -53
- data/_includes/scripts.html +9 -8
- data/_includes/vimeoPlayer.html +9 -10
- data/_layouts/about.html +17 -3
- data/_layouts/careers.html +22 -0
- data/_layouts/contact.html +1 -1
- data/_layouts/env/clinician.html +12 -29
- data/_layouts/env/pwp.html +13 -54
- data/_layouts/faq.html +12 -3
- data/_layouts/feed.html +1 -2
- data/_layouts/full-width.html +25 -2
- data/_sass/_colors/README.md +27 -0
- data/_sass/_colors/_clinician.sass +7 -0
- data/_sass/_colors/_mixins.sass +14 -0
- data/_sass/_colors/_pwp.sass +6 -0
- data/_sass/{colors → _colors}/_variables.sass +8 -17
- data/_sass/_colors/collection.sass +3 -0
- data/_sass/_mixins.sass +14 -5
- data/_sass/about.sass +46 -4
- data/_sass/breakpoints/about.sass +28 -4
- data/_sass/collage.sass +129 -0
- data/_sass/contact.sass +11 -42
- data/_sass/env/landing.sass +7 -7
- data/_sass/faq.sass +28 -3
- data/_sass/feed.sass +17 -5
- data/_sass/footer.sass +1 -1
- data/_sass/footer_full.sass +23 -13
- data/_sass/forms/mc-forms.sass +3 -3
- data/_sass/global.sass +40 -35
- data/_sass/navigation/README.md +35 -0
- data/_sass/navigation/_variables.sass +5 -6
- data/_sass/navigation/{global.sass → base.sass} +21 -20
- data/_sass/navigation/breakpoints/1024.sass +33 -15
- data/_sass/navigation/burger.sass +9 -3
- data/_sass/navigation/clinician.sass +31 -0
- data/_sass/navigation/collection.sass +9 -0
- data/_sass/navigation/colors.sass +8 -0
- data/_sass/navigation/no-nav.sass +32 -0
- data/_sass/navigation/{env/pwp.sass → pwp.sass} +12 -16
- data/_sass/post.sass +2 -7
- data/_sass/typography/_variables.sass +4 -0
- data/assets/css/env/gaitq_clinician.sass +26 -8
- data/assets/css/env/gaitq_landing.sass +21 -3
- data/assets/css/env/gaitq_pwp.sass +28 -8
- data/assets/css/gaitq_errors.sass +9 -3
- data/assets/css/gaitq_post.sass +5 -5
- data/assets/images/augmented_image.png +0 -0
- metadata +23 -31
- data/_includes/.DS_Store +0 -0
- data/_includes/head/.DS_Store +0 -0
- data/_includes/head/env/conditional.html +0 -2
- data/_sass/colors/breakpoints/1024.sass +0 -20
- data/_sass/colors/burger.sass +0 -22
- data/_sass/colors/env/_clinician.sass +0 -16
- data/_sass/colors/env/_pwp.sass +0 -16
- data/_sass/colors/global.sass +0 -2
- data/_sass/colors/navigation.sass +0 -13
- data/_sass/navigation/env/clinician.sass +0 -38
- data/_sass/navigation/env/landing.sass +0 -19
- data/assets/css/gaitq_about.sass +0 -22
- data/assets/css/gaitq_feed.sass +0 -12
- data/assets/css/gaitq_global.sass +0 -34
- data/assets/fonts/.DS_Store +0 -0
- data/assets/fonts/Quicksand/OFL.txt +0 -93
- data/assets/fonts/Quicksand/Quicksand-VariableFont_wght.ttf +0 -0
- data/assets/fonts/Quicksand/README.txt +0 -67
- data/assets/fonts/Quicksand/static/Quicksand-Bold.ttf +0 -0
- data/assets/fonts/Quicksand/static/Quicksand-Light.ttf +0 -0
- data/assets/fonts/Quicksand/static/Quicksand-Medium.ttf +0 -0
- data/assets/fonts/Quicksand/static/Quicksand-Regular.ttf +0 -0
- data/assets/fonts/Quicksand/static/Quicksand-SemiBold.ttf +0 -0
- data/assets/fonts/fontawesome-free-5.11.2-web/.DS_Store +0 -0
@@ -1,38 +0,0 @@
|
|
1
|
-
// Navbar site logo
|
2
|
-
// make sure we don't style any other instance so nest with .nav-brand
|
3
|
-
.nav-brand
|
4
|
-
@include logo-color($env-primary)
|
5
|
-
|
6
|
-
|
7
|
-
// on mobile and within the clinician env we hide the other submenus and show the gaitq env .nav-group-link
|
8
|
-
.pwp-group, .gaitq-group
|
9
|
-
display: none
|
10
|
-
|
11
|
-
|
12
|
-
@media screen and ( min-width: 768px )
|
13
|
-
.pwp-group-link, .clinician-group-link
|
14
|
-
display: flex
|
15
|
-
|
16
|
-
.nav-group-content
|
17
|
-
background-color: $env-primary
|
18
|
-
border-top: 1px solid rgb(118, 133, 164)
|
19
|
-
|
20
|
-
.clinician-group
|
21
|
-
display: flex
|
22
|
-
align-items: center
|
23
|
-
width: 100vw
|
24
|
-
height: 15vh
|
25
|
-
left: 0
|
26
|
-
flex-direction: row
|
27
|
-
|
28
|
-
.nav-group-container
|
29
|
-
|
30
|
-
|
31
|
-
.nav-link
|
32
|
-
font-weight: 400
|
33
|
-
color: $env-primary
|
34
|
-
text-transform: uppercase
|
35
|
-
padding: 1rem 3rem
|
36
|
-
&:not(.current--url)
|
37
|
-
&:hover
|
38
|
-
text-decoration: underline
|
@@ -1,19 +0,0 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
// Here we only deal with navigation within env: landing
|
4
|
-
|
5
|
-
// We dont include any navbar on the landing page. See _includes/naviagtion/global.html
|
6
|
-
|
7
|
-
// Navbar site logo
|
8
|
-
// make sure we don't style any other instance so nest with .nav-brand
|
9
|
-
.nav-brand
|
10
|
-
@include logo-color($white)
|
11
|
-
height: 14rem
|
12
|
-
transform: translateY(15vh)
|
13
|
-
|
14
|
-
@media screen and ( min-width: 1024px )
|
15
|
-
.nav-brand
|
16
|
-
transform: translateY(-7.5vh)
|
17
|
-
|
18
|
-
.social-media
|
19
|
-
display: none
|
data/assets/css/gaitq_about.sass
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
---
|
2
|
-
---
|
3
|
-
|
4
|
-
$baseurl: '{{ site.baseurl }}/'
|
5
|
-
|
6
|
-
@import '_variables'
|
7
|
-
|
8
|
-
@import '_mixins'
|
9
|
-
|
10
|
-
@import 'colors/_variables'
|
11
|
-
|
12
|
-
@import 'navigation/_variables'
|
13
|
-
|
14
|
-
@import 'colors/env/_pwp'
|
15
|
-
|
16
|
-
@import 'typography/_variables'
|
17
|
-
|
18
|
-
@import 'env/pwp'
|
19
|
-
|
20
|
-
@import 'about'
|
21
|
-
|
22
|
-
@import 'breakpoints/about'
|
data/assets/css/gaitq_feed.sass
DELETED
@@ -1,34 +0,0 @@
|
|
1
|
-
---
|
2
|
-
---
|
3
|
-
|
4
|
-
// Site wide styling
|
5
|
-
|
6
|
-
@import '_variables'
|
7
|
-
|
8
|
-
@import '_mixins'
|
9
|
-
|
10
|
-
@import 'typography/_variables'
|
11
|
-
|
12
|
-
@import 'colors/_variables'
|
13
|
-
|
14
|
-
@import 'typography/resets'
|
15
|
-
|
16
|
-
@import 'typography/branding'
|
17
|
-
|
18
|
-
// Navigation --> structural only
|
19
|
-
|
20
|
-
@import 'navigation/_variables'
|
21
|
-
|
22
|
-
@import 'navigation/global'
|
23
|
-
|
24
|
-
@import 'navigation/burger'
|
25
|
-
|
26
|
-
@import 'navigation/breakpoints/1024'
|
27
|
-
|
28
|
-
// Footer
|
29
|
-
|
30
|
-
@import 'footer_full'
|
31
|
-
|
32
|
-
@import 'aos-overrides'
|
33
|
-
|
34
|
-
@import 'global'
|
data/assets/fonts/.DS_Store
DELETED
Binary file
|
@@ -1,93 +0,0 @@
|
|
1
|
-
Copyright 2011 The Quicksand Project Authors (https://github.com/andrew-paglinawan/QuicksandFamily), with Reserved Font Name “Quicksand”.
|
2
|
-
|
3
|
-
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
4
|
-
This license is copied below, and is also available with a FAQ at:
|
5
|
-
http://scripts.sil.org/OFL
|
6
|
-
|
7
|
-
|
8
|
-
-----------------------------------------------------------
|
9
|
-
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
10
|
-
-----------------------------------------------------------
|
11
|
-
|
12
|
-
PREAMBLE
|
13
|
-
The goals of the Open Font License (OFL) are to stimulate worldwide
|
14
|
-
development of collaborative font projects, to support the font creation
|
15
|
-
efforts of academic and linguistic communities, and to provide a free and
|
16
|
-
open framework in which fonts may be shared and improved in partnership
|
17
|
-
with others.
|
18
|
-
|
19
|
-
The OFL allows the licensed fonts to be used, studied, modified and
|
20
|
-
redistributed freely as long as they are not sold by themselves. The
|
21
|
-
fonts, including any derivative works, can be bundled, embedded,
|
22
|
-
redistributed and/or sold with any software provided that any reserved
|
23
|
-
names are not used by derivative works. The fonts and derivatives,
|
24
|
-
however, cannot be released under any other type of license. The
|
25
|
-
requirement for fonts to remain under this license does not apply
|
26
|
-
to any document created using the fonts or their derivatives.
|
27
|
-
|
28
|
-
DEFINITIONS
|
29
|
-
"Font Software" refers to the set of files released by the Copyright
|
30
|
-
Holder(s) under this license and clearly marked as such. This may
|
31
|
-
include source files, build scripts and documentation.
|
32
|
-
|
33
|
-
"Reserved Font Name" refers to any names specified as such after the
|
34
|
-
copyright statement(s).
|
35
|
-
|
36
|
-
"Original Version" refers to the collection of Font Software components as
|
37
|
-
distributed by the Copyright Holder(s).
|
38
|
-
|
39
|
-
"Modified Version" refers to any derivative made by adding to, deleting,
|
40
|
-
or substituting -- in part or in whole -- any of the components of the
|
41
|
-
Original Version, by changing formats or by porting the Font Software to a
|
42
|
-
new environment.
|
43
|
-
|
44
|
-
"Author" refers to any designer, engineer, programmer, technical
|
45
|
-
writer or other person who contributed to the Font Software.
|
46
|
-
|
47
|
-
PERMISSION & CONDITIONS
|
48
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
49
|
-
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
50
|
-
redistribute, and sell modified and unmodified copies of the Font
|
51
|
-
Software, subject to the following conditions:
|
52
|
-
|
53
|
-
1) Neither the Font Software nor any of its individual components,
|
54
|
-
in Original or Modified Versions, may be sold by itself.
|
55
|
-
|
56
|
-
2) Original or Modified Versions of the Font Software may be bundled,
|
57
|
-
redistributed and/or sold with any software, provided that each copy
|
58
|
-
contains the above copyright notice and this license. These can be
|
59
|
-
included either as stand-alone text files, human-readable headers or
|
60
|
-
in the appropriate machine-readable metadata fields within text or
|
61
|
-
binary files as long as those fields can be easily viewed by the user.
|
62
|
-
|
63
|
-
3) No Modified Version of the Font Software may use the Reserved Font
|
64
|
-
Name(s) unless explicit written permission is granted by the corresponding
|
65
|
-
Copyright Holder. This restriction only applies to the primary font name as
|
66
|
-
presented to the users.
|
67
|
-
|
68
|
-
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
69
|
-
Software shall not be used to promote, endorse or advertise any
|
70
|
-
Modified Version, except to acknowledge the contribution(s) of the
|
71
|
-
Copyright Holder(s) and the Author(s) or with their explicit written
|
72
|
-
permission.
|
73
|
-
|
74
|
-
5) The Font Software, modified or unmodified, in part or in whole,
|
75
|
-
must be distributed entirely under this license, and must not be
|
76
|
-
distributed under any other license. The requirement for fonts to
|
77
|
-
remain under this license does not apply to any document created
|
78
|
-
using the Font Software.
|
79
|
-
|
80
|
-
TERMINATION
|
81
|
-
This license becomes null and void if any of the above conditions are
|
82
|
-
not met.
|
83
|
-
|
84
|
-
DISCLAIMER
|
85
|
-
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
86
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
87
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
88
|
-
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
89
|
-
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
90
|
-
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
91
|
-
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
92
|
-
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
93
|
-
OTHER DEALINGS IN THE FONT SOFTWARE.
|
Binary file
|
@@ -1,67 +0,0 @@
|
|
1
|
-
Quicksand Variable Font
|
2
|
-
=======================
|
3
|
-
|
4
|
-
This download contains Quicksand as both a variable font and static fonts.
|
5
|
-
|
6
|
-
Quicksand is a variable font with this axis:
|
7
|
-
wght
|
8
|
-
|
9
|
-
This means all the styles are contained in a single file:
|
10
|
-
Quicksand-VariableFont_wght.ttf
|
11
|
-
|
12
|
-
If your app fully supports variable fonts, you can now pick intermediate styles
|
13
|
-
that aren’t available as static fonts. Not all apps support variable fonts, and
|
14
|
-
in those cases you can use the static font files for Quicksand:
|
15
|
-
static/Quicksand-Light.ttf
|
16
|
-
static/Quicksand-Regular.ttf
|
17
|
-
static/Quicksand-Medium.ttf
|
18
|
-
static/Quicksand-SemiBold.ttf
|
19
|
-
static/Quicksand-Bold.ttf
|
20
|
-
|
21
|
-
Get started
|
22
|
-
-----------
|
23
|
-
|
24
|
-
1. Install the font files you want to use
|
25
|
-
|
26
|
-
2. Use your app's font picker to view the font family and all the
|
27
|
-
available styles
|
28
|
-
|
29
|
-
Learn more about variable fonts
|
30
|
-
-------------------------------
|
31
|
-
|
32
|
-
https://developers.google.com/web/fundamentals/design-and-ux/typography/variable-fonts
|
33
|
-
https://variablefonts.typenetwork.com
|
34
|
-
https://medium.com/variable-fonts
|
35
|
-
|
36
|
-
In desktop apps
|
37
|
-
|
38
|
-
https://theblog.adobe.com/can-variable-fonts-illustrator-cc
|
39
|
-
https://helpx.adobe.com/nz/photoshop/using/fonts.html#variable_fonts
|
40
|
-
|
41
|
-
Online
|
42
|
-
|
43
|
-
https://developers.google.com/fonts/docs/getting_started
|
44
|
-
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fonts/Variable_Fonts_Guide
|
45
|
-
https://developer.microsoft.com/en-us/microsoft-edge/testdrive/demos/variable-fonts
|
46
|
-
|
47
|
-
Installing fonts
|
48
|
-
|
49
|
-
MacOS: https://support.apple.com/en-us/HT201749
|
50
|
-
Linux: https://www.google.com/search?q=how+to+install+a+font+on+gnu%2Blinux
|
51
|
-
Windows: https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows
|
52
|
-
|
53
|
-
Android Apps
|
54
|
-
|
55
|
-
https://developers.google.com/fonts/docs/android
|
56
|
-
https://developer.android.com/guide/topics/ui/look-and-feel/downloadable-fonts
|
57
|
-
|
58
|
-
License
|
59
|
-
-------
|
60
|
-
Please read the full license text (OFL.txt) to understand the permissions,
|
61
|
-
restrictions and requirements for usage, redistribution, and modification.
|
62
|
-
|
63
|
-
You can use them freely in your products & projects - print or digital,
|
64
|
-
commercial or otherwise. However, you can't sell the fonts on their own.
|
65
|
-
|
66
|
-
This isn't legal advice, please consider consulting a lawyer and see the full
|
67
|
-
license for all details.
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|