Skip to content

Commit

Permalink
repairs project
Browse files Browse the repository at this point in the history
Signed-off-by: Anthony Veaudry <[email protected]>
  • Loading branch information
anthony0030 committed Nov 9, 2022
1 parent dc1d3fd commit 5c2e5dd
Show file tree
Hide file tree
Showing 41 changed files with 3,273 additions and 3,595 deletions.
5,758 changes: 2,682 additions & 3,076 deletions .config.codekit3

Large diffs are not rendered by default.

22 changes: 16 additions & 6 deletions docs/css/styles.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 19 additions & 19 deletions docs/css/styles.css.map

Large diffs are not rendered by default.

28 changes: 0 additions & 28 deletions source/scss/base/_base.sass

This file was deleted.

30 changes: 30 additions & 0 deletions source/scss/base/_base.scss
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;
}
2 changes: 0 additions & 2 deletions source/scss/base/_index.sass

This file was deleted.

2 changes: 2 additions & 0 deletions source/scss/base/_index.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@import "../node_modules/normalize.css/normalize.css";
@import "./_base.scss"
22 changes: 0 additions & 22 deletions source/scss/components/_buttons.sass

This file was deleted.

29 changes: 29 additions & 0 deletions source/scss/components/_buttons.scss
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)
}
}
3 changes: 0 additions & 3 deletions source/scss/components/_components.sass

This file was deleted.

3 changes: 3 additions & 0 deletions source/scss/components/_components.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
// ? ==========================================================================
// ? Components
// ? ==========================================================================
28 changes: 0 additions & 28 deletions source/scss/components/_forms.sass

This file was deleted.

30 changes: 30 additions & 0 deletions source/scss/components/_forms.scss
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;
}
77 changes: 0 additions & 77 deletions source/scss/components/_grid.sass

This file was deleted.

Loading

0 comments on commit 5c2e5dd

Please sign in to comment.