47 lines
820 B
CSS
47 lines
820 B
CSS
body {
|
|
font-family: 'Lato', sans-serif;
|
|
color: #343A40;
|
|
}
|
|
|
|
.navbar-brand, .footer-text {
|
|
font-family: 'Playfair Display', serif;
|
|
}
|
|
|
|
.product-card {
|
|
border: 1px solid #eee;
|
|
border-radius: 0.5rem;
|
|
transition: all 0.3s ease-in-out;
|
|
}
|
|
|
|
.product-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.product-card .card-img-top {
|
|
border-top-left-radius: 0.5rem;
|
|
border-top-right-radius: 0.5rem;
|
|
height: 200px;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #C0A080;
|
|
border-color: #C0A080;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #A98B6C;
|
|
border-color: #A98B6C;
|
|
}
|
|
|
|
.btn-outline-secondary {
|
|
color: #C0A080;
|
|
border-color: #C0A080;
|
|
}
|
|
|
|
.btn-outline-secondary:hover {
|
|
background-color: #C0A080;
|
|
color: #fff;
|
|
}
|