12 lines
216 B
CSS
12 lines
216 B
CSS
/* Match brosner.com font */
|
|
html, body {
|
|
font-family: "Roboto Slab", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
}
|
|
|
|
/* Ensure navbar icons remain white like the original */
|
|
.icon > svg > path {
|
|
fill: #fff;
|
|
}
|
|
|
|
|