Tage 3 bis 8

This commit is contained in:
2025-11-18 13:07:42 +01:00
parent 72c3d409ee
commit 6cf8f22c21
83 changed files with 1345 additions and 2 deletions

View File

@@ -267,4 +267,27 @@
============================================================ */
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }
@keyframes popIn { 0%{transform:scale(.9);opacity:0;} 100%{transform:scale(1);opacity:1;} }
@keyframes popIn { 0%{transform:scale(.9);opacity:0;} 100%{transform:scale(1);opacity:1;} }
/* ============================================================
DOWNLOAD
============================================================ */
.addon-downloads {
display: flex;
gap: 1rem;
margin-top: 1rem;
justify-content: center;
align-items: center;
}
.download-btn {
width: clamp(120px, 18vw, 340px);
height: auto;
cursor: pointer;
transition: transform 0.15s ease;
}
.download-btn:hover {
transform: scale(1.05);
}