2021-04-28 07:25:48 +02:00
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Condensed:wght@300;400;500&display=swap');
|
2021-04-21 05:36:39 +02:00
|
|
|
@import '../node_modules/animate.css/animate.css';
|
2021-04-14 21:12:16 +02:00
|
|
|
@import './assets/styles';
|
2021-04-14 20:24:24 +02:00
|
|
|
|
|
|
|
html,
|
|
|
|
body {
|
2021-04-28 07:25:48 +02:00
|
|
|
font-family: 'Ubuntu Condensed', sans-serif;
|
2021-04-14 20:24:24 +02:00
|
|
|
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;
|
|
|
|
}
|
2021-04-14 21:12:16 +02:00
|
|
|
|
|
|
|
$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;
|
|
|
|
|
2021-04-30 05:29:35 +02:00
|
|
|
$grid-bg-color: #CDD3D9;
|
|
|
|
$grid-border-color: $muted;
|
|
|
|
$grid-active-bg-color: #ECECEC;
|
|
|
|
$grid-active-border-color: $white;
|
|
|
|
|
2021-04-19 18:34:31 +02:00
|
|
|
@import './utils/Styles';
|
|
|
|
@import './App';
|
2021-04-28 07:25:48 +02:00
|
|
|
@import './hooks/Styles';
|
2021-05-10 19:11:16 +02:00
|
|
|
@import './layout/Layout';
|
2021-04-19 18:34:31 +02:00
|
|
|
@import './views/Styles';
|