mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
20 lines
301 B
SCSS
20 lines
301 B
SCSS
@import "_colors";
|
|
|
|
/* Sets the style for emphasis/italics */
|
|
em, i
|
|
{
|
|
color: $green;
|
|
font-style: normal;
|
|
}
|
|
|
|
/* Headings and bold text are bright white */
|
|
h1, h2, h3, h4,
|
|
b, strong
|
|
{
|
|
color: $brightwhite;
|
|
font-size: 1em;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
margin: 0;
|
|
}
|