-
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.
Basic responsive site with nav and footer
- Loading branch information
Showing
13 changed files
with
93 additions
and
259 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 @@ | ||
old/ |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
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,21 @@ | ||
footer{ | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-between; | ||
margin-top: auto; | ||
padding: 10px; | ||
border-top: 1px solid white; | ||
} | ||
|
||
footer img{ | ||
filter: invert(1); | ||
padding-top: 3px; | ||
background-color: #e2e2e2; | ||
} | ||
|
||
footer ul{ | ||
display: flex; | ||
list-style: none; | ||
gap: 10px; | ||
align-items: center; | ||
} |
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,35 @@ | ||
*{ | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
color: white; | ||
font-family: Georgia, 'Times New Roman', serif; | ||
} | ||
|
||
body{ | ||
background-color: #1d1d1d; | ||
display: flex; | ||
height: 100vh; | ||
flex-direction: column; | ||
align-items: center; | ||
margin: auto; | ||
} | ||
|
||
nav, body, footer{ | ||
max-width: 1200px; | ||
width: 100%; | ||
} | ||
|
||
a:hover{ | ||
text-decoration: none; | ||
background-color: #e2e2e2; | ||
color: black; | ||
} | ||
|
||
a:hover img{ | ||
filter: invert(0); | ||
} | ||
|
||
.container{ | ||
padding: 10px; | ||
} |
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,16 @@ | ||
nav{ | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
padding: 10px; | ||
font-size: large; | ||
border-bottom: 1px solid white; | ||
} | ||
|
||
nav ul{ | ||
list-style: none; | ||
} | ||
|
||
nav li{ | ||
text-align: end; | ||
} |