diff options
author | Mark Powers <markppowers0@gmail.com> | 2020-10-19 21:55:02 -0500 |
---|---|---|
committer | Mark Powers <markppowers0@gmail.com> | 2020-10-19 21:55:02 -0500 |
commit | e0a4d1bb1339e80775aa37efaf8cac314278f8e9 (patch) | |
tree | 91c09487df6793e4faaed4c0a883cba2ae199d20 /src/static/styles.css | |
parent | ad24db7fe9fca72c38caaa40d2ada8cbeb04994d (diff) |
Add navigation template and logout
Diffstat (limited to 'src/static/styles.css')
-rw-r--r-- | src/static/styles.css | 38 |
1 files changed, 31 insertions, 7 deletions
diff --git a/src/static/styles.css b/src/static/styles.css index 4eedd0b..fb91d3b 100644 --- a/src/static/styles.css +++ b/src/static/styles.css @@ -7,11 +7,6 @@ table { max-width: 100%; } -li { - cursor: pointer; - text-decoration: underline; -} - tr:nth-child(2n+1) { background-color: lightgray; } @@ -43,17 +38,43 @@ pre { } .net-negative { - /* color: red; */ background-color: lightcoral; } .net-positive { - /* color: green; */ background-color: lightgreen } + +.summary { + display: flex; + flex-wrap: wrap; + flex-direction: row; +} .summary-panel { float:left; padding-right: 2em; } + +body { + display: flex; + flex-wrap: wrap; +} + +.navigation { + flex-grow: 1; + max-width: 100px; + border-left: 1px solid #333; + padding-left: 10px; +} + +.main { + flex-grow: 3; + max-width: 1000px; +} + +p, li { + max-width: 70ch; +} + @media only screen and (max-width: 600px) { .newItem td { display:block; @@ -69,4 +90,7 @@ pre { display: block; width: 100%; } + .navigation { + border-left: none; + } }
\ No newline at end of file |