MediaWiki:Common.css: Difference between revisions

Testing something out
media query for home page featured section
 
(4 intermediate revisions by one other user not shown)
Line 430: Line 430:
border-radius:10px;  
border-radius:10px;  
flex-grow:1;
flex-grow:1;
html.skin-theme-clientpref-night {
}
background-color: #266ea6;
html.skin-theme-clientpref-night .color1 {
border-color: #8fceff;
background-color: #003b69;
}
border-color: #8bccff;
}
 
.featured-articles-container {
width: inherit;
display: flex;
flex-direction:row;
justify-content:center;
align-items:stretch;
gap:4px;
}
 
@media screen and (max-width: 480px) {
  .featured-articles-container {
    flex-direction:column;
  }
}
}