Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Revision as of 08:44, 14 May 2026 by Nadanke (talk | contribs) (Created page with "CSS placed here will be applied to all skins: .dw-mainpage { max-width: 1200px; margin: 0 auto; } .dw-hero { padding: 2rem; margin-bottom: 1.5rem; border-radius: 16px; background: linear-gradient(135deg, rgba(120, 82, 38, 0.35), rgba(46, 38, 25, 0.35)); border: 1px solid rgba(180, 145, 90, 0.25); } .dw-hero-title { font-size: 2.2rem; font-weight: 800; line-height: 1.1; margin-bottom: 0.5rem; } .dw-hero-subtitle { font-size: 1.15rem; font-weight: 600;...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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 */
.dw-mainpage {
	max-width: 1200px;
	margin: 0 auto;
}

.dw-hero {
	padding: 2rem;
	margin-bottom: 1.5rem;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(120, 82, 38, 0.35), rgba(46, 38, 25, 0.35));
	border: 1px solid rgba(180, 145, 90, 0.25);
}

.dw-hero-title {
	font-size: 2.2rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 0.5rem;
}

.dw-hero-subtitle {
	font-size: 1.15rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.dw-hero-text {
	opacity: 0.9;
}

.dw-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.dw-card {
	padding: 1.1rem 1.25rem;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.dw-card-wide {
	grid-column: span 3;
}

.dw-card-title {
	font-size: 1.25rem;
	font-weight: 800;
	margin-bottom: 0.75rem;
	padding-bottom: 0.35rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.dw-card ul {
	margin-bottom: 0;
}

@media (max-width: 900px) {
	.dw-grid {
		grid-template-columns: 1fr;
	}

	.dw-card-wide {
		grid-column: span 1;
	}
}