diff options
author | RossTheRoss <mstrapp@protonmail.com> | 2021-02-12 16:50:26 -0600 |
---|---|---|
committer | RossTheRoss <mstrapp@protonmail.com> | 2021-02-12 16:50:26 -0600 |
commit | 76e433c7225d5e0394c449bed000b2a44e9b6f64 (patch) | |
tree | 899fd2d9905e356491cd5647cc3fb014528d97e3 /csci4131/hw2/strap012/style.css | |
parent | H (diff) | |
download | homework-76e433c7225d5e0394c449bed000b2a44e9b6f64.tar homework-76e433c7225d5e0394c449bed000b2a44e9b6f64.tar.gz homework-76e433c7225d5e0394c449bed000b2a44e9b6f64.tar.bz2 homework-76e433c7225d5e0394c449bed000b2a44e9b6f64.tar.lz homework-76e433c7225d5e0394c449bed000b2a44e9b6f64.tar.xz homework-76e433c7225d5e0394c449bed000b2a44e9b6f64.tar.zst homework-76e433c7225d5e0394c449bed000b2a44e9b6f64.zip |
Finish Web
Diffstat (limited to '')
-rw-r--r-- | csci4131/hw2/strap012/style.css | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/csci4131/hw2/strap012/style.css b/csci4131/hw2/strap012/style.css index 8b92eaa..1f03947 100644 --- a/csci4131/hw2/strap012/style.css +++ b/csci4131/hw2/strap012/style.css @@ -1,11 +1,17 @@ +body { + background-color:antiquewhite; +} + .linkTable { border: 1px solid black; margin-left: 20px; background-color: white; + border-collapse: separate; } -label { - color: black; +.smol { + max-height: 100%; + width: 6em; } #bigboi { @@ -14,20 +20,22 @@ label { max-width: 28%; } -.smol { - max-height: 100%; - width: 6em; +.Form { + background-color: whitesmoke; + padding-left: 5%; + max-width: 15%; } .grid { + align-content: center; display: inline-grid; - grid-template-columns: auto auto auto; - grid-gap: 2%; + grid-template-columns: 40% 40%; + grid-template-rows: 30%; + gap: .1em 10%; } .griditem { - align-content: center; - padding: 1%; + padding: 10%; } table, th, td { @@ -50,6 +58,4 @@ iframe { border: 0px; } -body { - background-color:antiquewhite; -} + |