diff options
author | David Vazgenovich Shakaryan <dvshakaryan@gmail.com> | 2022-04-22 14:15:24 -0700 |
---|---|---|
committer | David Vazgenovich Shakaryan <dvshakaryan@gmail.com> | 2022-04-22 14:16:06 -0700 |
commit | bd54e83d6e21f9eaab830095663a7ddad4c70c5c (patch) | |
tree | c8d9e95069cfccc5dd0f459f67c47bf21206082d /web/static/style.css | |
parent | 7c6a9224c9ef825c6afd66576ce956d1061911e7 (diff) | |
download | dartboat-bd54e83d6e21f9eaab830095663a7ddad4c70c5c.tar.gz dartboat-bd54e83d6e21f9eaab830095663a7ddad4c70c5c.tar.xz |
more web ui refactoring
Diffstat (limited to 'web/static/style.css')
-rw-r--r-- | web/static/style.css | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/web/static/style.css b/web/static/style.css index e099f86..fe686a2 100644 --- a/web/static/style.css +++ b/web/static/style.css @@ -66,7 +66,7 @@ div#rem-bar { grid-template-columns: repeat(2, 1fr); } -div#user-state, div#boat-state { +div#p1-state, div#p2-state { background-color: #222; font-size: 1.5em; @@ -78,35 +78,35 @@ div#user-state, div#boat-state { align-items: center; } -div#user-state.active, div#boat-state.active { +div#p1-state.active, div#p2-state.active { background-color: #2a390a; } -div#user-rem, div#boat-rem { +div#p1-rem, div#p2-rem { font-size: 3em; font-weight: bold; } -div#user-name, div#boat-name { +div#p1-name, div#p2-name { color: #aaa; } -div#user-sugg, div#boat-sugg { +div#p1-sugg, div#p2-sugg { color: #aaa; font-size: 0.8em; } -div#user-sugg:after, div#boat-sugg:after { +div#p1-sugg:after, div#p2-sugg:after { content: '\200b'; } -div#user-avg, div#boat-avg { +div#p1-avg, div#p2-avg { font-size: 0.8em; align-self: left; width: 100%; } -div#user-avg:before, div#boat-avg:before { +div#p1-avg:before, div#p2-avg:before { content: 'avg: '; } |