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

Template:Staff/container.css

Template page
.staff-section {
  margin: 12px 0 24px;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.staff-empty {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 12px;
  border: 2px dashed rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #9aa4b2;
  font-size: 13px;
}

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