From e4454be7ae6cf21d16d6bbd8eeb08369e111456c Mon Sep 17 00:00:00 2001 From: RossTheRoss Date: Mon, 22 Feb 2021 15:20:53 -0600 Subject: aaaaaaaaaaaaa --- csci4131/hw3/style.css | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 csci4131/hw3/style.css (limited to 'csci4131/hw3/style.css') diff --git a/csci4131/hw3/style.css b/csci4131/hw3/style.css new file mode 100644 index 0000000..970ef9b --- /dev/null +++ b/csci4131/hw3/style.css @@ -0,0 +1,69 @@ +/* Global */ +body { + background-color:antiquewhite; +} +.linkTable { + border: 1px solid black; + margin-left: 20px; + background-color: white; + border-collapse: separate; +} +/* Contacts */ +table, th, td { + max-width: 70%; + overflow-x:auto; + border: 1px solid black; + border-collapse: collapse; +} +table { + float:left; + max-width: 50%; +} +tr:nth-child(even) { + background-color:blanchedalmond; +} +tr:nth-child(odd) { + background-color: burlywood; +} +.smol { + max-height: 100%; + width: 6em; +} +.large { + float: right; + max-width:max-content +} +#bigboi { + width: 25em; + height: 15em; + object-fit: cover; +} +#map { + height: 50%; + margin-left: 10%; + margin-right: 10%; + margin-top: 10%; + float: bottom; +} +/* Form */ +.Form { + background-color: whitesmoke; + padding-left: 5%; + max-width: 15%; +} +/* Widgets */ +.grid { + align-content: center; + display: inline-grid; + grid-template-columns: 40% 40%; + grid-template-rows: 30%; + gap: .1em 10%; +} +.griditem { + padding: 10%; +} +iframe { + border: 0px; +} + + -- cgit v1.2.3