diff options
author | RossTheRoss <mstrapp@protonmail.com> | 2021-02-25 10:15:00 -0600 |
---|---|---|
committer | RossTheRoss <mstrapp@protonmail.com> | 2021-02-25 10:15:00 -0600 |
commit | 510f8d68c91414cea5f6e8fd360616f857df1db9 (patch) | |
tree | e8834d1d85ec351292141458c6ed8b762107c2cd /csci4131/hw3/style.css | |
parent | aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa... (diff) | |
download | homework-510f8d68c91414cea5f6e8fd360616f857df1db9.tar homework-510f8d68c91414cea5f6e8fd360616f857df1db9.tar.gz homework-510f8d68c91414cea5f6e8fd360616f857df1db9.tar.bz2 homework-510f8d68c91414cea5f6e8fd360616f857df1db9.tar.lz homework-510f8d68c91414cea5f6e8fd360616f857df1db9.tar.xz homework-510f8d68c91414cea5f6e8fd360616f857df1db9.tar.zst homework-510f8d68c91414cea5f6e8fd360616f857df1db9.zip |
e
Diffstat (limited to 'csci4131/hw3/style.css')
-rw-r--r-- | csci4131/hw3/style.css | 34 |
1 files changed, 21 insertions, 13 deletions
diff --git a/csci4131/hw3/style.css b/csci4131/hw3/style.css index 2be7a2b..3ab6b95 100644 --- a/csci4131/hw3/style.css +++ b/csci4131/hw3/style.css @@ -49,32 +49,38 @@ tr:nth-child(odd) { @keyframes rotate{ 100%{ transform:rotate(1turn) } } -#map { - clear: both; +#map, #formap { + /* clear: both; */ float: left; padding-top: 30%; margin-top: 1em; margin-left: .2em; - width: 60%; + width: 50%; height: 30%; max-height: 40%; } +#formap { + float: right; +} +#transitList { + float: left; + width: 20%; + color: white; +} .id { text-align: center; } -#GooglyMap { - overflow: hidden; - display: inline-block; - position: absolute; -} -#SearchPoints { - margin-bottom: 80em; +#googlymap { + width: 100%; + overflow: auto; + /* display: flex; */ + /* position: absolute; */ } + .inputBox { - float: right; - clear: both; + float: left; border: 1px solid black; - width: 32%; + width: 25%; } .inputBox:nth-child(even) { background-color:blanchedalmond; @@ -88,6 +94,7 @@ tr:nth-child(odd) { /* Form */ .Form { + float: left; background-color: whitesmoke; padding-left: 5%; max-width: 15%; @@ -108,3 +115,4 @@ iframe { } + |