MediaWiki

Common.css: Difference between revisions

From Redrock Wiki

No edit summary
No edit summary
Line 81: Line 81:


/* Attempting to change background color */
/* Attempting to change background color */
#content { background-color: #C6C6C6; }
#content { background-color: ##eeeeee; }


#bodyContent { background-color: #C6C6C6; }
#bodyContent { background-color: ##eeeeee; }


#firstHeading { background-color: #C6C6C6; }
#firstHeading { background-color: ##eeeeee; }


#catlinks { background-color: #C6C6C6; }
#catlinks { background-color: ##eeeeee; }


#p-logo { background-color: #C6C6C6; }
#p-logo { background-color: ##eeeeee; }


#p-navigation { background-color: #C6C6C6; }
#p-navigation { background-color: ##eeeeee; }


#p-navigation .pBody { background-color: #C6C6C6; }
#p-navigation .pBody { background-color: ##eeeeee; }


#p-search { background-color: #C6C6C6; }
#p-search { background-color: ##eeeeee; }


#p-search .pBody { background-color: #C6C6C6; }
#p-search .pBody { background-color: ##eeeeee; }


#p-tb { background-color: #C6C6C6; }
#p-tb { background-color: ##eeeeee; }


#p-tb .pBody { background-color: #C6C6C6; }
#p-tb .pBody { background-color: ##eeeeee; }


#footer { background-color: #C6C6C6!important; }
#footer { background-color: ##eeeeee!important; }


body { background-color: #C6C6C6; }
body { background-color: ##eeeeee; }


#globalWrapper { background-color: #C6C6C6; }
#globalWrapper { background-color: ##eeeeee; }


#column-content { background-color: #C6C6C6; }
#column-content { background-color: ##eeeeee; }


#column-one { background-color: #C6C6C6; }
#column-one { background-color: ##eeeeee; }

Revision as of 16:08, 13 November 2023

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

/* Hide titles */ 
.title { display: none; }
#tagline { display: none; }

/* Link Color */
a {color: #0645ad;}

/* Hover Color */
a:hover, a:focus {color: #032356;}

.keywords {
   display: none;
}

/* These are used to draw categories on a page */

.category {
  width: 14em;
  float: right;
  padding-right: 0px;
  padding-bottom: 20px;
  padding-top: 0px;
  padding-left: 20px;
}

.categoryWide {
  width: 16em;
  float: right;
  padding-right: 0px;
  padding-bottom: 20px;
  padding-top: 0px;
  padding-left: 20px;
}

.categoryExtraWide {
  width: 26em;
  float: right;
  padding-right: 0px;
  padding-bottom: 20px;
  padding-top: 0px;
  padding-left: 20px;
}

/* The category template uses this */

.categoryBox {
  background: #f3f3f3; 
  border: 1px solid #c2c2c2; 
  padding: 3px;
  font-weight: bold;
  line-height: 50px;
}

.tcWidget {
  border-radius: 5px;
  padding: 15px;
  font-weight: bold;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,.16),0 0 2px 0 rgba(0,0,0,.12);
  line-height: 50px;
}

/* This class is used because the hr tag doesn't work well with categories */
.line {
 border-top: 1px solid #dddddd;
 overflow: hidden;
 width: auto;
 padding-top: 10px;
}

.hide {
  display: none;
}

.mw-search { display: none; }

.mw-ui-button {
color: grey;
}

/* Attempting to change background color */
#content { background-color: ##eeeeee; }

#bodyContent { background-color: ##eeeeee; }

#firstHeading { background-color: ##eeeeee; }

#catlinks { background-color: ##eeeeee; }

#p-logo { background-color: ##eeeeee; }

#p-navigation { background-color: ##eeeeee; }

#p-navigation .pBody { background-color: ##eeeeee; }

#p-search { background-color: ##eeeeee; }

#p-search .pBody { background-color: ##eeeeee; }

#p-tb { background-color: ##eeeeee; }

#p-tb .pBody { background-color: ##eeeeee; }

#footer { background-color: ##eeeeee!important; }

body { background-color: ##eeeeee; }

#globalWrapper { background-color: ##eeeeee; }

#column-content { background-color: ##eeeeee; }

#column-one { background-color: ##eeeeee; }