Vorlage:Main page/styles.css: Unterschied zwischen den Versionen

Aus PadelWiki
Die Seite wurde neu angelegt: „CSS used for https://www.mediawiki.org/wiki/MediaWiki/Homepage_improvements_2018 :: .mainpage_row { display: flex; flex-direction: row; flex-flow: row wrap; justify-content: space-between; padding: 0; gap: 10px; margin-top: 10px; margin-bottom: 10px; eliminated by margin collapse on adjacent rows: } .mainpage_box { flex: 1; min-width: 210px; border: 1px solid #a2a9b1; padding: 0 10px 10px 10px; box-shadow: 0 2px 2px rgba( 0, 0, 0, 0…“
 
Keine Bearbeitungszusammenfassung
Markierung: Manuelle Zurücksetzung
 
(19 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
/* CSS used for https://www.mediawiki.org/wiki/MediaWiki/Homepage_improvements_2018 : */
.flex-container {
.mainpage_row {
    display: flex;
display: flex;
    justify-content: flex-start;
flex-direction: row;
    align-items: stretch;  
flex-flow: row wrap;
    /* flex-flow: row nowrap; */
justify-content: space-between;
    flex-direction: row;
padding: 0;
    flex-wrap: nowrap;  
gap: 10px;
    align-content: stretch;
margin-top: 10px;
    height: 100%;
margin-bottom: 10px; /* eliminated by margin collapse on adjacent rows */
    gap: 10px;
    padding-bottom: 10px;
}
}
.mainpage_box {
 
flex: 1;
.flex-container > div{
min-width: 210px;
    background: #fffee7;
border: 1px solid #a2a9b1;
    border: 1px solid #ffec41;
padding: 0 10px 10px 10px;
    border-radius: 2px;
box-shadow: 0 2px 2px rgba( 0, 0, 0, 0.2 );
    padding: 10px;
}
    color: #89530a;
.mainpage_box h3 {
/* Reset padding so is equal across skins */
padding-right: 0;
padding-top: 0;
padding-bottom: 0;
/* Padding left gets overridden by headanchor gadget */
margin: 0.5em 0;
}
/* Set padding left only if headanchor gadget is not enabled */
.mainpage_box h3:not(.tpl-vheadanchor-heading) {
padding-left: 0;
}
.mainpage_box h3 .header_icon {
float: left;
margin-right: 5px;
}
.mainpage_box .items {
border-top: 1px solid #CCC;
padding-top: 0.5em;
}
.mainpage_box p:last-child {
margin-bottom: 0;
}
.mainpage_boxcontents_small {
font-size: 95%;
}
/* Style the "other languages" box the same way as other boxes on the main page */
.mw-pt-languages {
display: block;
background: none;
border: 1px solid #CCC;
box-shadow: 0 2px 2px rgba(0,0,0,0.1);
width: auto;
}
.mw-pt-languages-label {
background: none;
border-right: none;
}
}


@media screen and (max-width: 719px) {
 
.thumb {
 
float: none;
.item_full {
}
    flex-basis:100%;
.thumb, .thumbinner {
margin-left: auto;
margin-right: auto;
}
}
}


/* This offset is specifically tailored to the hackathon particiapnts photo */
.item_half {
/* It's a little bigger in the default skin than required, because timeless has */
    flex-basis:50%;
/* larger than average margin for thumbs */
@media screen and (min-width: 1400px) {
html:not(.vector-feature-page-tools-pinned-enabled) .mainpage_row {
margin-right: 384px;
}
}
}


@media screen and (min-width: 1680px) {
.item1 {
.mainpage_row {
    flex-basis:50%;
margin-right: 384px;
}
}
}


/* Night mode styles */
.item1 h2 {
@media screen {
    margin: 0;
html.skin-theme-clientpref-night .header_icon img {
color: #442304;
filter: invert( 1 );
}
}
}


@media screen and (prefers-color-scheme: dark) {
.item2 {
html.skin-theme-clientpref-os .header_icon img {
    flex-basis:50%;
filter: invert( 1 );
}
}
}

Aktuelle Version vom 1. November 2025, 18:11 Uhr

.flex-container {
    display: flex;
    justify-content: flex-start; 
    align-items: stretch; 
    /* flex-flow: row nowrap; */ 
    flex-direction: row; 
    flex-wrap: nowrap; 
    align-content: stretch;
    height: 100%;
    gap: 10px;
    padding-bottom: 10px;
}

.flex-container > div{
    background: #fffee7;
    border: 1px solid #ffec41;
    border-radius: 2px;
    padding: 10px;
    color: #89530a;
}



.item_full {
    flex-basis:100%;
}

.item_half {
    flex-basis:50%;
}

.item1 {
    flex-basis:50%;
}

.item1 h2 {
    margin: 0;
color: #442304;
}

.item2 {
    flex-basis:50%;
}