Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Template:MainPage/Patch/styles.css

Template page
Revision as of 05:38, 2 January 2026 by Meepl (talk | contribs) (Created page with ".event-banner { position: relative; width: 100%; height: 120px; border-radius: 8px; overflow: hidden; margin: 20px 0; } .banner-bg { width: 100%; height: 100%; object-fit: cover; } .banner-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; display: flex; justify-content: space-between; align-items: center; padding: 20px 30px; background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%); z-index: 2;...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
.event-banner {
  position: relative;
  width: 100%;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  margin: 20px 0;
}

.banner-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
  z-index: 2;
}

.banner-text-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.banner-title {
  font-family: Barlow, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.banner-subtitle {
  font-family: Barlow, sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.banner-text-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.live-badge, .version-badge {
  font-family: Barlow, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
}

.live-badge {
  background: rgba(76, 175, 80, 0.8);
}

.version-badge {
  background: rgba(255, 255, 255, 0.2);
}