30 lines
834 B
SCSS
30 lines
834 B
SCSS
@import url(https://fonts.bunny.net/css?family=pt-sans:400,400i,700|black-ops-one:400|zilla-slab:400,700);
|
|
|
|
@import "variables";
|
|
|
|
@import "~bootstrap/scss/bootstrap";
|
|
|
|
@import "~/bootstrap-icons/font/bootstrap-icons.css";
|
|
|
|
@import "../css/app-front.css";
|
|
|
|
.font-family-black-ops-one {
|
|
font-family: "Black Ops One", system-ui, -apple-system, "Segoe UI", Roboto,
|
|
"Helvetica Neue", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji",
|
|
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
}
|
|
|
|
.font-family-zilla-slab {
|
|
font-family: "Zilla Slab", system-ui, -apple-system, "Segoe UI", Roboto,
|
|
"Helvetica Neue", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji",
|
|
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|