mirror of
https://codeberg.org/fediverse/fediparty.git
synced 2024-11-01 06:37:21 +00:00
31 lines
878 B
SCSS
31 lines
878 B
SCSS
|
|
$font-primary: "primary", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica", "Arial", sans-serif;
|
|
$font-secondary: "secondary", "Georgia", sans-serif;
|
|
|
|
[class^="icon-"],
|
|
[class*=" icon-"] {
|
|
height: 27px;
|
|
width: 27px;
|
|
fill: #ffffff;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "primary";
|
|
src: url("../fonts/font-primary.woff2") format("woff2"),
|
|
url("../fonts/font-primary.woff") format("woff"),
|
|
url("../fonts/font-primary.eot"),
|
|
url("../fonts/font-primary.ttf") format("truetype");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "secondary";
|
|
src: url("../fonts/font-secondary.woff2") format("woff2"),
|
|
url("../fonts/font-secondary.woff") format("woff"),
|
|
url("../fonts/font-secondary.eot"),
|
|
url("../fonts/font-secondary.ttf") format("truetype");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|