MediaWiki:Common.css: Difference between revisions

From CPC Game Making
mNo edit summary
No edit summary
Line 3: Line 3:
div {
div {
   word-break: break-all;  /* https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_text/Wrapping_breaking_text */
   word-break: break-all;  /* https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_text/Wrapping_breaking_text */
}
.box {
  border: 2px dashed #baa047;
  border-radius: 20px;
  color: #979797;
  display: inline-block;
  padding: 0 20px;
}
}

Revision as of 13:13, 13 July 2025

/* CSS placed here will be applied to all skins */

div {
  word-break: break-all;  /* https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_text/Wrapping_breaking_text */
}

.box {
  border: 2px dashed #baa047;
  border-radius: 20px;
  color: #979797;
  display: inline-block;
  padding: 0 20px;
}