Difference between revisions of "User:KamranMackey/common.css"

From Industrial-Craft-Wiki
Jump to navigation Jump to search
(Whoops. Added something which shouldn't have been there.)
(Got rid of most of the CSS. Most of it doesn't even work on the wiki anyway.)
Line 10: Line 10:
a.new:visited, #p-personal a.new:visited{
a.new:visited, #p-personal a.new:visited{
   color: #BA0000 !important;
   color: #BA0000 !important;
}
/** Styling for links in grids **/
.grid .image > a:hover, .gridContainer .gridImage > a:hover{
border-radius:0 !important;
-webkit-border-radius:0 !important;
-moz-border-radius:0 !important;
-khtml-border-radius:0 !important;
box-shadow:none !important;
-webkit-box-shadow:none !important;
-moz-box-shadow:none !important;
background-color: rgba(0, 0, 0, 0) !important;
}
.gridContainer .gridImage .gridNumber a:hover{
background-color: rgba(0, 0, 0, 0) !important;
background:none !important;
border-radius:0 !important;
-webkit-border-radius:0 !important;
-moz-border-radius:0 !important;
-khtml-border-radius:0 !important;
box-shadow:none !important;
-webkit-box-shadow:none !important;
-moz-box-shadow:none !important;
}
.gridContainer a.new, .gridContainer a, .gridContainer a:hover, .gridContainer a.new:hover{
    color: rgba(0,0,0,0) !important; 
}
.gridNumber a.new, .gridNumber a, .gridNumber a:hover, .gridNumber a.new:hover{
    color: #FFF !important;
    text-decoration: none !important;
    font-weight: normal !important;
}
.gridContainer *, .CraftingGrid *{ 
    font-weight: normal !important;
}
.flaggedrevs-color-1 {
    background-color: #DFF;
}
.flaggedrevs-color-2 {
    background-color: #CEC;
}
.fr-unreviewed-unwatched {
    background-color: #FAA;
}
.flaggedrevs-pending {
    background-color: #FEA;
}
.flaggedrevs-unreviewed {
    background-color: #FCF;
}
#pagehistory li {
    border: none;
}
div#site-notice p{
    margin: 0;
}
/* New Menu design testing */
.navTabs > ul > li > ul > li > ul li {
border-left:1px solid #751D17;
}
.navTabs > ul > li > ul li:hover, .navTabs > ul > li > ul li:hover {
background-color:#751D17;
}
/******************************************/
/*                                        */
/*          /--------------------/        */
/*        /      Hotfixes      /        */
/*        /--------------------/          */
/*                                        */
/******************************************/
/*  Please include in next skin release  */
/******************************************/
.diff { line-height: 1.5em; }
#utcdate a {
font-weight: normal !important;
font-size: 13px !important;
}
hr {
height: 1px;
border: 0;
margin: 0.2em 0;
}
.footer #footer-info-copyright{
margin-top: 1em;
}
.footer #footer-icons li {
float: left;
margin-left: 0.5em;
line-height: 2em;
text-align: right;
}
.footer #footer-info-copyright a{
display: inline;
}
#contentContainer a:link, #contentContainer a:hover, #contentContainer a:visited {
color: #024D87;
}
#mw-content-text a:hover {
background-color: #fff;
}
#mw-content-text a.new {
color: #A12820;
font-weight: normal;
}
}

Revision as of 02:06, 21 February 2015

/*Fixed links changing color if you follow them*/
a,
a:visited,
   .mw-body a.external,
   .mw-body a.external:visited,
   .mw-body a.extiw {
   color: #024EA1 !important;
}

a.new:visited, #p-personal a.new:visited{
   color: #BA0000 !important;
}