Skip to content

Commit

Permalink
instalacion correcta sass
Browse files Browse the repository at this point in the history
  • Loading branch information
maxcrowar committed Sep 12, 2023
1 parent a1de931 commit 5573851
Show file tree
Hide file tree
Showing 10 changed files with 76 additions and 27 deletions.
17 changes: 17 additions & 0 deletions css/copiastyle.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@


/* Header */



/* Main */




/* Footer */



footer
footer ul
40 changes: 16 additions & 24 deletions css/style.css

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

1 change: 1 addition & 0 deletions css/style.css.map

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

3 changes: 2 additions & 1 deletion package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"sass": "^1.66.1"
}
},
"description": ""
}
11 changes: 11 additions & 0 deletions scss/base/_reset.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
* {
margin: o;
padding: 0;
box-sizing: border-box;
}

body {
font-size: 14px;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background-color: #1a1a1a;
}
14 changes: 14 additions & 0 deletions scss/layout/_footer.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
footer {
border-top: 1px solid gray;
color: #ffffff;
font-family: Arial, Helvetica, sans-serif;
ul {
list-style-type: none;
li a {
color: #ffffff;
text-decoration: none;
}

}

}
Empty file added scss/layout/_header.scss
Empty file.
5 changes: 5 additions & 0 deletions scss/layout/_main.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
main {
color: white;
font-family: Arial, Helvetica, sans-serif;
margin-top: 7rem;
}
8 changes: 8 additions & 0 deletions scss/style.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Reset
@import './base/reset';

// Layout
@import './layout/header';
@import './layout/main';
@import './layout/footer';

0 comments on commit 5573851

Please sign in to comment.