diff --git a/code/modules/arcade/prize_counter.dm b/code/modules/arcade/prize_counter.dm index 07a3af17ec1..b01a58ba8e3 100644 --- a/code/modules/arcade/prize_counter.dm +++ b/code/modules/arcade/prize_counter.dm @@ -79,7 +79,14 @@ html { background:#333; color:#999; } - +table { + background:#303030; + border-collapse: collapse; + border:1px solid #232323; +} +caption { + text-align:left; +} a { color:#cfcfcf; text-decoration:none; @@ -89,19 +96,23 @@ a { a:hover { color:#ffffff; } -tr { - background:#303030; - border-radius:6px; - margin-bottom:0.5em; - border-bottom:1px solid black; +p { + margin:0; } -tr:nth-child(even) { +tr.dark { + background:#303030; +} +tr.light { background:#3f3f3f; } - +td,th { + padding:15px; + border-bottom:1px solid #232323; +} td.cost { font-size:20pt; font-weight:bold; + text-align:center; } td.cost.affordable { @@ -112,21 +123,21 @@ td.cost.toomuch { background:maroon; } - -

Tickets: [tickets] | Eject Tickets

+

Tickets: [tickets] | Eject Tickets

Arcade Ticket Exchange

Exchange that pile of tickets for a pile of cool prizes!

-

Available Prizes:

+
+ - + "} @@ -136,8 +147,11 @@ td.cost.toomuch { if(item.cost>tickets) cost_class="toomuch" var/itemID = global_prizes.prizes.Find(item) + var/row_color="light" + if(itemID%2 == 0) + row_color="dark" dat += {" - + @@ -147,10 +161,10 @@ td.cost.toomuch { "} dat += {" - - + + "} dat += {" @@ -158,7 +172,7 @@ td.cost.toomuch {
Available Prizes:
# Name/DescriptionPriceTickets
[itemID] - [item.cost] Tickets -
+ [item.cost] +
"} - user << browse(dat, "window=prize_counter") + user << browse(dat, "window=prize_counter;size=440x600;can_resize=0") onclose(user, "prize_counter") return