From 84672dff7c59ecd188ff4d030357d4b05b6a21b6 Mon Sep 17 00:00:00 2001 From: Vidir Valberg Gudmundsson Date: Sat, 26 Aug 2017 17:27:24 +0200 Subject: [PATCH] Smaller text! --- src/bar/templates/bar_menu.html | 6 +++--- src/static_src/css/bornhack.css | 2 ++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/bar/templates/bar_menu.html b/src/bar/templates/bar_menu.html index 22099081..60019fb1 100644 --- a/src/bar/templates/bar_menu.html +++ b/src/bar/templates/bar_menu.html @@ -43,13 +43,13 @@ {% for category in categories %} -

{{ category.name }}

+

{{ category.name }}

{% for product in category.products.all %} {% if product.in_stock %}
-

{{ product.name }}

-

{{ product.price }} HAX

+ {{ product.name }} + {{ product.price }} HAX
{% endif %} {% endfor %} diff --git a/src/static_src/css/bornhack.css b/src/static_src/css/bornhack.css index e99a9881..6731b46b 100644 --- a/src/static_src/css/bornhack.css +++ b/src/static_src/css/bornhack.css @@ -293,9 +293,11 @@ body.bar-menu { .bar-product .name { width: 900px; + font-size: 14pt; } .bar-product .price { + font-size: 14pt; width: 300px; }