index-main/assets/css/components/_category.scss

103 lines
2 KiB
SCSS
Raw Normal View History

.type {
height: calc(var(--h-block) * 0.75);
// border-radius: calc(var(--h-block)*0.75/2);
border-radius: var(--radius-small);
width: max-content;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0 1ch;
padding-top: 3px;
font-size: var(--fs-xsmall);
line-height: 1;
font-weight: 500;
background-color: var(--color-txt);
color: var(--color-bg);
overflow: hidden;
white-space: nowrap;
2026-01-08 18:41:26 +01:00
}
.category {
height: calc(var(--h-block) * 0.75);
border-radius: var(--radius-small);
2026-01-08 18:41:26 +01:00
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0 1ch;
padding-top: 3px;
2026-01-06 15:43:31 +01:00
font-size: var(--fs-xsmall);
line-height: 1;
font-weight: 500;
2026-02-25 14:58:17 +01:00
border: var(--border-medium);
background-color: var(--color-bg);
color: var(--color-txt-light);
2026-02-25 14:58:17 +01:00
overflow: hidden;
white-space: nowrap;
2026-02-25 14:58:17 +01:00
}
2026-02-24 17:05:22 +01:00
.page__category {
height: calc(var(--h-block) * 1);
border-radius: var(--radius-small);
border: var(--border-medium);
2026-02-24 17:05:22 +01:00
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0 1.5ch;
padding-top: 5px;
2026-02-24 17:05:22 +01:00
font-size: var(--fs-small);
2026-02-24 17:05:22 +01:00
background-color: var(--color-bg);
color: var(--color-txt-light);
font-weight: 500;
2026-02-24 17:05:22 +01:00
overflow: hidden;
white-space: nowrap;
text-transform: uppercase;
2026-02-24 17:05:22 +01:00
@media #{$small} {
height: calc(var(--h-block) * 0.75);
font-size: var(--fs-xsmall);
padding: 0 1ch;
padding-top: 3px;
}
2026-02-24 17:05:22 +01:00
}
.page__type {
height: calc(var(--h-block) * 1);
border-radius: var(--radius-small);
margin-left: calc(var(--padding-inner) * 0.25);
2026-02-24 17:05:22 +01:00
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0 1.5ch;
padding-top: 5px;
2026-02-24 17:05:22 +01:00
font-size: var(--fs-small);
2026-02-24 17:05:22 +01:00
background-color: var(--color-txt);
color: var(--color-bg);
font-weight: 500;
2026-02-24 17:05:22 +01:00
overflow: hidden;
white-space: nowrap;
text-transform: uppercase;
2026-02-24 17:05:22 +01:00
@media #{$small} {
height: calc(var(--h-block) * 0.75);
font-size: var(--fs-xsmall);
padding: 0 1ch;
padding-top: 3px;
}
2026-02-24 17:05:22 +01:00
}