asi-calculator/components/Header/Header.module.css

34 lines
480 B
CSS
Raw Permalink Normal View History

.header {
max-width: var(--max-width);
margin: auto;
margin-top: 5vh;
}
2024-03-31 06:01:26 +02:00
.title,
.description {
color: rgb(var(--foreground-rgb-highlight));
}
.title {
2024-04-02 23:40:44 +02:00
font-size: clamp(1.5rem, 10vw, 2.75rem);
display: flex;
align-items: center;
2024-03-31 06:01:26 +02:00
}
.description {
2024-04-02 23:40:44 +02:00
font-size: clamp(1.1rem, 5vw, 1.75rem);
color: var(--text-light);
}
@media (min-width: 22rem) {
.description {
padding-left: 3.75rem;
}
}
.logo {
height: 0.8em;
width: auto;
margin-right: 0.5rem;
2024-03-31 06:01:26 +02:00
}