mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 00:44:14 +00:00
42 lines
858 B
CSS
42 lines
858 B
CSS
.why {
|
|
padding-bottom: 80px;
|
|
|
|
& .title {
|
|
margin-bottom: 12px;
|
|
font-family: var(--font-display);
|
|
font-size: var(--font-lg);
|
|
font-weight: 600;
|
|
}
|
|
|
|
& .reasons {
|
|
display: grid;
|
|
margin-top: 24px;
|
|
gap: 20px;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
|
|
& .icon {
|
|
display: flex;
|
|
width: 44px;
|
|
height: 44px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 1px solid var(--color-neutral-200);
|
|
border-radius: 12px;
|
|
margin-bottom: 12px;
|
|
background-color: var(--color-neutral-100);
|
|
color: #818cf8;
|
|
font-size: var(--font-lg);
|
|
}
|
|
|
|
& .label {
|
|
margin-bottom: 8px;
|
|
font-family: var(--font-heading);
|
|
font-weight: 600;
|
|
}
|
|
|
|
& .body {
|
|
color: var(--color-foreground-subtle);
|
|
line-height: 1.6;
|
|
}
|
|
}
|
|
}
|