MediaWiki:Common.css: Difference between revisions

From Boktai Hacking Wiki
No edit summary
mNo edit summary
 
(One intermediate revision by the same user not shown)
Line 5: Line 5:
}
}


.infobox-image { text-align: center; }
.infobox-table { margin: 0.5rem; }
.infobox-table th {
.infobox-table th {
    min-width: 5rem;
     padding-right: 1rem;
     padding-right: 1rem;
}
.infobox-table {
    margin: 0.5rem;
}
}


Line 21: Line 20:
@media screen and (min-width: 720px) {
@media screen and (min-width: 720px) {
     .projectbox {
     .projectbox {
         max-width: 40rem;
         max-width: 32rem;
         margin: 0 auto;
         margin: 0 auto;
     }
     }

Latest revision as of 15:06, 12 August 2024

.infobox-title {
    text-align: center;
    flex: 1;
    padding: 0.5rem 0;
}

.infobox-image { text-align: center; }
.infobox-table { margin: 0.5rem; }
.infobox-table th {
    min-width: 5rem;
    padding-right: 1rem;
}

/* Project boxes (Template:Project) */
.projectbox {
    border: 5px solid var(--infobox-color);
    border-radius: 5px;
}

@media screen and (min-width: 720px) {
    .projectbox {
        max-width: 32rem;
        margin: 0 auto;
    }
}

.projectbox .infobox-header {
    background: var(--infobox-color);
    color: white;
    font-weight: bold;
    display: flex;
}

.projectbox-Romhack { --infobox-color: forestgreen; }
.projectbox-Tool { --infobox-color: darkslateblue; }