38 lines
865 B
SCSS
38 lines
865 B
SCSS
/* You can add global styles to this file, and also import other style files */
|
|
@font-face {
|
|
font-family: "ABeeZee";
|
|
font-stretch: normal;
|
|
font-style: normal;
|
|
font-variant: normal;
|
|
font-weight: normal;
|
|
src: local("ABeeZee Regular"),
|
|
local("ABeeZee-Regular"),
|
|
local("ABeeZee"),
|
|
url("assets/fonts/abeezee-regular.woff") format("woff");
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Free Monospaced";
|
|
src: url("assets/fonts/freemono.eot?") format("eot"),
|
|
url("assets/fonts/freemono.woff") format("woff"),
|
|
url("assets/fonts/freemono.ttf") format("truetype"),
|
|
url("assets/fonts/freemono.svg#FreeMono") format("svg");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
body {
|
|
background-color: white;
|
|
color: black;
|
|
font-family: "ABeeZee", sans-serif;
|
|
margin: 0;
|
|
padding: 1em 0 0 0;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
.apploader {
|
|
text-align: center;
|
|
}
|