44 lines
731 B
CSS
44 lines
731 B
CSS
nav {
|
|
display: flex;
|
|
flex-direction: row;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100px;
|
|
text-align: left;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
column-gap: 50px;
|
|
}
|
|
|
|
p {
|
|
font-family: "handotrial", serif;
|
|
font-weight: 400;
|
|
padding: 2rem 0 1.5rem;
|
|
}
|
|
|
|
.nav-menu-card {
|
|
height: 50px;
|
|
display: flex;
|
|
font-size: 1.5rem;
|
|
padding: 0 1rem;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
color: var(--border-color);
|
|
}
|
|
|
|
#title {
|
|
display: flex;
|
|
width: 400px;
|
|
text-align: left;
|
|
margin-left: 20px;
|
|
padding: 0;
|
|
flex-direction: row;
|
|
gap: 0;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: none;
|
|
color: var(--border-color);
|
|
} |