forked from noxious/client
46 lines
640 B
SCSS
46 lines
640 B
SCSS
@import '@/assets/scss/_variables';
|
|
|
|
// Fonts
|
|
@font-face {
|
|
font-family: GentiumPlus;
|
|
src: url('@/assets/fonts/Gentium_plus.ttf');
|
|
}
|
|
|
|
body {
|
|
-ms-overflow-style: none;
|
|
scrollbar-width: none;
|
|
background: $black;
|
|
margin: 0;
|
|
|
|
// Disable selection, might wanna comment when debugging
|
|
-webkit-user-select: none; /* Safari */
|
|
-ms-user-select: none; /* IE 10 and IE 11 */
|
|
user-select: none; /* Standard syntax */
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
font-family: GentiumPlus, serif;
|
|
}
|
|
|
|
p,
|
|
span,
|
|
li,
|
|
a,
|
|
button,
|
|
label {
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
button:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
display: none;
|
|
}
|