basic styling
This commit is contained in:
parent
24ebbc2ef8
commit
ad02b7fca0
|
|
@ -0,0 +1,8 @@
|
|||
ul {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: $text-black;
|
||||
}
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
* {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html {
|
||||
font-size: 62.5%;
|
||||
}
|
||||
|
|
@ -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);
|
||||
|
|
@ -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";
|
||||
Loading…
Reference in New Issue