Completed Section
This commit is contained in:
parent
6a4c1c2f27
commit
ab37fe0e0a
1
flex/01-flex-center/COMPLETE.md
Normal file
1
flex/01-flex-center/COMPLETE.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
# COMPLETE
|
||||||
@ -3,6 +3,9 @@
|
|||||||
border: 4px solid midnightblue;
|
border: 4px solid midnightblue;
|
||||||
width: 400px;
|
width: 400px;
|
||||||
height: 300px;
|
height: 300px;
|
||||||
|
display: flex;
|
||||||
|
justify-content:center;
|
||||||
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.box {
|
.box {
|
||||||
|
|||||||
1
flex/02-flex-header/COMPLETE.md
Normal file
1
flex/02-flex-header/COMPLETE.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
# COMPLETE
|
||||||
@ -1,6 +1,10 @@
|
|||||||
.header {
|
.header {
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
background: papayawhip;
|
background: papayawhip;
|
||||||
|
padding: 10px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
@ -14,6 +18,11 @@
|
|||||||
ul {
|
ul {
|
||||||
/* this removes the dots on the list items*/
|
/* this removes the dots on the list items*/
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
|
display: flex;
|
||||||
|
padding: 0px;
|
||||||
|
margin: 0px;
|
||||||
|
gap: 8px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
@ -23,3 +32,4 @@ a {
|
|||||||
/* this removes the line under the links */
|
/* this removes the line under the links */
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user