1
0
2025-02-24 18:50:47 +01:00

133 lines
3.0 KiB
HTML

<!-- From Uiverse.io by wztd -->
<style>
.card {
--background: #fff;
--cardShadow: rgba(32,33,37,.1);
--cardShadowHover: rgba(32,33,37,.06);
--cardShadowActive: rgba(32,33,37,.55);
--cardBorder: #dbdce0;
--cardBorderActive: #1a73e8;
--textColor: #202125;
--linkColor: #1967d2;
--ratingColor: #faab00;
}
@media (prefers-color-scheme: dark) {
.card {
--background: #e5e7e9;
--cardShadow: rgba(0,0,0,.28);
--cardShadowHover: rgba(0,0,0,.16);
--cardShadowActive: rgba(0,0,0,.55);
--cardBorder: #202125;
--cardBorderActive: #8ab4f8;
--textColor: #202122;
--linkColor: #8ab4f8;
}
}
.card {
max-width: 300px;
background: var(--background);
color: var(--textColor);
border: 1px solid var(--cardBorder);
padding: 25px;
box-shadow: 8px 8px 0 var(--cardShadow);
transition: box-shadow .5s, transform .5s;
border-radius: 8px;
display: inline-block;
}
.card:hover {
transform: translate(-2px, -4px);
box-shadow: 16px 16px 0 var(--cardShadowHover);
}
.card:active {
transform: translate(-2px, -4px);
border: 2px solid var(--cardBorderActive);
box-shadow: 4px 4px 0 var(--cardShadowActive);
}
.card > .icon,
.card > .title,
.card > .description,
.card > .rating,
.card > .link {
margin-bottom: 0.7em;
cursor: default;
user-select: none;
}
.card > .title {
margin-top: 1.5em;
font-weight: bold;
}
.card > .description {
line-height: 1.5em;
}
.card > .icon {
font-size: 3em;
margin-bottom: .2em;
}
.card > .rating {
font-size: 1.5em;
color: var(--ratingColor);
font-weight: bold;
position: relative;
width: max-content;
}
.card > .rating:before {
content: "☆☆☆☆☆";
}
.card > .rating:after {
content: "★★★★★";
position: absolute;
left: 0;
z-index: 0;
width: calc(var(--rating) * 1%);
overflow: hidden;
}
.card > .link {
color: var(--linkColor);
font-size: .8em;
font-weight: 600;
}
/* Optional ~ Link the whole card */
.card > .link::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.card > .link:after {
content: "↗";
display: inline-block;
margin-left: .3em;
transition: transform .3s ease-in-out;
}
.card:hover > .link:after {
transform: translate(.2em, -.2em);
}
</style>
<div class="card" style="--rating:90">
<img src="/somachtstefaniedas2/johannesbeeressig.png" width="100%" alt="Johannesbeeressig">
<div class="title">Johannesbeeressig</div>
<p class="description">Verleihe deinem Salat eine außergewöhnliche <br>Note mit selbstgemachtem Johannisbeeressig.<br>
Der fruchtige Geschmack der Johannisbeeren harmoniert perfekt <br>mit der feinen Säure des Essigs und verleiht jedem Salat ein besonderes Aroma.</p>
<div class="rating"></div>
<a href="#" class="link">See the recipe</a>
</div>
</html>