MediaWiki:Common.css: Difference between revisions
Appearance
Created page with "→CSS placed here will be applied to all skins: .portal-buttons { display: flex; gap: 1rem; }" |
No edit summary |
||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
. | .image-buttons, .image-buttons ul { | ||
display: flex; | display: flex; | ||
align-items: stretch; | |||
justify-content: space-evenly; | |||
gap: 1rem; | gap: 1rem; | ||
} | |||
.image-button-container { | |||
display: flex; | |||
border: 1px solid #aaa; | |||
} | |||
.image-button-container img { | |||
width: 100%; | |||
height: 100%; | |||
} | } | ||