Startseite

Zuletzt geändert von Lucas Meister am 2026/05/23 13:07

body, .dashboard-wrapper {
  font-family: 'Inter', sans-serif;
}

/* Seite */
.dashboard-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 35px 25px;
}

/* Grid */
.dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

/* Kachel */
.tile {
  background: rgba(23, 115, 69, 0.82); /* CI Grün transparent */
  border-radius: 18px;
  padding: 26px 22px;
  text-decoration: none !important; /* KEINE Unterstreichung */
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;   /* alles zentriert */
  justify-content: center;
  min-height: 170px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  transition: all 0.25s ease;
}

/* Hover */
.tile:hover {
  transform: translateY(-6px);
  background: rgba(23, 115, 69, 0.95);
  box-shadow: 0 14px 30px rgba(0,0,0,0.28);
}

/* Icon oben zentriert */
.tile-icon {
  font-size: 30px;
  margin-bottom: 12px;
}

/* Titel */
.tile-title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

/* Beschreibung */
.tile-desc {
  font-size: 13px;
  opacity: 0.9;
  margin-top: 6px;
  text-align: center;
  line-height: 1.4;
}