mirror of
https://github.com/lexogrine/cs2-react-hud.git
synced 2025-12-10 03:52:48 +01:00
58 lines
1.2 KiB
CSS
58 lines
1.2 KiB
CSS
@import "fonts/montserrat.css";
|
|
@import "fonts/stratum2.css";
|
|
html,
|
|
body,
|
|
#root {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: 'Stratum2', 'Montserrat', 'Roboto', sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
/*background-image: url('./assets/bg.png');/**/
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Louis George Cafe';
|
|
src: local('Louis George Cafe'), url('./fonts/Louis George Cafe.ttf') format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Rounded_Elegance';
|
|
src: local('Rounded_Elegance'), url('./fonts/Rounded_Elegance.ttf') format('truetype');
|
|
}
|
|
|
|
code {
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
|
monospace;
|
|
}
|
|
|
|
.layout {
|
|
width: 100%;
|
|
height: 100%;
|
|
perspective: 500px;
|
|
}
|
|
|
|
:root {
|
|
--main-panel-color: rgba(12, 15, 18, 0.85);
|
|
--sub-panel-color: rgba(0, 0, 0, 0.83);
|
|
--white-dull: rgba(10, 5, 5, 0.25);
|
|
--white-full: rgba(250, 250, 250, 1);
|
|
--white-half: rgba(250, 250, 250, 0.5);
|
|
--color-gray: rgba(191, 191, 191, 1.0);
|
|
--color-moneys: #a7d32e;
|
|
--dev-purple: rgba(200, 0, 255, 1);
|
|
--color-t: #c19511;
|
|
--color-ct: #5788a8;
|
|
--color-new-t: #f0c941;
|
|
--color-new-ct: #5ab8f4;
|
|
--color-bomb: #f22222;
|
|
--color-defuse: #2222f2;
|
|
}
|
|
|
|
|
|
|