-
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
f9c160a
commit d6b421e
Showing
12 changed files
with
124 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto |
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,46 @@ | ||
*, | ||
*::before, | ||
*::after { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: inherit; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
} | ||
|
||
html { | ||
box-sizing: border-box; | ||
font-size: 62.5%; | ||
overflow-x: hidden; | ||
font-family: "Roboto", sans-serif; | ||
} | ||
@media only screen and (max-width: 48em) { | ||
html { | ||
font-size: 46.875%; | ||
} | ||
} | ||
|
||
body { | ||
overflow-x: hidden; | ||
background: rgb(255, 250, 240); | ||
} | ||
|
||
nav, | ||
header, | ||
section, | ||
main, | ||
footer { | ||
width: 100%; | ||
padding: 3rem 5rem; | ||
} | ||
@media only screen and (max-width: 48em) { | ||
nav, | ||
header, | ||
section, | ||
main, | ||
footer { | ||
padding: 2rem 3rem; | ||
} | ||
}/*# sourceMappingURL=main.css.map */ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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,17 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap" | ||
rel="stylesheet" | ||
/> | ||
<link rel="stylesheet" href="./css/main.css" /> | ||
<title>Whimsy Furniture Store</title> | ||
</head> | ||
<body></body> | ||
</html> |
Empty file.
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,51 @@ | ||
// COLORS | ||
$color-primary: #4b4b4b; | ||
$color-accent: #ffad4c; | ||
|
||
// BREAKPOINTS | ||
$bp-xl: 90em; | ||
$bp-lg: 64em; | ||
$bp-md: 48em; | ||
$bp-sm: 30em; | ||
|
||
// NORMALIZING THE OVERALL LAYOUT BY IGNORING DEFAULT PROPERTIES | ||
*, | ||
*::before, | ||
*::after { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: inherit; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
} | ||
|
||
html { | ||
box-sizing: border-box; | ||
font-size: 62.5%; //10px | ||
overflow-x: hidden; | ||
font-family: "Roboto", sans-serif; | ||
|
||
@media only screen and (max-width: $bp-md) { | ||
font-size: 46.875%; // 7.5px | ||
} | ||
} | ||
|
||
body { | ||
overflow-x: hidden; | ||
background: rgb(255, 250, 240); | ||
} | ||
|
||
nav, | ||
header, | ||
section, | ||
main, | ||
footer { | ||
width: 100%; | ||
padding: 3rem 5rem; | ||
|
||
@media only screen and (max-width: $bp-md) { | ||
padding: 2rem 3rem; | ||
} | ||
} |
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
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,7 @@ | ||
@import "base"; | ||
@import "components"; | ||
|
||
@import "navbar"; | ||
@import "header"; | ||
@import "sections"; | ||
@import "footer"; |