From 3886a5325d029e552501cff32a22769ef1888a06 Mon Sep 17 00:00:00 2001 From: David Gay Date: Sun, 25 Apr 2021 12:44:03 -0400 Subject: Layout and styles --- app/javascript/stylesheets/core.css | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 app/javascript/stylesheets/core.css (limited to 'app/javascript/stylesheets/core.css') 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; +} -- cgit v1.2.3