25 lines
387 B
CSS
25 lines
387 B
CSS
.header {
|
|
font-family: monospace;
|
|
background: papayawhip;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
a {
|
|
font-size: 22px;
|
|
background: white;
|
|
padding: 8px;
|
|
/* this removes the line under the links */
|
|
text-decoration: none;
|
|
} |