28 lines
394 B
SCSS
28 lines
394 B
SCSS
@font-face {
|
|
font-family: GentiumPlus;
|
|
src: url('@/assets/fonts/Gentium_plus.ttf');
|
|
}
|
|
|
|
body {
|
|
-ms-overflow-style: none;
|
|
scrollbar-width: none;
|
|
|
|
background: black;
|
|
}
|
|
|
|
p, a, li {
|
|
font-family: Arial, sans-serif;
|
|
color: #FFF;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: GentiumPlus, serif;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
display: none;
|
|
} |