Made each product a link to its own product page
This commit is contained in:
@ -1,5 +1,28 @@
|
||||
/* Product Information*/
|
||||
|
||||
.product-link:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 15%;
|
||||
width: 0%;
|
||||
border-bottom: 2px solid var(--fg);
|
||||
transition: 0.4s;
|
||||
}
|
||||
|
||||
.product-link:hover:after {
|
||||
width: 70%;
|
||||
color: var(--hover);
|
||||
}
|
||||
|
||||
.product-link:hover {
|
||||
color: var(--hover);
|
||||
}
|
||||
|
||||
.product-link:active {
|
||||
color: var(--header);
|
||||
}
|
||||
|
||||
.product-container {
|
||||
width: 95%;
|
||||
background-color: var(--bg-grad-3);
|
||||
|
Reference in New Issue
Block a user