From 6062cfd6b4b3c23819ea0044a5a711445dc79b81 Mon Sep 17 00:00:00 2001 From: Roan Horning Date: Sat, 12 Oct 2024 10:47:29 -0400 Subject: [PATCH] Clean up look of comment form --- public_html/css/hpr.css | 46 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/public_html/css/hpr.css b/public_html/css/hpr.css index e23e890..fac8ea7 100644 --- a/public_html/css/hpr.css +++ b/public_html/css/hpr.css @@ -331,4 +331,50 @@ footer #copyright { margin-right: 0.5rem; } +fieldset > table, +fieldset > table thead, +fieldset > table tbody, +fieldset > table tr, +fieldset > table th, +fieldset > table td, +fieldset > table td input, +fieldset > table td textarea { + display: block; + font-size: 1rem; +} + +fieldset > table { + width: calc(100vw + -16vw + -1rem); + max-width: 100%; +} + +fieldset > table td input, +fieldset > table td textarea { + width: calc(100vw + -16vw + -1.5rem); + max-width: 100%; + border: thin solid #DFDFDF; + margin-bottom: 0.5rem; + padding: 0.5rem; +} + +fieldset > table td select { + margin-bottom: 0.5rem; + padding: 0.25rem; +} + +fieldset > table td input[type="radio"] { + display: initial; + width: initial; + margin-bottom: 0.5rem; +} + +fieldset > input { + background: #4D4D4D; + color: white; + font-weight: 600; + padding: 0.5rem; + border: thin solid #DFDFDF; + border-radius: 0.2rem; +} + }