37 lines
385 B
CSS
37 lines
385 B
CSS
:root {
|
|
--blue: #ef58ef;
|
|
}
|
|
|
|
#home {
|
|
font-size: 20em;
|
|
color: black;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.navbar {
|
|
background-color: var(--blue);
|
|
}
|
|
|
|
.navbar a {
|
|
font-weight: bold;
|
|
color: white;
|
|
}
|
|
|
|
.navbar li {
|
|
font-size: 1.5em;
|
|
}
|
|
|
|
|
|
body {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.content, .navbar {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.content {
|
|
color: var(--blue);
|
|
padding: 5em;
|
|
} |