odin-flex/02-flex-header/style.css

34 lines
548 B
CSS
Raw Normal View History

2023-12-29 16:21:21 +00:00
.header {
font-family: monospace;
background: papayawhip;
2023-12-29 16:28:53 +00:00
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
gap: 25px;
2023-12-29 16:21:21 +00:00
}
.logo {
font-size: 48px;
font-weight: 900;
color: tomato;
background: white;
padding: 4px 32px;
}
ul {
/* this removes the dots on the list items*/
list-style-type: none;
2023-12-29 16:28:53 +00:00
display: flex;
padding: 0;
margin: 0;
gap: 15px;
2023-12-29 16:21:21 +00:00
}
a {
font-size: 22px;
background: white;
padding: 8px;
/* this removes the line under the links */
text-decoration: none;
}