diff options
author | LawnCable <lawncable.tmw2@simonlaux.de> | 2018-06-26 01:28:31 +0200 |
---|---|---|
committer | LawnCable <lawncable.tmw2@simonlaux.de> | 2018-06-26 01:28:31 +0200 |
commit | 0227331ff38716076ea0e6b2bdd6ec76b178b5e6 (patch) | |
tree | c6ee2f14d1e0fdeb04b9e9f5ca24bba1252784bf /assets | |
parent | 73107257b3bc2c29c553be0df36e9d5248bd78c2 (diff) | |
download | electron-0227331ff38716076ea0e6b2bdd6ec76b178b5e6.tar.gz electron-0227331ff38716076ea0e6b2bdd6ec76b178b5e6.tar.bz2 electron-0227331ff38716076ea0e6b2bdd6ec76b178b5e6.tar.xz electron-0227331ff38716076ea0e6b2bdd6ec76b178b5e6.zip |
Online Count Visuals
Diffstat (limited to 'assets')
-rw-r--r-- | assets/index.css | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/assets/index.css b/assets/index.css index 07ef7e5..ce41722 100644 --- a/assets/index.css +++ b/assets/index.css @@ -157,6 +157,38 @@ html, body { .sidebarItem.selected > .title > div { background: linear-gradient(to right,rgba(0,0,0,0),hsla(215, 15%, 28%, 1) 25pt); } +.onlineCounter { + font-family: SourceSansPro; + position: absolute; + margin-top: 5.25pt; + padding: 2pt 4pt; + right: 130pt; + z-index: 30; + background-color: rgba(0,0,0,0.7); + border-radius: 2pt; + color:white; + cursor:default; +} + +.onlineCounter > .playerList { + font-size: 11pt; +} +.onlineCounter > .playerList > .playerItem { + display: block; +} +.onlineCounter > .playerList > .playerItem > svg { + color:lightgrey; + margin-right: 0; +} +.onlineCounter > .playerList > .morePlayers { + font-size: 10pt; + cursor: help; +} + +.onlineCounter > svg { + color:lime; + margin-right: 3pt; +} .sidebarItem.selected > .title { cursor: default; |