MediaWiki:Common.css: Difference between revisions
MediaWiki interface page
More actions
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
/* | /* Grid */ | ||
. | .home-grid { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px; } | ||
.home-card { background: rgba(255,255,255,0.03); border: 1px solid #333; border-radius: 4px; padding: 15px; } | |||
.home-card-featured { flex: 2; min-width: 350px; border-left: 4px solid #a47719; } | |||
.home-card-sidebar { flex: 1; min-width: 250px; } | |||
} | |||
/* | /* Dashboard Action Buttons */ | ||
. | .action-button { display: block; padding: 12px; margin-bottom: 8px; border-radius: 4px; text-align: center; font-weight: bold; color: #fff !important; text-decoration: none !important; } | ||
.btn-discord { background: #5865F2; } | |||
.btn-patreon { background: #FF424D; } | |||
. | .btn-kofi { background: #FF5E5B; } | ||
. | .btn-reddit { background: #FF4500; } | ||
/* | /* Category Tiles */ | ||
. | .tile-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 8px; margin: 20px 0; } | ||
. | .tile { background: #1a1a1a; border: 1px solid #333; padding: 10px; text-align: center; font-size: 12px; font-weight: bold; transition: 0.2s; } | ||
. | .tile:hover { border-color: #a47719; background: #222; } | ||
/* Header Search Subtitle */ | |||
.header-subtitle { text-align: center; font-style: italic; color: #888; margin-bottom: 20px; } | |||
Revision as of 13:20, 9 May 2026
/* Grid */
.home-grid { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px; }
.home-card { background: rgba(255,255,255,0.03); border: 1px solid #333; border-radius: 4px; padding: 15px; }
.home-card-featured { flex: 2; min-width: 350px; border-left: 4px solid #a47719; }
.home-card-sidebar { flex: 1; min-width: 250px; }
/* Dashboard Action Buttons */
.action-button { display: block; padding: 12px; margin-bottom: 8px; border-radius: 4px; text-align: center; font-weight: bold; color: #fff !important; text-decoration: none !important; }
.btn-discord { background: #5865F2; }
.btn-patreon { background: #FF424D; }
.btn-kofi { background: #FF5E5B; }
.btn-reddit { background: #FF4500; }
/* Category Tiles */
.tile-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 8px; margin: 20px 0; }
.tile { background: #1a1a1a; border: 1px solid #333; padding: 10px; text-align: center; font-size: 12px; font-weight: bold; transition: 0.2s; }
.tile:hover { border-color: #a47719; background: #222; }
/* Header Search Subtitle */
.header-subtitle { text-align: center; font-style: italic; color: #888; margin-bottom: 20px; }