Completed exercise 02
This commit is contained in:
parent
762a875a53
commit
7acd8545fe
|
@ -1,6 +1,11 @@
|
||||||
.header {
|
.header {
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
background: papayawhip;
|
background: papayawhip;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
padding: 10px;
|
||||||
|
gap: 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
|
@ -14,6 +19,10 @@
|
||||||
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: 0;
|
||||||
|
margin: 0;
|
||||||
|
gap: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
|
|
Loading…
Reference in New Issue