Template:CAK/styles-lures.css: Difference between revisions
Jump to navigation
Jump to search
Created page with "→===== Catch a Kraken – Lures =====: →Grid: .lure-grid { display: flex; flex-wrap: wrap; gap: 16px; margin: 8px 0 16px 0; } →Card: .lure-card { width: 220px; background: #ffffff; border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; color: #111111; box-shadow: 0 2px 10px rgba(0,0,0,0.08); display: flex; flex-direction: column; text-decoration: none; } →Image area (fixed viewport for consistency): .lure-img {..." |
(No difference)
|
Latest revision as of 19:16, 7 October 2025
/* ===== Catch a Kraken – Lures ===== */
/* Grid */
.lure-grid {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin: 8px 0 16px 0;
}
/* Card */
.lure-card {
width: 220px;
background: #ffffff;
border: 1px solid #e5e7eb;
border-radius: 12px;
overflow: hidden;
color: #111111;
box-shadow: 0 2px 10px rgba(0,0,0,0.08);
display: flex;
flex-direction: column;
text-decoration: none;
}
/* Image area (fixed viewport for consistency) */
.lure-img {
background: #0b1b2a;
height: 180px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.lure-img img {
width: 100%;
height: 100%;
object-fit: contain; /* keeps aspect ratio */
display: block;
}
/* Body */
.lure-body { padding: 10px 12px 12px 12px; }
/* Name */
.lure-name {
font-weight: 800;
font-size: 15px;
margin: 0 0 6px 0;
}
/* Rarity tag */
.lure-tag {
display: inline-block;
font-size: 12px;
font-weight: 700;
line-height: 1;
padding: 4px 8px;
border-radius: 999px;
margin: 0 0 8px 0;
color: #ffffff;
}
/* Rarity colors (adjust as you like) */
.lure-common { background: #6b7280; }
.lure-uncommon { background: #10b981; }
.lure-rare { background: #3b82f6; }
.lure-epic { background: #8b5cf6; }
.lure-legendary { background: #f59e0b; }
/* Stat pills */
.lure-stats {
display: flex;
flex-wrap: wrap;
gap: 6px;
margin-top: 6px;
}
.lure-stat {
display: inline-block;
padding: 4px 8px;
border-radius: 999px;
background: #0d6efd;
color: #fff;
font-size: 12px;
font-weight: 700;
}
/* Section title */
.lure-section-title {
font-size: 18px;
font-weight: 800;
margin: 14px 0 8px 0;
}