diff options
author | Frederick Muriuki Muriithi | 2022-07-07 13:09:29 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-07-07 13:09:29 +0300 |
commit | fdec747a0a33a96aefb3cc8d2e8717f13bea6c20 (patch) | |
tree | 4fcb1b3d0e532e286fecc5a646ee13ffb9db6533 /qc_app/static/css | |
parent | b367d04c57b21c0a9e2da22e8b20404de076768d (diff) | |
download | gn-uploader-fdec747a0a33a96aefb3cc8d2e8717f13bea6c20.tar.gz |
Rework styling for form elements
Diffstat (limited to 'qc_app/static/css')
-rw-r--r-- | qc_app/static/css/styles.css | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/qc_app/static/css/styles.css b/qc_app/static/css/styles.css index 922924c..d27952a 100644 --- a/qc_app/static/css/styles.css +++ b/qc_app/static/css/styles.css @@ -60,6 +60,7 @@ fieldset { } table { + margin-left: 1em; border-collapse: collapse; border: 1px solid; border-color: #336699; @@ -106,15 +107,15 @@ table th,td { fieldset { border-style: none; display: grid; - grid-template-columns: 5em 1fr; + grid-template-columns: 1fr 9fr; column-gap: 5px; } -label { +.form-col-1 { grid-column: 1 / 2; } -fieldset input,select,button { +.form-col-2 { grid-column: 2 / 3; width: 20%; } |