First version

This commit is contained in:
2024-03-07 00:17:34 +03:00
parent 0970591d02
commit 1d33cfbf09
16 changed files with 458 additions and 345 deletions

View File

@@ -1 +1,27 @@
/* You can add global styles to this file, and also import other style files */
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--white: #dadada;
--black: #303030;
--red: #ff0000;
--green: #00ff00;
--blue: #0000ff;
--yellow: #ffff00;
}
@font-face {
font-family: "Montserrat";
src: url("./assets/fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Montserrat, sans-serif;
font-optical-sizing: auto;
font-weight: 800;
font-style: normal;
}