User:Talonsin/darkangels-styles.css: Difference between revisions

From Eternum McEdition
Jump to navigationJump to search
No edit summary
No edit summary
Line 1: Line 1:
/* __TEMPLATESTYLES__ */
/* __TEMPLATESTYLES__ */
/* WAHAPEDIA DARK ANGELS STYLE - SANITIZED VERSION */
/* DARK ANGELS THEME - WHITE BACKGROUND VERSION */


/* Base Styles */
/* Force white background for entire page */
#content .darkangels-theme {
.darkangels-theme,
.darkangels-theme body {
    background: white !important;
    color: #333;
}
 
/* Base Text */
.darkangels-theme #content {
     font-family: 'Roboto', 'Segoe UI', sans-serif;
     font-family: 'Roboto', 'Segoe UI', sans-serif;
     line-height: 1.5;
     line-height: 1.5;
    color: #333;
}
}


/* Headers - Now with better contrast */
.darkangels-theme h1,
.darkangels-theme h1,
.darkangels-theme h2,
.darkangels-theme h2,
.darkangels-theme h3 {
.darkangels-theme h3 {
     color: #006341;
     color: #006341 !important; /* Dark Angels green */
     border-bottom: 1px solid #e0e0e0;
     border-bottom: 1px solid #e0e0e0;
     padding-bottom: 3px;
     padding-bottom: 3px;
Line 18: Line 25:
}
}


/* Army Rules */
/* Army Rules Boxes */
.darkangels-theme .army-rules-container {
.darkangels-theme .army-rules-container {
     display: flex;
     display: flex;
Line 32: Line 39:
     max-width: 500px;
     max-width: 500px;
     background: white;
     background: white;
    box-shadow: none !important; /* Remove any dark shadows */
}
}


/* Rule Headers - Now properly green */
.darkangels-theme .army-rule-header {
.darkangels-theme .army-rule-header {
     background-color: #006341;
     background-color: #006341 !important; /* Forces green override */
     color: white;
     color: white !important;
     padding: 8px 12px;
     padding: 8px 12px;
     font-weight: 700;
     font-weight: 700;
Line 42: Line 51:
}
}


/* Content Areas */
.darkangels-theme .army-rule-content {
.darkangels-theme .army-rule-content {
     padding: 12px;
     padding: 12px;
     font-size: 14px;
     font-size: 14px;
    background: white !important;
    color: #333 !important;
}
}


/* Keyword styling */
/* Keywords */
.darkangels-theme .keyword {
.darkangels-theme .keyword {
     font-weight: 700;
     font-weight: 700;
     text-transform: uppercase;
     text-transform: uppercase;
     color: #555;
     color: #555 !important;
}
}


/* Tables */
/* Tables - Full white treatment */
.darkangels-theme .wikitable {
.darkangels-theme .wikitable {
     font-size: 13px;
     font-size: 13px;
Line 60: Line 72:
     width: 100%;
     width: 100%;
     margin: 15px 0;
     margin: 15px 0;
    background: white !important;
}
}


.darkangels-theme .wikitable th {
.darkangels-theme .wikitable th {
     background-color: #006341;
     background-color: #006341 !important; /* Green headers */
     color: white;
     color: white !important;
     padding: 6px 10px;
     padding: 6px 10px;
}
}
Line 71: Line 84:
     padding: 6px 10px;
     padding: 6px 10px;
     border-bottom: 1px solid #e0e0e0;
     border-bottom: 1px solid #e0e0e0;
    background: white !important;
}
}


.darkangels-theme .wikitable tr:nth-child(even) {
.darkangels-theme .wikitable tr:nth-child(even) {
     background-color: #f8f8f8;
     background-color: #f8f8f8 !important;
}
}

Revision as of 19:50, 19 June 2025

/* __TEMPLATESTYLES__ */
/* DARK ANGELS THEME - WHITE BACKGROUND VERSION */

/* Force white background for entire page */
.darkangels-theme,
.darkangels-theme body {
    background: white !important;
    color: #333;
}

/* Base Text */
.darkangels-theme #content {
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    line-height: 1.5;
}

/* Headers - Now with better contrast */
.darkangels-theme h1,
.darkangels-theme h2,
.darkangels-theme h3 {
    color: #006341 !important; /* Dark Angels green */
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 3px;
    font-weight: 700;
}

/* Army Rules Boxes */
.darkangels-theme .army-rules-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.darkangels-theme .army-rule-box {
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    width: 100%;
    max-width: 500px;
    background: white;
    box-shadow: none !important; /* Remove any dark shadows */
}

/* Rule Headers - Now properly green */
.darkangels-theme .army-rule-header {
    background-color: #006341 !important; /* Forces green override */
    color: white !important;
    padding: 8px 12px;
    font-weight: 700;
    font-size: 16px;
}

/* Content Areas */
.darkangels-theme .army-rule-content {
    padding: 12px;
    font-size: 14px;
    background: white !important;
    color: #333 !important;
}

/* Keywords */
.darkangels-theme .keyword {
    font-weight: 700;
    text-transform: uppercase;
    color: #555 !important;
}

/* Tables - Full white treatment */
.darkangels-theme .wikitable {
    font-size: 13px;
    border-collapse: collapse;
    width: 100%;
    margin: 15px 0;
    background: white !important;
}

.darkangels-theme .wikitable th {
    background-color: #006341 !important; /* Green headers */
    color: white !important;
    padding: 6px 10px;
}

.darkangels-theme .wikitable td {
    padding: 6px 10px;
    border-bottom: 1px solid #e0e0e0;
    background: white !important;
}

.darkangels-theme .wikitable tr:nth-child(even) {
    background-color: #f8f8f8 !important;
}