MediaWiki:Common.css
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.
/* Container für die Willkommens-Box */
.welcome-container {
background: rgba(20, 20, 25, 0.9);
border: 2px solid #00d4ff;
border-radius: 15px;
padding: 20px;
margin-bottom: 20px;
box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
color: #ffffff;
text-align: center;
}
/* Titel in der Box */
.welcome-title {
font-size: 2em;
font-weight: bold;
color: #00d4ff;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 10px;
text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}
/* Kurze Info-Texte */
.welcome-text {
font-size: 1.1em;
line-height: 1.6;
max-width: 800px;
margin: 0 auto 20px auto;
}
/* Buttons für Schnellzugriff */
.welcome-buttons {
display: flex;
justify-content: center;
gap: 15px;
flex-wrap: wrap;
}
.welcome-button {
background: linear-gradient(135deg, #005f73 0%, #0a9396 100%);
border: 1px solid #94d2bd;
border-radius: 5px;
padding: 10px 20px;
color: white !important;
text-decoration: none !important;
font-weight: bold;
transition: transform 0.2s, box-shadow 0.2s;
}
.welcome-button:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(10, 147, 150, 0.4);
}