diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2013-02-09 14:16:37 -0800 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2013-02-09 14:16:37 -0800 |
commit | 9462f29413dc1320b3899f7fbbbb75be64fbaede (patch) | |
tree | 0f534c8ef712d519aea7ed6e919f0277af654088 /css/stats.css | |
parent | 357e548fef7f73338e8c3e7415f2407c7dbb7ac7 (diff) | |
download | pathery-9462f29413dc1320b3899f7fbbbb75be64fbaede.tar.xz |
Huge changes; started deprecation of PHP's displayMap()
New JS function 'mapAsHTML(mapAsObject)'
getScores() will now return solutions if the map has expired.
Homepage now uses mapAsHTML.
Removed some padding on scoreboard.
scoresFormatPage() supports solutions if available. (This can be row-specific)
And tons of CSS - deprecating old CSS.
Diffstat (limited to 'css/stats.css')
-rw-r--r-- | css/stats.css | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/css/stats.css b/css/stats.css index d028d0f..a0830da 100644 --- a/css/stats.css +++ b/css/stats.css @@ -176,6 +176,33 @@ td, th { } +.scoreRow1 { + background-color:#262631; +} +.scoreRow2 { + background-color:#20202a; +} +.scoreRowSelf { + background-color: #343c57; +} + +.scoreRowSolutionAvailable { + /* Temporary adjust for font changes */ + font-size:105%; + transition:background .5s; + -webkit-transition:background .5s; + -o-transition:color .5s; + -moz-transition:color .5s; + cursor: default; +} +.scoreRowSolutionAvailable:hover { + background-color: #535D85; + transition:background 0s; + -webkit-transition:background 0s; + -o-transition:color 0s; + -moz-transition:color 0s; + cursor: pointer; +} .scoreMedal { text-align:right; } |