MediaWiki: Common.css: Difference between revisions

From Psalms: Layer by Layer
Jump to: navigation, search
(Created page with "→‎CSS placed here will be applied to all skins: .list-one li { list-style-type: upper-roman; } .list-two li { list-style-type: upper-alpha; } .list-three li { list...")
 
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


.list-one li {
.list-1 li {
   list-style-type: upper-roman;
   list-style-type: upper-roman;
}
}


.list-two li {
.list-2 li {
   list-style-type: upper-alpha;
   list-style-type: upper-alpha;
}
}


.list-three li {
.list-3 li {
   list-style-type: decimal;
   list-style-type: decimal;
}
}


.list-four li {
.list-4 li {
   list-style-type: lower-alpha;
   list-style-type: lower-alpha;
}
}

Revision as of 13:11, 11 December 2019

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

.list-1 li {
  list-style-type: upper-roman;
}

.list-2 li {
  list-style-type: upper-alpha;
}

.list-3 li {
  list-style-type: decimal;
}

.list-4 li {
  list-style-type: lower-alpha;
}