aboutsummaryrefslogtreecommitdiff
path: root/src/static/styles.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/static/styles.css')
-rw-r--r--src/static/styles.css38
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