summaryrefslogtreecommitdiff
path: root/app/javascript/stylesheets
diff options
context:
space:
mode:
Diffstat (limited to 'app/javascript/stylesheets')
-rw-r--r--app/javascript/stylesheets/core.css35
1 files changed, 35 insertions, 0 deletions
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;
+}