mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-06-06 12:54:16 +02:00
Some checks are pending
Project CI / build (24.x) (push) Waiting to run
* Implement another traits redesign * Adjust traits shape
25 lines
727 B
Text
Executable file
25 lines
727 B
Text
Executable file
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Cinzel+Decorative:wght@700&family=Montserrat:wght@400;600&display=swap');
|
|
@import './mixin.less';
|
|
|
|
:root {
|
|
--dh-font-title: 'Cinzel Decorative';
|
|
--dh-font-subtitle: 'Cinzel';
|
|
--dh-font-body: 'Montserrat';
|
|
|
|
/* Include missing font sizes */
|
|
--font-size-8: 0.5rem;
|
|
--font-size-9: 0.5625rem;
|
|
--font-size-22: 1.375rem;
|
|
}
|
|
|
|
@font-title: ~"var(--dh-font-title, 'Cinzel Decorative'), serif";
|
|
@font-subtitle: ~"var(--dh-font-subtitle, 'Cinzel'), serif";
|
|
@font-body: ~"var(--dh-font-body, 'Montserrat'), sans-serif";
|
|
|
|
.dh-style {
|
|
.dh-typography();
|
|
}
|
|
|
|
.dh-style fieldset {
|
|
.dh-typography();
|
|
}
|