Startseite

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

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

.dashboard-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 30px;
}

/* HEADER */
.title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.6px;
  margin-bottom: 6px;
}

.subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

/* SECTION */
.section {
  margin-bottom: 32px;
}

.section-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #888;
  margin-bottom: 12px;
}

/* GRID (cleaner, weniger “App-Kacheln”) */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

/* CARD (Dev-Portal Style) */
.card {
  background: white;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 14px 16px;
  text-decoration: none !important;
  color: #222;
  transition: all 0.15s ease;
}

.card:hover {
  border-color: #b7e4c7;
  background: #f6fffa;
}

/* TITLE */
.card-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

/* DESC */
.card-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

/* subtle accent line (optional dev-portal feel) */
.accent {
  height: 2px;
  width: 40px;
  background: #1b7a4a;
  margin: 10px 0 18px;
  border-radius: 2px;
}