Jump to content

📢 Please make sure to read our Style Guide before editing. For questions, suggestions, or technical issues, please contact Noah.

Template:ButtonBox/styles.css

From CrabCraft Wiki
Revision as of 21:24, 23 June 2025 by Noah (talk | contribs) (added styles)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
.buttonbox {
  width: 100%;
  text-align: center;
  border-spacing: 1em;
  border-collapse: separate;
}

.buttonbox-entry {
  display: inline-block;
  width: 100px;
  max-width: 30vw;
  text-align: center;
  transition: transform 0.2s ease;
}

.buttonbox-entry img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.buttonbox-entry:hover img {
  transform: scale(1.08);
}

.buttonbox-label {
  margin-top: 0.3em;
  font-size: 0.9em;
  word-wrap: break-word;
}