50 lines
1.2 KiB
CSS
50 lines
1.2 KiB
CSS
@font-face {
|
|
font-family: "Geist";
|
|
src: url('../fonts/GeistVF.woff2') format('woff2'),
|
|
url('../fonts/Geist-Regular.ttf') format('truetype');
|
|
}
|
|
@font-face {
|
|
font-family: "Geist Mono";
|
|
src: url('../fonts/GeistMonoVF.woff2') format('woff2'),
|
|
url('../fonts/GeistMono-Regular.ttf') format('truetype');
|
|
}
|
|
:root {
|
|
--fonts-proportional: "Geist", Arial !important;
|
|
--fonts-monospace: "Geist Mono", Arial !important;
|
|
}
|
|
|
|
blockquote.attention-note {
|
|
border-left-color: var(--color-blue-light);
|
|
}
|
|
strong.attention-note, svg.attention-note {
|
|
color: var(--color-blue);
|
|
}
|
|
|
|
blockquote.attention-tip {
|
|
border-left-color: var(--color-success-border);
|
|
}
|
|
strong.attention-tip, svg.attention-tip {
|
|
color: var(--color-success-bg);
|
|
}
|
|
|
|
blockquote.attention-important {
|
|
border-left-color: var(--color-purple-light);
|
|
}
|
|
strong.attention-important, svg.attention-important {
|
|
color: var(--color-purple);
|
|
}
|
|
|
|
blockquote.attention-warning {
|
|
border-left-color: var(--color-warning-border);
|
|
}
|
|
strong.attention-warning, svg.attention-warning {
|
|
color: var(--color-warning-bg);
|
|
}
|
|
|
|
blockquote.attention-caution {
|
|
border-left-color: var(--color-red-light);
|
|
}
|
|
strong.attention-caution, svg.attention-caution {
|
|
color: var(--color-red);
|
|
}
|