aboutsummaryrefslogtreecommitdiff
path: root/src/styles
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-03-27 21:24:54 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-03-27 21:24:54 +0530
commitaef52169e3f0f9bde0e5f2dd21cbb316eaa34136 (patch)
tree0dde319375996da517814493defef1273400ad40 /src/styles
parent10f7749d52df9a70e15a33cd76ba441f4b81a1a5 (diff)
laid out some very basic components, the tile component still needs to be worked upon
Diffstat (limited to 'src/styles')
-rw-r--r--src/styles/_theme.scss (renamed from src/styles/_themes.sass)0
-rw-r--r--src/styles/_view.scss4
-rw-r--r--src/styles/global.css4
-rw-r--r--src/styles/global.scss2
4 files changed, 8 insertions, 2 deletions
diff --git a/src/styles/_themes.sass b/src/styles/_theme.scss
index 66a16fc..66a16fc 100644
--- a/src/styles/_themes.sass
+++ b/src/styles/_theme.scss
diff --git a/src/styles/_view.scss b/src/styles/_view.scss
new file mode 100644
index 0000000..0ccc22a
--- /dev/null
+++ b/src/styles/_view.scss
@@ -0,0 +1,4 @@
+.view {
+ width: 80%;
+ margin: 2rem auto;
+}
diff --git a/src/styles/global.css b/src/styles/global.css
index 099c3de..3049801 100644
--- a/src/styles/global.css
+++ b/src/styles/global.css
@@ -1,8 +1,10 @@
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap");
+/* Experimental color scheme */
* {
font-family: "Quicksand", sans-serif; }
body {
- color: #FFFFFF;
+ background-color: #FFFFFF;
+ color: #000000;
padding: 0;
margin: 0; }
diff --git a/src/styles/global.scss b/src/styles/global.scss
index 703efb8..f893b61 100644
--- a/src/styles/global.scss
+++ b/src/styles/global.scss
@@ -1,4 +1,4 @@
-@import "themes";
+@import "theme";
* {
font-family: $defFont