MediaWiki

Difference between revisions of "Common.css"

From DelDOT CADD Wiki

Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


/* Change the body font-family for entire site.  
/* Change the body font-family for entire site. */
body {
body {
   font-family: calibri light;
   font-family: calibri light;
}
}
*/
 


/* Don't like the black top bar? Copy this into your Foreground.css and change the colors  
/* Don't like the black top bar? Copy this into your Foreground.css and change the colors  

Revision as of 20:10, 30 September 2021

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

/* Change the body font-family for entire site. */
body {
   font-family: calibri light;
}


/* Don't like the black top bar? Copy this into your Foreground.css and change the colors 
.top-bar, 
.top-bar-section ul, 
.top-bar-section ul li.active > a, 
.top-bar-section li a:not(.button), 
.top-bar-section .has-form {
    background: ##3366ff;
}

.top-bar-section > ul > .divider,
.top-bar-section > ul > [role="separator"] {
  border-color: #3366ff;
}
*/


/* 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;
}

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

<div style="text-align: center;">   [[#top|[Back to Top]]]</div>