summaryrefslogtreecommitdiff
path: root/app/javascript/stylesheets/core.css
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2021-04-25 12:44:03 -0400
committerDavid Gay <david@davidgay.org>2021-04-25 12:44:03 -0400
commit3886a5325d029e552501cff32a22769ef1888a06 (patch)
tree2b00865d463f2323c3c8ca9211fcb0495dc46058 /app/javascript/stylesheets/core.css
parent62a3d19900247fe26d46f140a568b6ce5996b0f4 (diff)
Layout and styles
Diffstat (limited to 'app/javascript/stylesheets/core.css')
-rw-r--r--app/javascript/stylesheets/core.css33
1 files changed, 33 insertions, 0 deletions
diff --git a/app/javascript/stylesheets/core.css b/app/javascript/stylesheets/core.css
new file mode 100644
index 0000000..1334269
--- /dev/null
+++ b/app/javascript/stylesheets/core.css
@@ -0,0 +1,33 @@
+.table-header-padded {
+ @apply px-2 py-1;
+}
+
+.table-cell-padded {
+ @apply border px-2 py-1;
+}
+
+.main-wrapper {
+}
+
+.game-container {
+ max-width: 1800px;
+}
+
+.game-container-box {
+ @apply p-2 border-2 border-gray-800 rounded;
+}
+
+.header-title {
+ font-family: "Montaga", "Open Sans", sans-serif;
+}
+
+.side-box {
+ position: -webkit-sticky;
+ position: sticky;
+ top: 8px;
+}
+
+#look_output {
+ @apply min-w-full my-2 overflow-auto border-2 border-gray-800 rounded;
+ height: 75px;
+}