aboutsummaryrefslogtreecommitdiff
path: root/src/App.css
diff options
context:
space:
mode:
authorGalen Guyer <galen@galenguyer.com>2022-07-11 17:10:23 -0400
committerGalen Guyer <galen@galenguyer.com>2022-07-11 17:10:23 -0400
commit935ef7d2f76cca7bc1f9840dc357de85f93a1ec2 (patch)
treecb8ee298a747d6084107266e5d2882e60a6b5daa /src/App.css
parent3694bf061ecfe0f6733a0cb9028d044dfc8cf9d2 (diff)
Update for new dashboard frontend
Diffstat (limited to 'src/App.css')
-rw-r--r--src/App.css49
1 files changed, 39 insertions, 10 deletions
diff --git a/src/App.css b/src/App.css
index 78106d4..f4846a6 100644
--- a/src/App.css
+++ b/src/App.css
@@ -1,15 +1,44 @@
.App {
text-align: center;
- padding-bottom: 2rem;
- padding-top: 1rem;
- width: 90%;
- margin-left: auto;
- margin-right: auto;
-}
+ margin: auto;
+ max-width: 90vw;
-.Section {
+ position: relative;
+ min-height: 100vh;
display: flex;
- justify-content: center;
- margin-left: auto;
- margin-right: auto;
+ flex-direction: column;
+}
+
+.App h1 {
+ font-size: 2.4em;
+ margin: 18px 0px 8px 0px;
+}
+.Updated .Latest {
+ font-size: 1.3em;
+ margin: 0px;
+}
+.Updated .Prior {
+ margin: 6px;
+ color: #666;
+}
+
+.App a {
+ text-decoration: none;
+ color: #000;
+}
+
+.BlueLink {
+ color: #008 !important;
+}
+
+footer {
+ margin-top: auto;
+ margin-bottom: 20px;
+}
+
+@media screen and (max-width: 600px) {
+ .App {
+ margin: auto;
+ max-width: 95vw;
+ }
}