aboutsummaryrefslogtreecommitdiff
path: root/src/index.css
diff options
context:
space:
mode:
authorJeremyJamesL <jeremyluscombe@gmail.com>2024-12-04 09:09:11 +0000
committerJeremyJamesL <jeremyluscombe@gmail.com>2024-12-04 09:09:11 +0000
commit96c52a6d58e10f3fae2a69ab00ed219e9f2d0059 (patch)
treef4d519dfd4ee0ab38e7d875b05edb671c71b0fa9 /src/index.css
first commit
Diffstat (limited to 'src/index.css')
-rw-r--r--src/index.css38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/index.css b/src/index.css
new file mode 100644
index 0000000..c5ad895
--- /dev/null
+++ b/src/index.css
@@ -0,0 +1,38 @@
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
+
+/* GENERAL
+// ------------------------- */
+* {
+ font-family: "Helvetica Neue", Helvetica, sans-serif;
+}
+
+#map {
+ height: 100%;
+ height: 800px;
+ width: 100%;
+}
+
+.gm-style-mtc-bbw {
+ display: none;
+}
+
+html,
+body {
+ height: 100%;
+ margin: 0;
+ padding: 0;
+}
+
+body {
+ color: #646c78;
+ background-color: #222e3e;
+}
+
+.container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding-left: 15px;
+ padding-right: 15px;
+}