Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* CSS placed here will be applied to all skins */
/************************************************/
/* Templates */
.infobox {
background: #eee;
border: 1px solid #aaa;
float: right;
margin: 0 0 1em 1em;
padding: 0.5em;
width: 22em;
}
.infobox-title {
font-size: 2em;
text-align: center;
border-bottom: 1px solid #ccc;
padding-bottom: .25em;
}
.infobox-image{
display: flex;
aspect-ratio: 2 / 1;
align-items: center;
justify-content: center;
}
/* Loosely based on https://en.wikipedia.org/wiki/Template:Infobox */
@media (min-width: 640px) {
.infobox {
float: right;
clear: right;
}
}
@media (max-width: 640px) {
.infobox {
width: 100%;
}
}