User:Xenwolf/common.css: Difference between revisions

From Xenharmonic Wiki
Jump to navigation Jump to search
Xenwolf (talk | contribs)
m testing...
Xenwolf (talk | contribs)
reduced to planned site-wide CSS addition
Line 1: Line 1:
span.monzo, span.val {
/* for [[Template::Monzo]] and [[Template::Val]] */
  white-space:nowrap;
/* prevent line breaks within monzo and val notations */
}
span.monzo,
span.monzo::before {
span.val {
  content: "|";
   white-space: nowrap;
  padding-right:0.125em;
}
span.monzo::after {
  content: "⟩";
  padding-left:0.125em;
}
span.val::before {
   content: "⟨";
  padding-right:0.125em;
}
span.val::after {
  content: "|";
  padding-left:0.125em;
}
}

Revision as of 10:22, 31 May 2020

/* for [[Template::Monzo]] and [[Template::Val]] */
/* prevent line breaks within monzo and val notations */
span.monzo, 
span.val {
  white-space: nowrap;
}