Toggle menu
17
24
14
1.7K
Landrace.Wiki - The Landrace Cannabis Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Template:Home/Cards - styles/styles.css: Difference between revisions

Template page
Undo revision 1392 by Eloise Zomia (talk)
Tag: Undo
No edit summary
Tag: Reverted
Line 1: Line 1:
/* ============================================ */
/* ============================================ */
/* HOME GRID LAYOUT */
/* HOME GRID LAYOUT (MAIN CONTENT) */
/* ============================================ */
/* ============================================ */


.home-grid {
.home-grid {
     display: grid;
     display: grid;
     grid-template-columns: repeat(6, 1fr);
     grid-template-columns: repeat(6, minmax(0, 1fr));
     gap: 0.625rem;
     gap: 0.75rem;
     margin-top: 2.4rem;
     margin-top: 2.4rem;
     width: 100%;
     width: 100%;
     align-items: stretch;
     align-items: stretch;
}
.home-card--col2 {
    grid-column: span 2;
}
}


/* ============================================ */
/* ============================================ */
/* BASE HOME CARD STYLES */
/* BASE HOME CARD STYLES – ALIGNED WITH .fa-card */
/* ============================================ */
/* ============================================ */


.home-card {
.home-card {
     position: relative;
     position: relative;
     padding: 20px;
     display: flex;
     background: #ffffff; /* Changed to pure white */
    flex-direction: column;
     border-radius: 8px;
     background: #ffffff;
     box-shadow: 0 3px 6px rgba(0, 0, 0, 0.04), 0 3px 6px rgba(0, 0, 0, 0.0575);
    border: 1px solid #e5e7eb;
     border-radius: 12px;
     box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    padding: 16px 18px 18px;
     font-size: 0.875rem;
     font-size: 0.875rem;
     transition: transform 0.2s ease, box-shadow 0.2s ease;
     color: #374151;
    border: 1px solid #dee2e6;
     min-height: 120px;
     min-height: 120px;
     height: 100%;
     transition: box-shadow 0.18s ease, transform 0.18s ease;
}
 
.home-card--col2 {
    grid-column: span 2;
}
}


.home-card:hover {
.home-card:hover {
     transform: translateY(-2px);
     transform: translateY(-1px);
     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08), 0 6px 12px rgba(0, 0, 0, 0.115);
     box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
}


/* Card sub-elements */
/* Card sub-elements */
.home-card__label {
.home-card__label {
     color: #6c757d;
     color: #6b7280;
     font-size: 0.8125rem;
     font-size: 0.78rem;
     letter-spacing: 0.75px;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     text-transform: uppercase;
     font-weight: 500;
     font-weight: 600;
     margin-bottom: 0.5rem;
     margin-bottom: 0.4rem;
}
}


.home-card__header {
.home-card__header {
     margin: 0 0 1rem 0;
     margin: 0.1rem 0 0.6rem 0;
     font-size: 1.1rem;
     font-size: 1.08rem;
     color: #2d5016;
     color: #1f2937;
     font-weight: 600;
     font-weight: 600;
}
}
Line 61: Line 64:


.home-card__header a:hover {
.home-card__header a:hover {
     color: #3d6b1f;
     color: #2d5016;
}
}


.home-card__body {
.home-card__body {
     color: #495057;
     color: #4b5563;
     line-height: 1.6;
     line-height: 1.5;
     margin-bottom: 1rem;
     margin-bottom: 0.7rem;
}
}


.home-card__links {
.home-card__links {
     font-size: 0.8125rem;
     font-size: 0.8rem;
     color: #6c757d;
     color: #6b7280;
     border-top: 1px solid #dee2e6;
     border-top: 1px solid #e5e7eb;
     padding-top: 0.75rem;
     padding-top: 0.6rem;
     margin-top: 0.75rem;
     margin-top: auto;
}
}


Line 89: Line 92:


/* ============================================ */
/* ============================================ */
/* IMAGE HEADER CARDS - Based on working region cards */
/* IMAGE HEADER VARIANT – SHARES FA-CARD FEEL */
/* ============================================ */
/* ============================================ */


Line 97: Line 100:
     display: flex;
     display: flex;
     flex-direction: column;
     flex-direction: column;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
     height: 100%;
     height: 100%;
    background: #ffffff; /* Ensure white background */
}
}


/* Image header link wrapper - 16:9 aspect ratio */
.home-card--image-header:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
 
/* Image wrapper 16:9, like .fa-media */
 
.home-card__image-link {
.home-card__image-link {
    position: relative;
     display: block;
     display: block;
    position: relative;
    width: 100%;
     overflow: hidden;
     overflow: hidden;
     background: #f3f4f6;
     background: #f3f4f6;
     line-height: 0;
     line-height: 0;
    flex-shrink: 0;
     border-bottom: 1px solid #eef2f7;
     border-bottom: 1px solid #e5e7eb; /* Subtle separator */
}
}


/* Create 16:9 ratio */
.home-card__image-link::before {
.home-card__image-link::before {
     content: "";
     content: "";
     display: block;
     display: block;
     width: 100%;
     width: 100%;
     padding-top: 56.25%; /* 16:9 ratio */
     padding-top: 56.25%; /* 16:9 */
}
}


