From 4ed2a36d48b6677d7ddb137e073a985d6391b8b4 Mon Sep 17 00:00:00 2001 From: David Gay Date: Tue, 6 Apr 2021 21:56:44 -0400 Subject: Super-bare-bones pokemon adding and viewing --- app/javascript/stylesheets/core.css | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) (limited to 'app/javascript/stylesheets/core.css') diff --git a/app/javascript/stylesheets/core.css b/app/javascript/stylesheets/core.css index a174cfb..15b234b 100644 --- a/app/javascript/stylesheets/core.css +++ b/app/javascript/stylesheets/core.css @@ -8,3 +8,38 @@ a:hover { p { margin-top: 1rem; } + +label { + @apply mb-2; +} + +input { + @apply border border-black p-1; +} +input:focus { + @apply outline-none border; +} + +button, [type="button"], [type="reset"], [type="submit"] { + @apply py-1 px-2 cursor-pointer; +} +button:hover, [type="button"]:hover, [type="reset"]:hover, [type="submit"]:hover { + @apply bg-gray-300; +} + +button:focus, [type="button"]:focus, [type="reset"]:focus, [type="submit"]:focus { +} + +select { + @apply border border-black p-1; +} +select:focus { + @apply border-gray-700; +} + +textarea { + @apply border border-black p-1; +} +textarea:focus { + @apply border-gray-700; +} -- cgit v1.2.3