Smaller text!

This commit is contained in:
Vidir Valberg Gudmundsson 2017-08-26 17:27:24 +02:00
parent 2341658e59
commit 84672dff7c
2 changed files with 5 additions and 3 deletions

View file

@ -43,13 +43,13 @@
{% for category in categories %} {% for category in categories %}
<h1>{{ category.name }}</h1> <h3>{{ category.name }}</h3>
{% for product in category.products.all %} {% for product in category.products.all %}
{% if product.in_stock %} {% if product.in_stock %}
<div class="bar-product"> <div class="bar-product">
<h4 class="name">{{ product.name }}</h4> <span class="name">{{ product.name }}</span>
<h4 class="pull-right price">{{ product.price }} HAX</h4> <span class="pull-right price">{{ product.price }} HAX</span>
</div> </div>
{% endif %} {% endif %}
{% endfor %} {% endfor %}

View file

@ -293,9 +293,11 @@ body.bar-menu {
.bar-product .name { .bar-product .name {
width: 900px; width: 900px;
font-size: 14pt;
} }
.bar-product .price { .bar-product .price {
font-size: 14pt;
width: 300px; width: 300px;
} }