summaryrefslogtreecommitdiff
path: root/resources/sass
diff options
context:
space:
mode:
authorhorus2020-02-23 23:11:03 +0100
committerhorus2020-02-23 23:11:03 +0100
commit2cd1589d6ae7095770e8c5dda10b138861d70501 (patch)
tree7afe6ce2f5f435e375a56c0dd627bd1716a1dbe9 /resources/sass
downloadsenpai-2cd1589d6ae7095770e8c5dda10b138861d70501.tar.gz
Initial commit. Calendar is working.
Diffstat (limited to 'resources/sass')
-rw-r--r--resources/sass/_variables.scss19
-rw-r--r--resources/sass/app.scss13
2 files changed, 32 insertions, 0 deletions
diff --git a/resources/sass/_variables.scss b/resources/sass/_variables.scss
new file mode 100644
index 0000000..0407ab5
--- /dev/null
+++ b/resources/sass/_variables.scss
@@ -0,0 +1,19 @@
+// Body
+$body-bg: #f8fafc;
+
+// Typography
+$font-family-sans-serif: 'Nunito', sans-serif;
+$font-size-base: 0.9rem;
+$line-height-base: 1.6;
+
+// Colors
+$blue: #3490dc;
+$indigo: #6574cd;
+$purple: #9561e2;
+$pink: #f66d9b;
+$red: #e3342f;
+$orange: #f6993f;
+$yellow: #ffed4a;
+$green: #38c172;
+$teal: #4dc0b5;
+$cyan: #6cb2eb;
diff --git a/resources/sass/app.scss b/resources/sass/app.scss
new file mode 100644
index 0000000..3f1850e
--- /dev/null
+++ b/resources/sass/app.scss
@@ -0,0 +1,13 @@
+// Fonts
+@import url('https://fonts.googleapis.com/css?family=Nunito');
+
+// Variables
+@import 'variables';
+
+// Bootstrap
+@import '~bootstrap/scss/bootstrap';
+
+.navbar-laravel {
+ background-color: #fff;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
+}