diff options
author | David Vazgenovich Shakaryan <dvshakaryan@gmail.com> | 2022-04-26 20:33:50 -0700 |
---|---|---|
committer | David Vazgenovich Shakaryan <dvshakaryan@gmail.com> | 2022-04-26 20:33:50 -0700 |
commit | 04be4356884eabd94593501e6ba8fae996e1dfab (patch) | |
tree | d81e5d60d30de2c3473686a4a4dda03f457d3cbe /web/static/style.css | |
parent | c497e291847d3ee37caf246d62a788c997166fe5 (diff) | |
download | dartboat-04be4356884eabd94593501e6ba8fae996e1dfab.tar.gz dartboat-04be4356884eabd94593501e6ba8fae996e1dfab.tar.xz |
web: prevent player info boxes flashing on load
Diffstat (limited to 'web/static/style.css')
-rw-r--r-- | web/static/style.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/web/static/style.css b/web/static/style.css index e22c4ce..7247a6b 100644 --- a/web/static/style.css +++ b/web/static/style.css @@ -107,6 +107,11 @@ div#p1-info.active, div#p2-info.active { background-color: #304010; } +div#p1-info-inner, div #p2-info-inner { + display: contents; + visibility: hidden; +} + div#p1-rem, div#p2-rem { font-size: 3em; font-weight: bold; |