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:
/* === Wahapedia-Style CSS === */


/* Main content styling */
#content {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}
/* Headers */
.mw-headline, h1, h2, h3 {
    font-weight: 700;
    letter-spacing: 0.5px;
}
/* Army Rules Section */
.army-rules-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
}


/* __TEMPLATESTYLES__ */
.army-rule-box {
.darkangels-theme .army-rule-box {
     border: 1px solid #ddd;
     border: 1px solid #d0d0d0;
     border-radius: 5px;
     border-radius: 3px;
     width: 100%;
     margin-bottom: 15px;
     max-width: 500px;
     max-width: 500px;
     background: white;
     overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
}


.darkangels-theme .army-rule-header {
.army-rule-header {
    background-color: #006341;
     color: white;
     color: white;
     padding: 8px 12px;
     padding: 8px 12px;
     font-weight: bold;
     font-weight: bold;
     font-size: 16px;
     font-size: 1.1em;
    background-color: #006341; /* Dark Angels green */
}
}


.darkangels-theme .army-rule-content {
.army-rule-content {
     padding: 12px;
     padding: 12px;
    background: white;
    line-height: 1.5;
     font-size: 14px;
     font-size: 14px;
    line-height: 1.4;
}
}


/* Keyword styling */
/* Keyword styling */
.darkangels-theme .keyword {
.keyword {
     font-weight: bold;
    font-weight: 700;
     color: #444;
    text-transform: uppercase;
    color: #555;
}
 
/* Tables */
.wikitable {
    font-size: 13px;
    width: 100%;
}
.wikitable th {
     font-weight: 600;
     background: #f5f5f5;
}
}

Revision as of 19:35, 19 June 2025

/* === Wahapedia-Style CSS === */

/* Main content styling */
#content {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Headers */
.mw-headline, h1, h2, h3 {
    font-weight: 700;
    letter-spacing: 0.5px;
}

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

.army-rule-box {
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.army-rule-header {
    color: white;
    padding: 8px 12px;
    font-weight: bold;
    font-size: 1.1em;
    background-color: #006341; /* Dark Angels green */
}

.army-rule-content {
    padding: 12px;
    background: white;
    line-height: 1.5;
    font-size: 14px;
}

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

/* Tables */
.wikitable {
    font-size: 13px;
    width: 100%;
}
.wikitable th {
    font-weight: 600;
    background: #f5f5f5;
}