#6 Updated Product views to better show information
This commit is contained in:
parent
595069772c
commit
d80b07d43d
@ -39,51 +39,60 @@
|
|||||||
.product {
|
.product {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: space-around;
|
justify-content: center;
|
||||||
flex-wrap: wrap;
|
align-items: center;
|
||||||
flex: 4 0 1rem;
|
flex: 4 0 1rem;
|
||||||
max-width: 30%;
|
max-width: 40%;
|
||||||
padding: .5rem .5rem .5rem .5rem;
|
gap: .5em .5em;
|
||||||
|
padding: .5rem 0.2rem;
|
||||||
background: var(--bg-secondary);
|
background: var(--bg-secondary);
|
||||||
border-radius: .5rem .5rem;
|
border-radius: .5rem .5rem;
|
||||||
|
border: .1em solid rgba(255, 255, 255, 15%);
|
||||||
transition: all 0.2s;
|
transition: all 0.2s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.product-image {
|
|
||||||
width: 40%;
|
|
||||||
height: auto;
|
|
||||||
box-shadow: 0px 30px 50px 0px rgba(0, 0, 0, 0.025);
|
|
||||||
}
|
|
||||||
|
|
||||||
.product-fs {
|
.product-fs {
|
||||||
height: 80%;
|
height: 80%;
|
||||||
width: 80%;
|
width: 80%;
|
||||||
font-size: 150%;
|
font-size: 150%;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: row;
|
||||||
justify-content: space-around;
|
justify-content: space-between;
|
||||||
flex-wrap: wrap;
|
gap: 2em 2em;
|
||||||
padding: .5rem 1rem 2rem 2rem;
|
padding: .5rem 1rem 2rem 2rem;
|
||||||
background: var(--bg-secondary);
|
/* background: var(--bg-secondary); */
|
||||||
border-radius: .5rem .5rem;
|
border-radius: .5rem .5rem;
|
||||||
transition: all 0.2s;
|
transition: all 0.2s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.product-title {
|
.product-content-container {
|
||||||
font-size: 130%;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
.product-information {
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
gap: 1rem 1rem;
|
gap: 1em 1em;
|
||||||
|
padding: 0rem 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.product-image-preview {
|
||||||
|
max-height: 150px;
|
||||||
|
max-width: 150px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.product-image {
|
||||||
|
max-height: 500px;
|
||||||
|
max-width: 500px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.product-title {
|
||||||
|
font-size: 120%;
|
||||||
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.product-details {
|
.product-details {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
padding: 5% 0;
|
||||||
|
/* justify-content: center; */
|
||||||
|
/* align-items: center; */
|
||||||
gap: 1rem 1rem;
|
gap: 1rem 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -96,4 +105,59 @@
|
|||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
.product-acquisition-pane {
|
||||||
|
font-size: 80%;
|
||||||
|
width: 100rem;
|
||||||
|
max-width: 20%;
|
||||||
|
background-color: var(--bg-secondary);
|
||||||
|
border: .3em solid rgba(255, 255, 255, 15%);
|
||||||
|
border-radius: .5rem;
|
||||||
|
padding: 1rem 1rem;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: space-between;
|
||||||
|
gap: 1rem 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.product-price {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.product-delivery {
|
||||||
|
font-size: 70%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.product-postage {
|
||||||
|
font-size: 70%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.product-stock {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
font-weight: bold;
|
||||||
|
justify-content: space-around;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.product-quantity {
|
||||||
|
font-size: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.product-instock {
|
||||||
|
color: var(--green);
|
||||||
|
}
|
||||||
|
|
||||||
|
.product-nostock {
|
||||||
|
color: var(--red);
|
||||||
|
}
|
||||||
|
|
||||||
|
.product-add-to-cart {
|
||||||
|
padding: .25rem .5rem;
|
||||||
|
margin-top: .25rem;
|
||||||
|
margin-right: .5rem;
|
||||||
|
font-size: 1rem;
|
||||||
|
border: none;
|
||||||
|
background-color: gray;
|
||||||
}
|
}
|
@ -5,16 +5,15 @@
|
|||||||
{% for product in products %}
|
{% for product in products %}
|
||||||
<a href="/products/{{product.id}}" class="product product-link">
|
<a href="/products/{{product.id}}" class="product product-link">
|
||||||
<div class="product-title">{{product.name}}</div>
|
<div class="product-title">{{product.name}}</div>
|
||||||
<div class="product-information">
|
<div class="product-content-container">
|
||||||
<div class="product-image">
|
<img class="product-image-preview" src="{{url_for('static', filename='assets/img/products/' + product.image)}}" alt="Brake Disks" />
|
||||||
<img src="{{url_for('static', filename='assets/img/products/' + product.image)}}" alt="Brake Disks" height="auto" width="150px" />
|
|
||||||
</div>
|
<div class="product-details">
|
||||||
<div class="product-details">
|
<div class="product-price">£{{product.cost}}</div>
|
||||||
<div class="product-price">£{{product.cost}}</div>
|
<div class="product-description hide-overflow ">{{product.description}}</div>
|
||||||
<div class="product-description hide-overflow ">{{product.description}}</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="product-add-to-cart"></div>
|
</div>
|
||||||
|
<input type="submit" class="product-add-to-cart" value="Add to Cart" />
|
||||||
</a>
|
</a>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
<div class="product-fs">
|
<div class="product-fs">
|
||||||
{% if product != None %}
|
{% if product != None %}
|
||||||
{% if user.id == product.sellerID%}
|
{% if user.id == product.sellerID %}
|
||||||
<form class="input-form" method="POST" action="/products/update/{{product.id}}" enctype="multipart/form-data">
|
<form class="input-form" method="POST" action="/products/update/{{product.id}}" enctype="multipart/form-data">
|
||||||
<div class="product-title">
|
<div class="product-title">
|
||||||
<input type="text" id="name" name="name" placeholder="Product Name" value="{{product.name}}" required>
|
<input type="text" id="name" name="name" placeholder="Product Name" value="{{product.name}}" required>
|
||||||
@ -41,17 +41,25 @@
|
|||||||
</form>
|
</form>
|
||||||
<div class="product-add-to-cart"></div>
|
<div class="product-add-to-cart"></div>
|
||||||
{% else %}
|
{% else %}
|
||||||
<div class="product-title">{{product.name}}</div>
|
<img class="product-image" src="{{url_for('static', filename='assets/img/products/' + product.image)}}" alt="Brake Disks"/>
|
||||||
<div class="product-information">
|
<div class="product-details">
|
||||||
<div class="product-image">
|
<div class="product-title">{{product.name}}</div>
|
||||||
<img src="{{url_for('static', filename='assets/img/products/' + product.image)}}" alt="Brake Disks" height="auto" width="150px" />
|
<div class="product-description">{{product.description}}</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="product-details">
|
<div class="product-acquisition-pane">
|
||||||
<div class="product-price">£{{product.cost}}</div>
|
<div class="product-price">£{{product.cost}}</div>
|
||||||
<div class="product-description">{{product.description}}</div>
|
<div class="product-delivery">Earliest Delivery Friday 24th December</div>
|
||||||
|
<div class="product-postage">+£{{product.cost}} P&P</div>
|
||||||
|
<div class="product-stock">
|
||||||
|
{% if product.quantityAvailable > 0 %}
|
||||||
|
<div class="product-instock">In Stock</div>
|
||||||
|
<div class="product-quantity">{{product.quantityAvailable}} Available</div>
|
||||||
|
<input type="submit" class="product-add-to-cart" value="Add to Cart" />
|
||||||
|
{% else %}
|
||||||
|
<div class="product-nostock">Out of Stock</div>
|
||||||
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="product-add-to-cart"></div>
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user