basic styling

This commit is contained in:
VividTruthKeeper 2022-02-02 19:03:04 +05:00
parent 24ebbc2ef8
commit ad02b7fca0
4 changed files with 29 additions and 0 deletions

8
src/styles/_global.scss Normal file
View File

@ -0,0 +1,8 @@
ul {
list-style: none;
}
a {
text-decoration: none;
color: $text-black;
}

View File

@ -0,0 +1,9 @@
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
html {
font-size: 62.5%;
}

View File

@ -0,0 +1,5 @@
$base-green: rgba(1, 129, 94, 1);
$text-black: rgba(58, 58, 58, 1);
$base-grey: rgba(242, 242, 242, 1);

7
src/styles/style.scss Normal file
View File

@ -0,0 +1,7 @@
// IMPORT FONTS
@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
// IMPORT PARTIALS
@import "./variables";
@import "./nullifier";
@import "./global";