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 */
/* Featured Wiki Grid */
.bbog-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 24px;
margin-top: 10px;
}
@media (max-width: 700px) {
.bbog-grid {
grid-template-columns: 1fr;
}
}
.bbog-card {
text-align: center;
padding: 12px;
}
.bbog-featured-title {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 12px;
}
.bbog-featured-img img {
width: 100%;
height: auto;
max-width: 520px;
border-radius: 12px;
display: block;
margin: 0 auto;
transition: transform 0.15s ease;
}
.bbog-featured-img img:hover {
transform: scale(1.02);
}
.bbog-featured-link {
margin-top: 12px;
}