Difference between revisions of "MediaWiki:Common.css"

From Delaware DOT CADD Manual Wiki
Jump to navigation Jump to search
Line 18: Line 18:
 
a:active {
 
a:active {
 
     color: green;
 
     color: green;
 +
}
 +
 +
 +
/*Formatting for Change Table*/
 +
.ChangesTable {
 +
    border: 1px solid black;
 
}
 
}
  

Revision as of 10:49, 5 February 2021

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

/* CSS for Links -----------------------------------------*/

/* A link that has not been visited */
a:link {
    color: blue;
}
/* A link that has been visited */
a:visited {
    color: blue;
}
/* A link that is hovered on */
a:hover {
    color: red;
}
/* A link that is selected */
a:active {
    color: green;
}


/*Formatting for Change Table*/
.ChangesTable {
    border: 1px solid black;
}


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

/* Header that is red*/
.warning_red {
    color: red;
    font-size: 20px;
}