diff --git a/tlapbot/static/style.css b/tlapbot/static/style.css index 3d5068f..0d7c5e0 100644 --- a/tlapbot/static/style.css +++ b/tlapbot/static/style.css @@ -38,6 +38,51 @@ th:last-child { padding-right: 0 } +h1, +h2, +h3, +h4, +h5, +h6 { + font-weight: 300; + letter-spacing:-.1rem; + margin-bottom:2.0rem; + margin-top:1.5rem +} + +h1 { + font-size:4.6rem; + line-height:1.2 +} + +h2 { + font-size:3.6rem; + line-height:1.25 +} + +h3 { + font-size:2.8rem; + line-height:1.3 +} + +h4 { + font-size:2.2rem; + letter-spacing:-.08rem; + line-height:1.35 +} + +h5 { + font-size:1.8rem; + letter-spacing:-.05rem; + line-height:1.5 +} + +h6 { + font-size:1.6rem; + letter-spacing:0; + line-height:1.4 +} + /* General style */ h1{font-size: 3.6rem; line-height: 1.25} h2{font-size: 2.8rem; line-height: 1.3} diff --git a/tlapbot/templates/dashboard.html b/tlapbot/templates/dashboard.html index bebbc1d..4b8fcce 100644 --- a/tlapbot/templates/dashboard.html +++ b/tlapbot/templates/dashboard.html @@ -5,6 +5,7 @@ Redeems Dashboard +

Redeems Dashboard

{% if (username and users ) %} @@ -60,4 +61,29 @@
{% endif %} +

Currently Active Redeems

+ + {% if redeems %} + + + + + + + + + + {% for redeem, redeem_info in redeems.items() %} + + + + + {% if redeem_info["info"] %} + + {% endif %} + + {% endfor %} +
redeempricetypedescription
{{ redeem }}{{ redeem_info["price"] }}{{ redeem_info["type"] }}{{ redeem_info["info"] }}
+ {% endif %} +