diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2012-07-31 22:34:08 -0700 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2012-07-31 22:34:08 -0700 |
commit | 2d290b23c402561ef30c1de665895c120dd79483 (patch) | |
tree | 8bde5ebd953f3dd375abe88e61e40571df313b1f /css | |
parent | 628c2e712e39fe85762583fd1ddc12609746fc58 (diff) | |
download | pathery-2d290b23c402561ef30c1de665895c120dd79483.tar.xz |
Everything related to the scoreboard.
New feedback page.
Changed the speed of the pauses on checkpoints during a path animation.
Changed how notifications are recieved.
Diffstat (limited to 'css')
-rw-r--r-- | css/stats.css | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/css/stats.css b/css/stats.css index 8774ea7..8211711 100644 --- a/css/stats.css +++ b/css/stats.css @@ -55,3 +55,47 @@ td, th { -moz-transition:color 0s; } +.leftBtn { + left:0px; +} +.rightBtn { + right:0px; +} +.leftBtn, .rightBtn, rightBtn a { + text-align:center; + text-decoration: none; + position:absolute; + top:65px; + width:50px; + background-color: #262631; + font-size:200%; + height:290px; + line-height:270px; + border-radius: 5px; + border: 1px solid #333; +} +.scoreActive:hover { + background-color: #343c57; +} +.scoreDisabled { + background-color: #222223; +} +.scoreContainer2 { + width:390px; + height:500px; + margin-left:auto; + margin-right:auto; + position:relative; +} +.scoreMedal { + text-align:right; + vertical-align:bottom; + background-repeat:no-repeat; +} +.scoreGold { + background-image: url(../images/MedalGoldCAb.png); +} +.scoreSilver { + background-image: url(../images/MedalSilverCAb.png); +} + |