Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Revision as of 07:40, 11 June 2026 by Shiki (talk | contribs) (Created page with ".vr-hero { text-align: center; padding: 2.5em 1em 2em; } .vr-hero__title { font-size: 2.4em; font-weight: 700; color: var(--color-base); letter-spacing: 0.04em; text-transform: uppercase; } .vr-hero__sub { color: var(--color-base--subtle); font-size: 1.1em; margin-top: 0.4em; } .vr-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1em; padding: 0 0 2em; } .vr-card { background: var(--color-surface-2);...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
.vr-hero {
  text-align: center;
  padding: 2.5em 1em 2em;
}
.vr-hero__title {
  font-size: 2.4em;
  font-weight: 700;
  color: var(--color-base);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.vr-hero__sub {
  color: var(--color-base--subtle);
  font-size: 1.1em;
  margin-top: 0.4em;
}

.vr-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1em;
  padding: 0 0 2em;
}
.vr-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-surface-4);
  border-top: 3px solid var(--color-primary);
  padding: 1em 1.2em;
  border-radius: 4px;
}
.vr-card h3 {
  margin: 0 0 0.4em;
  font-size: 1.05em;
}
.vr-card p {
  color: var(--color-base--subtle);
  font-size: 0.9em;
  margin: 0;
}