24 lines
558 B
CSS
24 lines
558 B
CSS
/* Match brosner.com font */
|
|
@import url("@fontsource-variable/roboto-slab/index.css");
|
|
@import url("@fontsource/noto-sans-hebrew/400.css");
|
|
@import url("@fontsource/noto-sans-hebrew/600.css");
|
|
html, body {
|
|
font-family: "Roboto Slab Variable", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
font-optical-sizing: auto;
|
|
}
|
|
|
|
/* Ensure navbar icons remain white like the original */
|
|
.icon > svg > path {
|
|
fill: #fff;
|
|
}
|
|
|
|
.hebrew, :lang(he) {
|
|
font-family: "Noto Sans Hebrew", system-ui, sans-serif;
|
|
}
|
|
:lang(he) {
|
|
direction: rtl;
|
|
unicode-bidi: isolate;
|
|
}
|
|
|
|
|