/* Image background container */
/* Image container */
 
.home-card__image-header-bg {
.home-card__image-header-bg {
     position: absolute;
     position: absolute;
     inset: 0;
     inset: 0;
    line-height: 0;
}
}


/* Handle MediaWiki wrappers */
.home-card__image-header-bg,
.home-card__image-header-bg,
.home-card__image-header-bg a,
.home-card__image-header-bg a,
.home-card__image-header-bg .image,
.home-card__image-link .image,
.home-card__image-header-bg .mw-file-description {
.home-card__image-link .mw-file-description {
     display: block;
     display: block;
     width: 100%;
     width: 100%;
Line 138: Line 145:
}
}


/* Handle actual img element */
/* Actual <img> */
.home-card__image-header-bg img,
 
.home-card__image-header-bg .mw-file-element {
.home-card__image-link img,
.home-card__image-link .mw-file-element {
     display: block;
     display: block;
     width: 100% !important;
     width: 100% !important;
Line 147: Line 155:
     object-fit: cover;
     object-fit: cover;
     object-position: center center;
     object-position: center center;
    transition: transform 0.3s ease;
    margin: 0;
    padding: 0;
}
}


/* Hover effect on image */
/* Overlay text */
.home-card__image-link:hover .home-card__image-header-bg img,
.home-card__image-link:hover .home-card__image-header-bg .mw-file-element {
    transform: scale(1.05);
}


/* Text overlay on image */
.home-card__image-overlay {
.home-card__image-overlay {
     position: absolute;
     position: absolute;
     top: 0;
     inset: 0;
    left: 0;
    right: 0;
    bottom: 0;
     display: flex;
     display: flex;
     align-items: center;
     align-items: center;
     padding: 0 20px;
     padding: 0 20px;
     color: #fff;
     color: #ffffff;
     font-weight: 700;
     font-weight: 700;
     font-size: 1.3rem;
     font-size: 1.25rem;
     text-shadow: 2px 2px 6px rgba(0,0,0,0.9);
     text-shadow: 2px 2px 6px rgba(0,0,0,0.9);
     background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
     background: linear-gradient(
        to right,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.4) 50%,
        transparent 100%
    );
     z-index: 1;
     z-index: 1;
}
}


/* Content section below image - FIXED STYLING */
/* Content section under image */
 
.home-card__content {
.home-card__content {
     padding: 20px;
     padding: 14px 16px 16px 16px;
    background: #ffffff !important; /* Force white background */
    flex-grow: 1;
     display: flex;
     display: flex;
     flex-direction: column;
     flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}
}


/* Override any MediaWiki default styles on content */
/* Use same label/header/body/links styles inside content block */
.home-card--image-header .home-card__content {
    background: #ffffff !important;
    color: #495057;
}


/* Nested label in content section */
.home-card__content .home-card__label {
.home-card__content .home-card__label {
    color: #6c757d !important;
     margin-bottom: 0.3rem;
    font-size: 0.8125rem;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    font-weight: 500;
     margin-bottom: 0.5rem;
}
}


/* Nested header in content section */
.home-card__content .home-card__body {
.home-card__content .home-card__header {
     margin-bottom: 0.7rem;
     margin: 0 0 1rem 0;
    font-size: 1.1rem;
    color: #2d5016 !important;
    font-weight: 600;
}
}


/* Nested body in content section */
/* Limit media height for giant screens */
.home-card__content .home-card__body {
 
     color: #495057 !important;
.home-card__image-link {
    line-height: 1.6;
     max-height: 300px;
    margin-bottom: 1rem;
}
}


/* Links in body should maintain red color */
/* ============================================ */
.home-card__content .home-card__body a {
/* RESPONSIVE BREAKPOINTS */
    color: #c92a2a !important; /* Keep red links visible */
/* ============================================ */
     text-decoration: none;
 
@media (max-width: 1024px) {
    .home-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
     }
}
}


.home-card__content .home-card__body a:hover {
@media (max-width: 768px) {
     text-decoration: underline;
    .home-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }
 
    .home-card--col2 {
        grid-column: span 2;
    }
 
    .home-card__image-link {
        max-height: 220px;
    }
 
    .home-card__image-overlay {
        font-size: 1.1rem;
        padding: 0 15px;
    }
 
    .home-card,
     .home-card__content {
        padding: 14px 14px 16px;
    }
}
}


/* External link icon styling */
@media (max-width: 600px) {
.home-card__content .home-card__body a.external {
    .home-card__image-link {
    color: #c92a2a !important;
        max-height: 190px;
    }
 
    .home-card__content {
        padding: 12px 14px 14px 14px;
        gap: 6px;
    }
}
}


