MediaWiki:Common.css: Difference between revisions
No edit summary |
No edit summary |
||
| Line 204: | Line 204: | ||
max-width: 100% !important; | max-width: 100% !important; | ||
width: 100% !important; | width: 100% !important; | ||
} | |||
/* Fix cha-title showing as box */ | |||
.cha-title { | |||
display: block !important; | |||
border: none !important; | |||
background: none !important; | |||
padding: 0 !important; | |||
margin-bottom: 6px !important; | |||
font-size: 11px !important; | |||
color: #888 !important; | |||
text-transform: uppercase !important; | |||
letter-spacing: 0.8px !important; | |||
} | |||
/* 3 columns on desktop */ | |||
@media (min-width: 1024px) { | |||
.column { | |||
flex: 1 1 calc(33% - 24px) !important; | |||
max-width: calc(33% - 24px) !important; | |||
} | |||
} | |||
/* 2 columns on tablet */ | |||
@media (min-width: 600px) and (max-width: 1023px) { | |||
.column { | |||
flex: 1 1 calc(50% - 24px) !important; | |||
max-width: calc(50% - 24px) !important; | |||
} | |||
} | } | ||