moodist/src/components/sections/about/about.module.css
2023-11-01 14:56:11 +03:30

32 lines
587 B
CSS

.about {
padding: 80px 0;
& .titleWrapper {
display: flex;
align-items: center;
column-gap: 12px;
& .title {
margin-bottom: 12px;
font-family: var(--font-display);
font-size: var(--font-lg);
font-weight: 600;
}
& .line {
height: 1px;
flex-grow: 1;
background: linear-gradient(90deg, var(--color-neutral-300), transparent);
transform: translateY(-0.25rem);
}
}
& .desc {
color: var(--color-foreground-subtle);
line-height: 1.7;
& span {
color: var(--color-foreground);
}
}
}