hugo-theme-termlite/assets/css/099_site_header.css

47 lines
797 B
CSS
Raw Normal View History

/*************************
# COMPONENT: SITE HEADER
*************************/
.site-header {
2024-07-06 11:05:58 -07:00
font-size: var(--text-xxl);
margin-block-start: var(--space-xl);
padding-block-end: var(--space-xl);
}
2024-07-06 11:05:58 -07:00
.site-header__content {
gap: var(--space-l);
.site-header__title {
font-family: var(--font-family-heading);
2024-07-06 11:05:58 -07:00
font-size: var(--text-xxl);
font-weight: 600;
letter-spacing: 0.05em;
a:hover {
text-decoration: none;
}
}
.site-header__nav {
2024-07-06 11:05:58 -07:00
font-size: var(--text-s);
font-weight: normal;
ul {
display: flex;
gap: var(--space-xs);
list-style: none;
2024-07-06 11:05:58 -07:00
margin: 0;
padding: 0;
li {
margin: 0;
padding: 0;
}
li:not(:first-child)::before {
content: "•";
}
}
}
}