diff options
author | BlueRaja <BlueRaja.admin@gmail.com> | 2013-01-13 20:36:11 -0600 |
---|---|---|
committer | BlueRaja <BlueRaja.admin@gmail.com> | 2013-01-13 20:36:11 -0600 |
commit | 532faa4d5cc5b20fba8422c87b0aac846874af43 (patch) | |
tree | e243a1269e84c2520076cd0dc9845d004af1b397 /css/challenge.css | |
parent | d2a9bf56c2625b71016f1ce879aaf10ade57754a (diff) | |
download | pathery-532faa4d5cc5b20fba8422c87b0aac846874af43.tar.xz |
Replaced bullet-points with challenge images on challenge page
Diffstat (limited to 'css/challenge.css')
-rw-r--r-- | css/challenge.css | 48 |
1 files changed, 33 insertions, 15 deletions
diff --git a/css/challenge.css b/css/challenge.css index 0380f4f..787679f 100644 --- a/css/challenge.css +++ b/css/challenge.css @@ -5,11 +5,30 @@ font-weight: bold; } #challenge_wrapper #challenges_listing { } -.challenge_complete { - color:#008000; +.challenge_ulist +{ + list-style-type:none; + padding-left:0px; + margin-left:0px; +} +.challenge_ulist li +{ + /* Replace the bullet-points with challenge complete/incomplete images */ + background-position: 0 5px; + background-repeat: no-repeat; + background-size: 28px 28px; + padding-left: 30px; + padding-top: 6px; +} +.challenge_ulist .challenge_complete +{ + background-image:url('../images/challenge_complete.png'); font-weight: normal; + color:#008000; } -.challenge_incomplete { +.challenge_ulist .challenge_incomplete +{ + background-image:url('../images/challenge_incomplete.png'); font-weight: bold; color:#DD1111; } @@ -21,18 +40,6 @@ display: none; } -.challengelist_map { - float:left; - padding: 15px; - background-color:#333; - margin: 20px; - border-radius:10px; - cursor:pointer; -} -.challengelist_map:hover { - background-color:#444; -} - /** Challenge listing page **/ #challengelist_wrapper #challengelist {} #challengelist_wrapper #challengelist .challengelist_tier { @@ -54,4 +61,15 @@ height: 32px; background-image: url("../images/challenge_incomplete.png"); float: right; +} +.challengelist_map { + float:left; + padding: 15px; + background-color:#333; + margin: 20px; + border-radius:10px; + cursor:pointer; +} +.challengelist_map:hover { + background-color:#444; }
\ No newline at end of file |