mirror of
https://github.com/remvze/moodist.git
synced 2026-02-25 12:30:13 -05:00
38 lines
755 B
CSS
38 lines
755 B
CSS
.category {
|
|
&:not(:last-of-type) {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
& .iconContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin-bottom: 15px;
|
|
|
|
& .tail {
|
|
width: 1px;
|
|
height: 75px;
|
|
background: linear-gradient(transparent, var(--color-neutral-300));
|
|
}
|
|
|
|
& .icon {
|
|
display: flex;
|
|
width: 45px;
|
|
height: 45px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 1px solid var(--color-neutral-300);
|
|
border-radius: 50%;
|
|
background-color: var(--color-neutral-100);
|
|
font-size: var(--font-md);
|
|
}
|
|
}
|
|
|
|
& .title {
|
|
font-family: var(--font-display);
|
|
font-size: var(--font-lg);
|
|
font-weight: 600;
|
|
text-align: center;
|
|
}
|
|
}
|