diff options
| author | bobzel <zzzman@gmail.com> | 2023-04-17 15:19:13 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-04-17 15:19:13 -0400 |
| commit | 2c154f328d6556d99f21a778c8d78b41de77f5c9 (patch) | |
| tree | 200607bf64a0be390e62121aa023e1f255e2ea12 /views/stylesheets/statsview.css | |
| parent | 3c8cb517c811f94dce1e3d8430e07af316642365 (diff) | |
| parent | 57983d95ceeb364e3e0a282daea13035114ddb3f (diff) | |
Merge branch 'master' into advanced-trails
Diffstat (limited to 'views/stylesheets/statsview.css')
| -rw-r--r-- | views/stylesheets/statsview.css | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/views/stylesheets/statsview.css b/views/stylesheets/statsview.css new file mode 100644 index 000000000..c018bedfc --- /dev/null +++ b/views/stylesheets/statsview.css @@ -0,0 +1,56 @@ +.outermost { + background-color: #251f1f; + display: flex; + flex-direction: row; + height: 98vh; + width: 99vw; + justify-content: center; + position: relative; +} + +.stats-container { + background-color: white; + + padding: 1rem; + width: 80vw; + border-radius: 8px; +} + +.stats-content { + font-size: 1.25em; + +} + +.stats-server-status-container { + display: flex; + flex-direction: row; +} + +.stats-server-status-item { + margin-left: 0.25rem; + padding: 0px 5px; + + border-radius: 3px; + width: 8rem; + text-align: center; +} + +.stats-server-status-0 { + /* not busy */ + border: 3px green solid; +} + +.stats-server-status-1 { + /* busy */ + border: 3px #ffcc00 solid; +} + +.stats-server-status-2 { + /* very busy */ + border: 3px red solid; +} + +.stats-connected-users { + max-height: 70vh; + overflow-y: auto; +}
\ No newline at end of file |
