F-Zero Wiki
No edit summary
Tag: sourceedit
No edit summary
Tag: sourceedit
Line 9: Line 9:
 
color: #ff0000 !important;
 
color: #ff0000 !important;
 
font-weight: bold !important;
 
font-weight: bold !important;
font-family:Impact, Charcoal, sans-serif !important;
+
font-family: Impact, Charcoal, sans-serif !important;
 
}
 
}
   

Revision as of 00:36, 22 May 2017

/* highlight administrators with a gold color*/
a[href$="Waybig101"] {
    color: #32CD32 !important;
    font-weight: bold !important;
    font-family: Impact, Charcoal, sans-serif !important;
}

a[href$="Bommercannyboskov"] {
    color: #ff0000 !important;
    font-weight: bold !important;
    font-family: Impact, Charcoal, sans-serif !important;
}

a[href$="M.E.R.255"] { /* overwritten to suit the admin */
    color: #66f !important;
    font-family: "Trebuchet MS", Helvetica, sans-serif !important;
}
a[href$="Waybig101"]:hover {color: #ffe788 !important;}
a[href$="M.E.R.255"]:hover {color: #99f !important;}


/* overwriting CSS rules here (added by M.E.R.255) */
.WikiaPage .WikiaPageBackground{
    opacity: 0.85; /* makes the background more opaque */
}

a {
    color: #00a8f8; /* Blue Falcon's color from F-Zero SNES to lighten up the links */
    text-decoration: none;
    border-bottom: 0px solid #00a8f8; /* in case RGBA doesn't work */
    border-bottom: 1px solid rgba(0, 168, 248, 0); /* Blue Falcon's color made transparent */
/* start of transition effects */
    -webkit-transition: color 0.7s, border-bottom 0.7s;
    -moz-transition: color 0.7s, border-bottom 0.7s;
    -o-transition: color 0.7s, border-bottom 0.7s;
    transition: color 0.7s, border-bottom 0.7s;
/* end of transition effects */
    -webkit-background-clip: padding-box; /* for Safari */
    background-clip: padding-box; /* for IE9+, Firefox 4+, Opera, Chrome */
}

a:hover {
    color: #b0c8e8; /* another color from Blue Falcon in F-Zero SNES */
    text-decoration: none; /* gets replaced by a smooth transitioning border */
    border-bottom: 1px solid #b0c8e8; /* in case RGBA doesn't work */
    border-bottom: 1px solid rgba(176, 200, 232, 1); /* smooth transition */
}

a img, img.lzyTrns{
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
    -webkit-transition: all 0.7s  !important;
    -moz-transition: all 0.7s  !important;
    -o-transition: all 0.7s  !important;
    transition: all 0.7s !important;
}

a img:hover{ /* brightens the clickable image when hovering over it */
    -webkit-filter: brightness(150%);
    filter: brightness(150%);
}

a img:focus{outline: none;}

.WikiaRail .rail-module .wds-button.wds-is-secondary{
    color: #00a8f8;
    border-color: #00a8f8;
}

.WikiaRail .rail-module .wds-button.wds-is-secondary:hover{
    color: #b0c8e8;
    border-color: #b0c8e8;
}