diff options
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 { } + |