diff options
author | Mark Powers <markppowers0@gmail.com> | 2020-10-09 22:42:56 -0500 |
---|---|---|
committer | Mark Powers <markppowers0@gmail.com> | 2020-10-09 22:42:56 -0500 |
commit | 0345f90a7baceae507f417abe30736cc95cdc0cf (patch) | |
tree | 8c9617f0a039f2c1cebe33d3ad826bb01a15b482 /src/static/styles.css | |
parent | 35b6d276bdeabdf7bf5eee59d85dfefee7531fce (diff) |
Begin refactor to use server side templates
Diffstat (limited to 'src/static/styles.css')
-rw-r--r-- | src/static/styles.css | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/src/static/styles.css b/src/static/styles.css new file mode 100644 index 0000000..4eedd0b --- /dev/null +++ b/src/static/styles.css @@ -0,0 +1,72 @@ +td { + border: 1px solid lightgrey; + min-width: 3em; +} + +table { + max-width: 100%; +} + +li { + cursor: pointer; + text-decoration: underline; +} + +tr:nth-child(2n+1) { + background-color: lightgray; +} +tr { + width: 100%; +} + +.bold { + font-weight: bold; +} + +#data { + width: 100%; +} + +.border { + border: 1px solid lightgrey; +} + +textarea { + border-radius: 4px; + width: 60%; + height: 10em; + display: block; +} + +pre { + white-space: pre-line; +} + +.net-negative { + /* color: red; */ + background-color: lightcoral; +} +.net-positive { + /* color: green; */ + background-color: lightgreen +} +.summary-panel { + float:left; + padding-right: 2em; +} +@media only screen and (max-width: 600px) { + .newItem td { + display:block; + } + .table-index { + display: none; + } + button { + font-size: 32px; + } + input { + font-size: 32px; + display: block; + width: 100%; + } +}
\ No newline at end of file |