(Augmentation de la taille de la police des titres et des objets <font>) |
Aucun résumé des modifications |
||
Ligne 1 : | Ligne 1 : | ||
/* | /*############ Custom CSS for WikiThionville. ############*/ | ||
/* Responsive content zoom */ | |||
@media only screen and (max-width: 270px) { | @media only screen and (max-width: 270px) { | ||
#bodyContent { | |||
zoom: 0.2; | |||
} | |||
} | |||
@media only screen and (min-width: 270px) { | |||
#bodyContent { | |||
zoom: 0.3; | |||
} | |||
} | |||
@media only screen and (min-width: 340px) { | |||
#bodyContent { | |||
zoom: 0.4; | |||
} | |||
} | |||
@media only screen and (min-width: 415px) { | |||
#bodyContent { | |||
zoom: 0.5; | |||
} | |||
} | |||
@media only screen and (min-width: 570px) { | |||
#bodyContent { | |||
zoom: 0.7; | |||
} | |||
} | |||
@media only screen and (min-width: 730px) { | |||
#bodyContent { | |||
zoom: 0.9; | |||
} | |||
} | |||
@media only screen and (min-width: 850px) { | |||
#bodyContent { | |||
zoom: 1; | |||
} | |||
} | } | ||
/* Rules for small screen devices like smartphones */ | |||
.citizen-section-collapsible{ | @media only screen and (max-width: 570px) { | ||
tr { | |||
display: flex!important; | |||
flex-direction: column!important; | |||
align-items: center!important; | |||
} | |||
.citizen-section-collapsible{ | |||
zoom: 1.5; | |||
} | |||
.citizen-table-wrapper { | |||
overflow: hidden!important; | |||
border-radius: 25px!important; | |||
} | |||
font { | |||
font-size: 1.3rem!important; | |||
} | |||
.mw-headline { | |||
font-size: 2.5rem!important; | |||
} | |||
} | } | ||
/* General CSS rules */ | |||
tr { | tr { | ||
display: flex; | |||
flex-direction: row; | |||
align-items: center | |||
} | } | ||
.citizen-table-wrapper { | .citizen-table-wrapper { | ||
border-radius: 15px; | |||
} | } | ||
table { | |||
border: none!important; | |||
overflow: hidden!important; | |||
} | } |
Version du 12 février 2024 à 12:09
/*############ Custom CSS for WikiThionville. ############*/ /* Responsive content zoom */ @media only screen and (max-width: 270px) { #bodyContent { zoom: 0.2; } } @media only screen and (min-width: 270px) { #bodyContent { zoom: 0.3; } } @media only screen and (min-width: 340px) { #bodyContent { zoom: 0.4; } } @media only screen and (min-width: 415px) { #bodyContent { zoom: 0.5; } } @media only screen and (min-width: 570px) { #bodyContent { zoom: 0.7; } } @media only screen and (min-width: 730px) { #bodyContent { zoom: 0.9; } } @media only screen and (min-width: 850px) { #bodyContent { zoom: 1; } } /* Rules for small screen devices like smartphones */ @media only screen and (max-width: 570px) { tr { display: flex!important; flex-direction: column!important; align-items: center!important; } .citizen-section-collapsible{ zoom: 1.5; } .citizen-table-wrapper { overflow: hidden!important; border-radius: 25px!important; } font { font-size: 1.3rem!important; } .mw-headline { font-size: 2.5rem!important; } } /* General CSS rules */ tr { display: flex; flex-direction: row; align-items: center } .citizen-table-wrapper { border-radius: 15px; } table { border: none!important; overflow: hidden!important; }