Vorlage:Kategorie‑Kacheln/styles.css

Aus City ABC

/* Doms‑Style: dunkles Rot, serifen Schrift, helle Flächen */ .doms-catgrid { font-family: Georgia, "Times New Roman", serif; } .doms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }


.doms-card { border: 2px solid #800000; border-radius: 16px; background: #f8f8f8; overflow: hidden; box-shadow: 0 2px 6px rgba(0,0,0,.06); transition: transform .12s ease, box-shadow .12s ease; } .doms-card:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.1); }


.doms-card-link { text-decoration: none; color: inherit; display: block; } .doms-card-media { aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; background: #eee; } .doms-card-img { object-fit: cover; max-width: 100%; height: auto; } .doms-card-placeholder { font-size: 42px; opacity: .35; }


.doms-card-body { padding: 12px; } .doms-card-title { font-weight: 600; font-size: 1.05rem; color: #800000; }