50 lines
1.1 KiB
CSS
50 lines
1.1 KiB
CSS
.gallery-item-card {
|
|
background-color: #fcfaf5 !important;
|
|
border: 1px solid #e2d7ba !important;
|
|
border-radius: 4px !important;
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
}
|
|
|
|
.gallery-item-card:hover {
|
|
transform: translateY(-5px) rotate(1deg);
|
|
box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
|
|
}
|
|
|
|
.recipe-thumbnail {
|
|
filter: sepia(0.15) contrast(1.1);
|
|
}
|
|
|
|
.gallery-item-title {
|
|
font-family: 'Libre Baskerville', serif;
|
|
font-size: 1.25rem;
|
|
color: #2e1e0a;
|
|
}
|
|
|
|
.gallery-item-date {
|
|
font-family: 'Inter', sans-serif;
|
|
font-size: 0.7rem;
|
|
color: #8c857b;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1.5px;
|
|
}
|
|
|
|
.view-recipe-btn {
|
|
font-family: 'Libre Baskerville', serif !important;
|
|
font-style: italic;
|
|
text-transform: none !important;
|
|
}
|
|
|
|
.back-to-home-btn {
|
|
background-color: #5d4037 !important;
|
|
color: #f8f1e0 !important;
|
|
font-family: 'Libre Baskerville', serif !important;
|
|
text-transform: none !important;
|
|
font-size: 1.1rem !important;
|
|
height: 56px !important;
|
|
border-radius: 8px !important;
|
|
}
|
|
|
|
.back-to-home-btn:hover {
|
|
background-color: #4a3a2a !important;
|
|
box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
|
|
} |