-
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.
Signed-off-by: Anthony Veaudry <[email protected]>
- Loading branch information
1 parent
dc1d3fd
commit 5c2e5dd
Showing
41 changed files
with
3,273 additions
and
3,595 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// ? ========================================================================== | ||
// ? Base | ||
// ? ========================================================================== | ||
|
||
// ? In your base folder, include a normalize.css file and create a base.scss file. | ||
//? In the base.scss file, you can only apply styles to three different elements directly: | ||
// ? the universal selector (*) | ||
// ? ul elements | ||
// ? p elements | ||
|
||
* { | ||
box-sizing: border-box; | ||
} | ||
|
||
ul { | ||
margin: 0; | ||
padding: 0; | ||
list-style-type: none; | ||
} | ||
|
||
p { | ||
font-family: $font-family--primary; | ||
} | ||
|
||
.container { | ||
margin: 0; | ||
width: 80%; | ||
padding-top: em(40px); | ||
margin: auto; | ||
} |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
@import "../node_modules/normalize.css/normalize.css"; | ||
@import "./_base.scss" |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
.btn { | ||
width: 100%; | ||
text-transform: uppercase; | ||
border: none; | ||
border-radius: $br--rounded; | ||
color: $white; | ||
padding: em(10px); | ||
margin: em(10px) 0; | ||
[type="submit"] { | ||
width: 100%; | ||
} | ||
&:focus { | ||
outline: none; | ||
} | ||
@each $theme, $color in $ui-colors { | ||
@include m($theme) { | ||
@extend .btn; | ||
background-color: $color; | ||
&:active { | ||
-moz-box-shadow: inset 0 0 10px darken($color, 20%); | ||
-webkit-box-shadow: inset 0 0 10px darken($color, 20%); | ||
box-shadow: inset 0 0 10px darken($color, 20%); | ||
} | ||
} | ||
} | ||
@include mq(large) { | ||
width: em(150px) | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
// ? ========================================================================== | ||
// ? Components | ||
// ? ========================================================================== |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// ? ========================================================================== | ||
// ? Forms | ||
// ? ========================================================================== | ||
|
||
// ? Forms: | ||
// ? .form | ||
// ? .form__label--hidden | ||
// ? .form__input | ||
|
||
|
||
.form { | ||
@include flex(flex,column); | ||
width: 100%; | ||
} | ||
|
||
.form__input { | ||
margin: 0 auto; | ||
width: 100%; | ||
height: 40px; | ||
border: none; | ||
border-bottom: 5px solid $color-accent; | ||
margin-bottom: 20px; | ||
&:focus { | ||
outline: none; | ||
} | ||
} | ||
|
||
.form__label--hidden { | ||
display: none; | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.