MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 14: | Line 14: | ||
height: auto !important; | height: auto !important; | ||
aspect-ratio: 16 / 9; | aspect-ratio: 16 / 9; | ||
/* Desktop: 3 coloane */ | |||
table.responsive-three-cols td.col { | |||
width: 33%; | |||
} | |||
@media screen and (max-width: 720px) { | @media screen and (max-width: 720px) { | ||
| Line 21: | Line 26: | ||
padding-right: 0 !important; | padding-right: 0 !important; | ||
box-sizing: border-box !important; | box-sizing: border-box !important; | ||
} | |||
table.responsive-three-cols td.col { | |||
display: block; | |||
width: 100%; | |||
} | } | ||
Revision as of 10:26, 23 July 2026
/* CSS placed here will be applied to all skins */
.col2-responsive td {
width: 50%;
}
//.embedvideo {
// width: 100%;
// margin: 0 auto; /* centrează pe desktop */
//}
.embedvideo iframe {
width: 100% !important;
height: auto !important;
aspect-ratio: 16 / 9;
/* Desktop: 3 coloane */
table.responsive-three-cols td.col {
width: 33%;
}
@media screen and (max-width: 720px) {
.col2-responsive td {
display: block !important;
width: 100% !important;
padding-right: 0 !important;
box-sizing: border-box !important;
}
table.responsive-three-cols td.col {
display: block;
width: 100%;
}
//.embedvideo iframe {
// width: 100% !important;
// height: auto !important;
// aspect-ratio: 16 / 9;
//}