MediaWiki:Common.css: Difference between revisions

From Delaware DOT Construction Manual
Jump to navigation Jump to search
No edit summary
No edit summary
Line 5: Line 5:
/* --------- White Link Text for Back To Top --------- */
/* --------- White Link Text for Back To Top --------- */


.backtoptop a {
.backtotop a {
       color: white;
       color: white;
       }
       }

Revision as of 14:25, 28 February 2022

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

.tocnumber { display: none; }

/* --------- White Link Text for Back To Top --------- */

.backtotop a {
      color: white;
      }

/* --------- Changing TOC design ------- */

#mw-toc-heading {
  font-size: 100%;
  writing-mode: ;
}


/* ------------------------------------- */

/* ---------- Unordered list with white text and white bullet ------------- */

ul.white {
    list-style-image: url("http://png.com/ellipse.png");
    color: white;
}

/* ---------- Bold and Blue text ------------- */

.blue {
    color: #4472C4; 
    font-weight: bold;
}


/* ---------- Custom alphanumeric list structure ------------- */

/*1*/
div.num_ol ol{
    list-style-type:decimal;
}
/*2*/
div.num_ol ol ol{
    list-style-type:lower-alpha;
}
/*3*/
div.num_ol ol ol ol{
    list-style-type:lower-roman;
}
/*4*/
div.num_ol ol ol ol ol{
	list-style-type:disc;
}