Difference between revisions of "MediaWiki:Common.css"
Line 1: | Line 1: | ||
/*************************/ | /*************************/ | ||
+ | /* Define the Fade Class */ | ||
+ | /*************************/ | ||
+ | |||
+ | .fade { | ||
+ | opacity: 1; | ||
+ | transition: opacity .25s ease-in-out; | ||
+ | -moz-transition: opacity .25s ease-in-out; | ||
+ | -webkit-transition: opacity .25s ease-in-out; | ||
+ | } | ||
+ | |||
+ | .fade:hover { | ||
+ | opacity: 0.5; | ||
+ | } | ||
+ | |||
+ | /************************/ | ||
/* Adding a custom font */ | /* Adding a custom font */ | ||
/************************/ | /************************/ | ||
Line 8: | Line 23: | ||
} | } | ||
− | ************************/ | + | *************************/ |
/*** Map Marking Code ***/ | /*** Map Marking Code ***/ | ||
/************************/ | /************************/ | ||
Line 180: | Line 195: | ||
font-size: 85%; | font-size: 85%; | ||
background-color: white; | background-color: white; | ||
− | |||
} | } | ||
Revision as of 18:15, 4 October 2017
/*************************/ /* Define the Fade Class */ /*************************/ .fade { opacity: 1; transition: opacity .25s ease-in-out; -moz-transition: opacity .25s ease-in-out; -webkit-transition: opacity .25s ease-in-out; } .fade:hover { opacity: 0.5; } /************************/ /* Adding a custom font */ /************************/ @font-face { font-family: "Procopius"; src: url('/procopius.ttf'); } *************************/ /*** Map Marking Code ***/ /************************/ .mapmark {position: relative; width: 500px; height: 350px;} .wrap { white-space: pre-wrap; } /************************/ /*** MAP TOOLTIPS ******/ /************************/ .tt1 { position: relative; color: #3a705e; } /* static part of the tooltip style */ .tt2 { font-size: 85%; } .tt1 .tt2 { position: absolute; display: none; width: 500px; margin-left: 0px; padding-left: 0px; padding-right: 0px; border: 0px solid #000000; box-shadow: 0px 0px 0px #000000; } .tt2-l { top: 0; left: 70px; } .tt2-fix { top: 0; right: 70px; } .tt2-b { bottom: -65px; left: 70px; } .tt2-b-fix { bottom: -65px; right: 70px; } .tt1:hover .tt2 { display: block; z-index: 1000; } ************************/ /*** ITEM TOOL TIPS ***/ /***********************/ .item1 { position: relative; color: #576da8; } /* static part of the tooltip style */ .item2 { font-size: 100%; } .item1 .item2 { position: absolute; display: none; width: 330px; margin-left: 0px; padding-left: 0px; padding-right: 0px; border: 0px solid #000000; box-shadow: 0px 0px 0px #000000; } .item2-l { top: 0; left: 70px; } .item2-fix { top: 0; right: 70px; } .item2-b { bottom: -65px; left: 70px; } .item2-b-fix { bottom: -65px; right: 70px; } .item1:hover .item2 { display: block; z-index: 1000; } ************************/ /** POWER TOOL TIPS ***/ /***********************/ .pow1 { position: relative; color: #576da8; } /* static part of the tooltip style */ .pow2 { font-size: 100%; } .pow1 .pow2 { position: absolute; display: none; width: 175px; margin-left: 0px; padding-left: 0px; padding-right: 0px; border: 0px solid #000000; box-shadow: 3px 3px 6px #000000; } .pow2-l { top: 0; left: 70px; } .pow2-fix { top: 0; right: 70px; } .pow2-b { bottom: -65px; left: 70px; } .pow2-b-fix { bottom: -65px; right: 70px; } .pow1:hover .pow2 { display: block; z-index: 1000; } /************************/ /*** TEST TOOLTIPS *****/ /************************/ .tool1 { position: relative; color: #3a705e; } /* static part of the tooltip style */ .tool2 { font-size: 85%; background-color: white; } .tool1 .tool2 { position: absolute; display: none; width: 150px; margin-left: 2px; padding-left: 2px; padding-right: 2px; border: 1px solid #000000; box-shadow: 3px 3px 3px #000000; } .tool2-l { top: 0; left: 70px; } .tool2-fix { top: 0; right: 70px; } .tool2-b { bottom: -65px; left: 70px; } .tool2-b-fix { bottom: -65px; right: 70px; } .tool1:hover .tool2 { display: block; z-index: 1000; } /*********************/ /*** LINK HOVERING ***/ /*********************/ /*UNVISITED LINKS */ a, .color2 a { color: #388aaf; } a: hover, .color2 a:hover { /* VISITED LINKS */ color: #2081ad; text-decoration: none; text-shadow: #2dbdff 0 0 8px; } a: visited, .color2 a:visited { color: #2081ad; text-decoration: none; } a: visited: hover, .color2 a:visited:hover { /* NEW LINKS */ color: #388aaf; text-decoration: none; text-shadow: #2dbdff 0 0 8px; } a.new { color: #871611 !important; } a.new: hover, .color2 a.new:hover { color: #388aaf!important; text-decoration: none; text-shadow: #2dbdff 0 0 8px !important; }