diff options
Diffstat (limited to 'css/stats.css')
-rw-r--r-- | css/stats.css | 67 |
1 files changed, 58 insertions, 9 deletions
diff --git a/css/stats.css b/css/stats.css index 166573d..e63be80 100644 --- a/css/stats.css +++ b/css/stats.css @@ -1,3 +1,9 @@ +#displayDate +{ + font-size: 105%; + text-align: center; + padding: 7px 0px; +} .col1 { float: left; margin-right: 8px; @@ -32,7 +38,7 @@ .mapNavCon { height:135px; - width:900px; + width:960px; margin-bottom:10px; } .mapNavLeft { @@ -48,23 +54,31 @@ border-radius: 0px 25px 6px 0px; vertical-align: middle; text-align:center; - line-height: 130px; + line-height: 126px; text-decoration: none; background-color: #262631; font-size:200%; border-radius: 5px; border: 1px solid #333; + cursor: auto; +} +.mapNavActive { + cursor: pointer; } .mapNavActive:hover { background-color: #343c57; } +.mapNavActive:active { + background-color: #555588; +} .mapNavDisabled { background-color: #222223; + cursor: default; } .mapNavCenter { float:left; height:135px; - width:780px; + width:840px; margin-left:20px; margin-right:20px; background-color:#222223; @@ -74,18 +88,30 @@ overflow-y:hidden; } #mapNavigation { - margin-left: 45px; + margin-left: 75px; padding:1px; white-space: nowrap; overflow-x:hidden; overflow-y:hidden; } +.scoreCol { + min-height:500px; + min-width:277px; + float:left; +} +.mapCol { + min-height:500px; + float:left; + margin-left: 7px; + max-width:500px; +} + .mapThumbnail { display:inline-block; padding: 8px; background-color:#334; - margin: 3px; + margin: 4px; border-radius:10px; cursor:pointer; padding-top: 0px; @@ -94,11 +120,31 @@ background-color:#445; } -.mapThumbnail.current { - background-color:#557; +.mapThumbnail.selectedMap { + border-color: #CC3333; + border-style: solid; + /* Make sure border-width + margin == .mapThumbnail margin */ + border-width: 3px; + margin: 1px; +} +.mapThumbnail.currentlyRunning { + background-color: #373737; + color: #CCCCCC; +} +.mapThumbnail.currentlyRunning:hover { + background-color:#474747; +} +#currentlyRunningMessage { + color: #FF2818; + display: none; + text-align: center; + padding-bottom: 12px; } -.mapThumbnail.current:hover { - background-color:#668; + +#currentlyRunningMessage span { + background-color: #1A1A1A; + border-radius: 8px 8px 8px 8px; + padding: 3px 10px; } @@ -168,6 +214,9 @@ td, th { .scoreActive:hover { background-color: #343c57; } +.scoreActive:active { + background-color: #555588; +} .scoreDisabled { background-color: #222223; } |