mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-23 14:40:50 +01:00
33 lines
789 B
SCSS
33 lines
789 B
SCSS
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;500&display=swap');
|
|
@import '../node_modules/animate.css/animate.css';
|
|
@import './assets/styles';
|
|
|
|
html,
|
|
body {
|
|
font-family: 'Roboto Condensed', sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
user-select: none;
|
|
image-rendering: pixelated;
|
|
image-rendering: -moz-crisp-edges;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
$chatinput-zindex: 80;
|
|
$toolbar-zindex: 70;
|
|
$rightside-zindex: 69;
|
|
$toolbar-memenu-zindex: 60;
|
|
$roomtools-zindex: 50;
|
|
$context-menu-zindex: 40;
|
|
$infostand-zindex: 30;
|
|
$chat-zindex: 20;
|
|
$highscore-zindex: 19;
|
|
|
|
@import './utils/Styles';
|
|
@import './App';
|
|
@import './views/Styles';
|