From 9371e834c797ab9d04d37cecaa814d235e118ea4 Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Tue, 21 Sep 2010 17:21:07 -0400 Subject: [PATCH] Prettied up card views --- media/mtg.css | 16 +++++++++++++++- templates/analyzer/card_list.html | 2 +- templates/cards/view.html | 6 ++++++ 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/media/mtg.css b/media/mtg.css index 1ff8ad3..63ecea1 100644 --- a/media/mtg.css +++ b/media/mtg.css @@ -49,6 +49,8 @@ header { border: 1px solid gray; background-color: #999; padding: 3px; + font-size: 0.75em; + width: 25em; } .mana.R, .card.R { background-color: red; } .mana.G, .card.G { background-color: green; } @@ -66,6 +68,7 @@ header { .card .info .type { font-weight: bold; float: left; + text-shadow: 2px 2px 2px #999; } .card .title .cost, .card .info .rarity { @@ -77,13 +80,24 @@ header { .card .rarity.R { color: darkgoldenrod; } .card .rarity.M { color: red; } .card .picture { - height: 5em; + height: 12em; + width: 24em; background-color: #ccc; margin: 5px; } .card .text { + min-height: 12em; margin-top: 5px; border: 1px solid gray; background-color: white; padding: 3px; } +.card .numbers { + text-align: right; + margin-top: 5px; + background-color: white; + border: 1px solid gray; + height: 1em; + padding: 3px; + text-shadow: 2px 2px 2px #999; +} diff --git a/templates/analyzer/card_list.html b/templates/analyzer/card_list.html index 0c1c0da..40f470d 100644 --- a/templates/analyzer/card_list.html +++ b/templates/analyzer/card_list.html @@ -3,7 +3,7 @@

Cards

{% endblock %} diff --git a/templates/cards/view.html b/templates/cards/view.html index 492de4b..d48d927 100644 --- a/templates/cards/view.html +++ b/templates/cards/view.html @@ -32,5 +32,11 @@ {% endfor %} + {% if card.toughness > '0' %} +
+ {{ card.power }} / + {{ card.toughness }} +
+ {% endif %} {% endblock %}