MediaWiki:Common.css: Difference between revisions

From CPC Game Making
Created page with "CSS placed here will be applied to all skins: a { overflow-wrap: break-word; }"
 
mNo edit summary
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


a {
.break-text {
   overflow-wrap: break-word;
   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;
  margin-top: 15px;
  margin-bottom: 15px;
  max-width: 60%;
  padding: 0 20px;
}
}

Latest revision as of 04:57, 15 July 2025

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

.break-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;
  margin-top: 15px;
  margin-bottom: 15px;
  max-width: 60%;
  padding: 0 20px;
}