mirror of
https://github.com/Qortal/q-trade.git
synced 2025-06-19 20:51:22 +00:00
49 lines
851 B
SCSS
49 lines
851 B
SCSS
|
|
@font-face {
|
|
font-family: "Fredoka One";
|
|
src: url("./assets/fonts/Fredoka One.ttf") format("truetype");
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Fira Sans";
|
|
src: url("./assets/fonts/Fira Sans.ttf") format("truetype");
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Inter";
|
|
src: url("./assets/fonts/Inter.ttf") format("truetype");
|
|
font-display: swap;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
|
|
"Droid Sans", "Helvetica Neue", sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
background-color: #27282c;
|
|
}
|
|
|
|
|
|
#root {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
code {
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
|
|
monospace;
|
|
}
|