favicon added. Mass update buttons added. Recipe image placeholders added

This commit is contained in:
2026-02-01 17:59:05 +01:00
parent a970b72aef
commit c34dcae89d
8 changed files with 138 additions and 39 deletions

View File

@@ -169,10 +169,10 @@ h2 {
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(
circle,
background: linear-gradient(
to left,
rgba(255, 255, 255, 0.8) 0%,
transparent 70%
transparent 50% transparent 75%
);
opacity: 0;
transition: opacity 0.3s;
@@ -257,6 +257,9 @@ h2 {
}
.recipe-card {
display: flex;
flex-direction: row;
width: 100%;
background: linear-gradient(135deg, #fff 0%, #fff8f0 100%);
border-left: 5px solid var(--deep-red);
border-radius: 10px;
@@ -266,6 +269,10 @@ h2 {
animation: recipeAppear 0.5s ease-out backwards;
}
.recipe-content {
width: 70%;
}
.recipe-card:nth-child(1) {
animation-delay: 0.1s;
}
@@ -281,6 +288,9 @@ h2 {
.recipe-card:nth-child(5) {
animation-delay: 0.5s;
}
.recipe-card:nth-child(6) {
animation-delay: 0.5s;
}
@keyframes recipeAppear {
from {
@@ -361,6 +371,19 @@ h2 {
font-style: italic;
}
.recipe-img {
width: 30%;
min-width: 30%;
max-width: 30%;
}
.recipe-img img {
width: 100%;
height: 100%;
object-fit: contain;
display: block;
}
.loading {
text-align: center;
padding: 2rem;