diff options
author | RossTheRoss <mstrapp@protonmail.com> | 2021-02-10 16:05:37 -0600 |
---|---|---|
committer | RossTheRoss <mstrapp@protonmail.com> | 2021-02-10 16:05:37 -0600 |
commit | 40b7e7f9817b13c8bf644a64da9c40c6e140bc20 (patch) | |
tree | 76e093677e13f0322247733c168cf910c598f8ad /csci4131/hw2/strap012/style.css | |
parent | a (diff) | |
download | homework-40b7e7f9817b13c8bf644a64da9c40c6e140bc20.tar homework-40b7e7f9817b13c8bf644a64da9c40c6e140bc20.tar.gz homework-40b7e7f9817b13c8bf644a64da9c40c6e140bc20.tar.bz2 homework-40b7e7f9817b13c8bf644a64da9c40c6e140bc20.tar.lz homework-40b7e7f9817b13c8bf644a64da9c40c6e140bc20.tar.xz homework-40b7e7f9817b13c8bf644a64da9c40c6e140bc20.tar.zst homework-40b7e7f9817b13c8bf644a64da9c40c6e140bc20.zip |
i hate everything
Diffstat (limited to '')
-rw-r--r-- | csci4131/hw2/strap012/style.css | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/csci4131/hw2/strap012/style.css b/csci4131/hw2/strap012/style.css new file mode 100644 index 0000000..be19954 --- /dev/null +++ b/csci4131/hw2/strap012/style.css @@ -0,0 +1,49 @@ +.linkTable { + border: 1px solid black; + margin-left: 20px; + background-color: white; +} +#bigboi { + float: right; + height: auto; + max-width: 28%; +} + +.smol { + max-height: 100%; + width: 6em; +} + +.grid { + display: grid; + grid-template-columns: auto auto auto; + align-content: center; +} + +.griditem { + padding: .3em; +} + +table, th, td { + max-width: 90%; + overflow-x:auto; + border: 1px solid black; + border-collapse: collapse; +} +table { + float:left; + max-width: 70%; +} +tr:nth-child(even) { + background-color:blanchedalmond; +} +tr:nth-child(odd) { + background-color: burlywood; +} +iframe { + border: 0px; +} + +body { + background-color:antiquewhite; +}
\ No newline at end of file |