Modul:Navpills/styles.css
Fra Kammeraterikrig.dk
More actions
.template-navpills {
display: grid;
gap: 0.25rem;
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
grid-auto-rows: 3rem;
font-size: 0.875rem;
}
.template-navpill {
position: relative;
border: 1px solid #ccc;
border-radius: 0.5rem;
font-weight: 500;
line-height: 1.1;
overflow: hidden;
}
/* Baggrundslag (billede + gradient) */
.template-navpill-background {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1; /* ligger under linket */
}
.template-navpill-background:after {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: linear-gradient(to right, #000, transparent);
transition: transform 250ms ease;
}
.template-navpill-background img {
width: 100%;
height: 100%;
object-fit: cover;
transition: 250ms ease;
transition-property: transform;
}
/* Hover-effekter */
.template-navpill:hover .template-navpill-background::after {
transform: translateX(-100%);
}
.template-navpill:hover .template-navpill-background img {
transform: scale(1.1);
}
/* Linklag – altid øverst */
.template-navpill > a {
position: relative;
z-index: 2; /* vigtig! */
padding: 0 1rem;
display: flex;
align-items: center;
color: #fff !important;
text-decoration: none;
height: 100%;
}
.template-navpill > .template-navpill-background + a {
color: #fff;
text-shadow:
-1px 0 0.2em #000,
0 1px 0.2em #000,
1px 0 0.2em #000,
0 -1px 0.2em #000;
}
.template-navpill:hover {
background: #f0f0f0;
}
.template-navpill:active {
background: #e0e0e0;
}