Smaller text!
This commit is contained in:
parent
2341658e59
commit
84672dff7c
|
@ -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 %}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue