Files
element-call/src/typography/Typography.module.css

41 lines
512 B
CSS
Raw Normal View History

2022-01-04 16:00:13 -08:00
.caption {
font-size: var(--font-size-caption);
line-height: var(--font-size-body);
2022-01-04 16:00:13 -08:00
}
.micro {
font-size: var(--font-size-micro);
line-height: var(--font-size-caption);
2022-01-04 16:00:13 -08:00
}
.regular {
font-weight: 400;
}
.semiBold {
font-weight: 600;
}
.bold {
font-weight: 700;
}
.link {
2022-06-01 11:48:17 -04:00
color: var(--links);
2022-01-04 16:00:13 -08:00
}
.link:hover {
text-decoration: underline;
opacity: initial;
}
2022-01-04 16:00:13 -08:00
.primary {
2022-06-01 11:48:17 -04:00
color: var(--accent);
2022-01-04 16:00:13 -08:00
}
2022-01-04 17:09:27 -08:00
.overflowEllipsis {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}