/* Nested links footer in content section */
@media (max-width: 480px) {
.home-card__content .home-card__links {
    .home-grid {
    font-size: 0.8125rem;
        grid-template-columns: 1fr;
     color: #6c757d;
        gap: 0.5rem;
     border-top: 1px solid #dee2e6;
     }
     padding-top: 0.75rem;
 
     margin-top: auto;
     .home-card--col2 {
}
        grid-column: span 1;
     }
 
     .home-card {
        padding: 14px 14px 16px;
    }


.home-card__content .home-card__links a {
    .home-card__image-link {
    color: #2d5016 !important;
        max-height: 170px;
    text-decoration: none;
     }
     font-weight: 500;
}


.home-card__content .home-card__links a:hover {
    .home-card__image-overlay {
    text-decoration: underline;
        font-size: 1rem;
        padding: 0 12px;
    }
}
}


/* Hard cap media height on wide screens */
.home-card__image-link {
    max-height: 300px;
}


/* ============================================ */
/* ============================================ */

Revision as of 08:06, 19 November 2025

/* ============================================ */
/* HOME GRID LAYOUT (MAIN CONTENT) */
/* ============================================ */

.home-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 2.4rem;
    width: 100%;
    align-items: stretch;
}

.home-card--col2 {
    grid-column: span 2;
}

/* ============================================ */
/* BASE HOME CARD STYLES – ALIGNED WITH .fa-card */
/* ============================================ */

.home-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    padding: 16px 18px 18px;
    font-size: 0.875rem;
    color: #374151;
    min-height: 120px;
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.home-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Card sub-elements */

.home-card__label {
    color: #6b7280;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.home-card__header {
    margin: 0.1rem 0 0.6rem 0;
    font-size: 1.08rem;
    color: #1f2937;
    font-weight: 600;
}

.home-card__header a {
    color: inherit;
    text-decoration: none;
}

.home-card__header a:hover {
    color: #2d5016;
}

.home-card__body {
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 0.7rem;
}

.home-card__links {
    font-size: 0.8rem;
    color: #6b7280;
    border-top: 1px solid #e5e7eb;
    padding-top: 0.6rem;
    margin-top: auto;
}

.home-card__links a {
    color: #2d5016;
    text-decoration: none;
    font-weight: 500;
}

.home-card__links a:hover {
    text-decoration: underline;
}

/* ============================================ */
/* IMAGE HEADER VARIANT – SHARES FA-CARD FEEL */
/* ============================================ */

.home-card--image-header {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    height: 100%;
}

.home-card--image-header:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Image wrapper – 16:9, like .fa-media */

.home-card__image-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: #f3f4f6;
    line-height: 0;
    border-bottom: 1px solid #eef2f7;
}

.home-card__image-link::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
}

/* Image container */

.home-card__image-header-bg {
    position: absolute;
    inset: 0;
}

.home-card__image-header-bg,
.home-card__image-header-bg a,
.home-card__image-link .image,
.home-card__image-link .mw-file-description {
    display: block;
    width: 100%;
    height: 100%;
}

/* Actual <img> */

.home-card__image-link img,
.home-card__image-link .mw-file-element {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover;
    object-position: center center;
}

/* Overlay text */

.home-card__image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 20px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.9);
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.4) 50%,
        transparent 100%
    );
    z-index: 1;
}

/* Content section under image */

.home-card__content {
    padding: 14px 16px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

/* Use same label/header/body/links styles inside content block */

.home-card__content .home-card__label {
    margin-bottom: 0.3rem;
}

.home-card__content .home-card__body {
    margin-bottom: 0.7rem;
}

/* Limit media height for giant screens */

.home-card__image-link {
    max-height: 300px;
}

/* ============================================ */
/* RESPONSIVE BREAKPOINTS */
/* ============================================ */

@media (max-width: 1024px) {
    .home-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .home-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .home-card--col2 {
        grid-column: span 2;
    }

    .home-card__image-link {
        max-height: 220px;
    }

    .home-card__image-overlay {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    .home-card,
    .home-card__content {
        padding: 14px 14px 16px;
    }
}

@media (max-width: 600px) {
    .home-card__image-link {
        max-height: 190px;
    }

    .home-card__content {
        padding: 12px 14px 14px 14px;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .home-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .home-card--col2 {
        grid-column: span 1;
    }

    .home-card {
        padding: 14px 14px 16px;
    }

    .home-card__image-link {
        max-height: 170px;
    }

    .home-card__image-overlay {
        font-size: 1rem;
        padding: 0 12px;
    }
}


/* ============================================ */
/* MOBILE RESPONSIVENESS */
/* ============================================ */

@media (max-width: 1024px) {
    .home-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .home-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .home-card--col2 {
        grid-column: span 2;
    }
    
    .home-card__image-link {
        max-height: 200px;
    }
    
    .home-card__image-overlay {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .home-card__content {
        padding: 15px;
    }
}

@media (max-width: 600px) {
    .home-card__image-link {
        max-height: 180px;
    }
}

@media (max-width: 480px) {
    .home-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .home-card--col2 {
        grid-column: span 1;
    }
    
    .home-card {
        padding: 15px;
    }
    
    .home-card__image-link {
        max-height: 160px;
    }
    
    .home-card__image-overlay {
        font-size: 1rem;
        padding: 0 12px;
    }
    
    .home-card__content {
        padding: 12px;
    }
}