Completed Section

This commit is contained in:
cheeks 2024-07-13 16:16:32 -04:00
parent 6a4c1c2f27
commit ab37fe0e0a
4 changed files with 17 additions and 2 deletions

View File

@ -0,0 +1 @@
# COMPLETE

View File

@ -3,6 +3,9 @@
border: 4px solid midnightblue;
width: 400px;
height: 300px;
display: flex;
justify-content:center;
align-items: center;
}
.box {

View File

@ -0,0 +1 @@
# COMPLETE

View File

@ -1,6 +1,10 @@
.header {
font-family: monospace;
background: papayawhip;
padding: 10px;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo {
@ -14,6 +18,11 @@
ul {
/* this removes the dots on the list items*/
list-style-type: none;
display: flex;
padding: 0px;
margin: 0px;
gap: 8px;
}
a {
@ -23,3 +32,4 @@ a {
/* this removes the line under the links */
text-decoration: none;
}