diff options
author | RossTheRoss <mstrapp@protonmail.com> | 2021-02-22 15:20:53 -0600 |
---|---|---|
committer | RossTheRoss <mstrapp@protonmail.com> | 2021-02-22 15:20:53 -0600 |
commit | e4454be7ae6cf21d16d6bbd8eeb08369e111456c (patch) | |
tree | 703f794f83fe3cb0812d62b7d8b033146d730f19 /csci4131/hw3/style.css | |
parent | aaaaaaaaaaaaaaaaaaaa (diff) | |
download | homework-e4454be7ae6cf21d16d6bbd8eeb08369e111456c.tar homework-e4454be7ae6cf21d16d6bbd8eeb08369e111456c.tar.gz homework-e4454be7ae6cf21d16d6bbd8eeb08369e111456c.tar.bz2 homework-e4454be7ae6cf21d16d6bbd8eeb08369e111456c.tar.lz homework-e4454be7ae6cf21d16d6bbd8eeb08369e111456c.tar.xz homework-e4454be7ae6cf21d16d6bbd8eeb08369e111456c.tar.zst homework-e4454be7ae6cf21d16d6bbd8eeb08369e111456c.zip |
aaaaaaaaaaaaa
Diffstat (limited to '')
-rw-r--r-- | csci4131/hw3/style.css | 69 |
1 files changed, 69 insertions, 0 deletions
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; +} + + |