-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
814af42
commit bb70701
Showing
20 changed files
with
216 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
self.addEventListener('install', function (event) { | ||
self.skipWaiting(); | ||
}); | ||
// self.addEventListener('install', function (event) { | ||
// self.skipWaiting(); | ||
// }); | ||
|
||
self.addEventListener('fetch', function (event) { | ||
event.respondWith(fetch(event.request)); | ||
}); | ||
// self.addEventListener('fetch', function (event) { | ||
// event.respondWith(fetch(event.request)); | ||
// }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,80 +1,82 @@ | ||
@import "../../../styles/variables.scss"; | ||
|
||
.intro { | ||
padding: 2rem 1rem 1rem 1rem; | ||
background: $blue-gradient; | ||
.view { | ||
.intro { | ||
padding: 2rem 1rem 1rem 1rem; | ||
background: $blue-gradient; | ||
|
||
p { | ||
color: $light-grey; | ||
} | ||
|
||
h1 { | ||
color: $white; | ||
font-weight: 500; | ||
font-size: 1.75rem; | ||
} | ||
|
||
.menu { | ||
display: flex; | ||
justify-content: space-around; | ||
margin-top: 2rem; | ||
p { | ||
color: $light-grey; | ||
} | ||
|
||
button { | ||
margin: 0; | ||
font-weight: 400; | ||
h1 { | ||
color: $white; | ||
background-color: transparent; | ||
border: none; | ||
outline: none; | ||
font-size: 1rem; | ||
cursor: pointer; | ||
transition: width 0.3s ease-out, background-color 0.3s ease; | ||
-webkit-transition: width 0.3s ease-out, background-color 0.3s ease; | ||
-moz-transition: width 0.3s ease-out, background-color 0.3s ease; | ||
-ms-transition: width 0.3s ease-out, background-color 0.3s ease; | ||
-o-transition: width 0.3s ease-out, background-color 0.3s ease; | ||
font-weight: 500; | ||
font-size: 1.75rem; | ||
} | ||
|
||
&:after { | ||
content: ""; | ||
display: block; | ||
margin: auto; | ||
height: 2px; | ||
width: 0px; | ||
background: transparent; | ||
.menu { | ||
display: flex; | ||
justify-content: space-around; | ||
margin-top: 2rem; | ||
|
||
button { | ||
margin: 0; | ||
font-weight: 400; | ||
color: $white; | ||
background-color: transparent; | ||
border: none; | ||
outline: none; | ||
font-size: 1rem; | ||
cursor: pointer; | ||
transition: width 0.3s ease-out, background-color 0.3s ease; | ||
-webkit-transition: width 0.3s ease-out, background-color 0.3s ease; | ||
-moz-transition: width 0.3s ease-out, background-color 0.3s ease; | ||
-ms-transition: width 0.3s ease-out, background-color 0.3s ease; | ||
-o-transition: width 0.3s ease-out, background-color 0.3s ease; | ||
} | ||
|
||
&.active { | ||
font-weight: 500; | ||
|
||
&:after { | ||
content: ""; | ||
display: block; | ||
margin: auto; | ||
height: 2px; | ||
width: 0px; | ||
background: transparent; | ||
transition: width 0.3s ease-out, background-color 0.3s ease; | ||
-webkit-transition: width 0.3s ease-out, background-color 0.3s ease; | ||
-moz-transition: width 0.3s ease-out, background-color 0.3s ease; | ||
-ms-transition: width 0.3s ease-out, background-color 0.3s ease; | ||
-o-transition: width 0.3s ease-out, background-color 0.3s ease; | ||
width: 1.5rem; | ||
background: $white; | ||
} | ||
|
||
&.active { | ||
font-weight: 500; | ||
|
||
&:after { | ||
transition: width 0.3s ease-out, background-color 0.3s ease; | ||
-webkit-transition: width 0.3s ease-out, background-color 0.3s ease; | ||
-moz-transition: width 0.3s ease-out, background-color 0.3s ease; | ||
-ms-transition: width 0.3s ease-out, background-color 0.3s ease; | ||
-o-transition: width 0.3s ease-out, background-color 0.3s ease; | ||
width: 1.5rem; | ||
background: $white; | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
.about { | ||
padding: 1.5rem 0; | ||
.about { | ||
padding: 1.5rem 0; | ||
|
||
h5 { | ||
font-size: 1.2rem; | ||
font-weight: 600; | ||
margin: 0.5rem 0 0.5rem 0; | ||
} | ||
h5 { | ||
font-size: 1.2rem; | ||
font-weight: 600; | ||
margin: 0.5rem 0 0.5rem 0; | ||
} | ||
|
||
.stats { | ||
margin-top: 2rem; | ||
.stats { | ||
margin-top: 2rem; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
bb70701
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs: