Difference between revisions of "MediaWiki:Common.css"
(85 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | */ | + | /************************/ |
+ | /* Define Infobox Style */ | ||
+ | /************************/ | ||
+ | |||
+ | .infobox { | ||
+ | border: 1px solid #aaaaaa; | ||
+ | background-color: #f9f9f9; | ||
+ | color: black; | ||
+ | margin-bottom: 0.5em; | ||
+ | margin-left: 1em; | ||
+ | padding: 0.2em; | ||
+ | float: right; | ||
+ | clear: right; | ||
+ | } | ||
+ | .infobox td, | ||
+ | .infobox th { | ||
+ | vertical-align: top; | ||
+ | } | ||
+ | .infobox caption { | ||
+ | font-size: larger; | ||
+ | margin-left: inherit; | ||
+ | } | ||
+ | .infobox.bordered { | ||
+ | border-collapse: collapse; | ||
+ | } | ||
+ | .infobox.bordered td, | ||
+ | .infobox.bordered th { | ||
+ | border: 1px solid #aaaaaa; | ||
+ | } | ||
+ | .infobox.bordered .borderless td, | ||
+ | .infobox.bordered .borderless th { | ||
+ | border: 0; | ||
+ | } | ||
+ | |||
+ | /*******************************/ | ||
+ | /* Hide the header on mainpage */ | ||
+ | /*******************************/ | ||
+ | |||
+ | .page-Main_Page #siteSub, | ||
+ | .page-Main_Page #contentSub, | ||
+ | .page-Main_Page .firstHeading, | ||
+ | .page-Main_Page_800 #siteSub, | ||
+ | .page-Main_Page_800 #contentSub, | ||
+ | .page-Main_Page_800 .firstHeading, | ||
+ | .page-Main_Page_650 #siteSub, | ||
+ | .page-Main_Page_650 #contentSub, | ||
+ | .page-Main_Page_650 .firstHeading, | ||
+ | .page-Main_Page_480 #siteSub, | ||
+ | .page-Main_Page_480 #contentSub, | ||
+ | .page-Main_Page_480 .firstHeading { | ||
+ | display: none !important; | ||
+ | } | ||
+ | |||
+ | .patrollink { | ||
+ | font-size: 75%; | ||
+ | text-align: right; | ||
+ | position: absolute; | ||
+ | top: 1.5em; | ||
+ | right: 3em; | ||
+ | } | ||
+ | |||
+ | .allpagesredirect { | ||
+ | font-style: italic; | ||
+ | } | ||
+ | .allpagesredirect:after { | ||
+ | content: " (redirect)"; | ||
+ | } | ||
+ | |||
+ | .hiddenStructure { | ||
+ | display: none; | ||
+ | speak: none; | ||
+ | } | ||
+ | |||
+ | /**********************/ | ||
+ | /* Slide-In Animation */ | ||
+ | /** Used for Classes **/ | ||
+ | /**********************/ | ||
+ | |||
+ | #slide2 { | ||
+ | position: relative; | ||
+ | left: -125px; | ||
+ | width: 330px; | ||
+ | -webkit-animation: slide 1s forwards; | ||
+ | -webkit-animation-delay: 0s; | ||
+ | animation: slide 1s forwards; | ||
+ | animation-delay: 0.1s; | ||
+ | } | ||
+ | |||
+ | @-webkit-keyframes slide { | ||
+ | 100% { left: 0; } | ||
+ | } | ||
+ | |||
+ | @keyframes slide { | ||
+ | 100% { left: 0; } | ||
+ | } | ||
+ | |||
+ | /* Slide-In From the Right */ | ||
+ | |||
+ | #slide3 { | ||
+ | position: relative; | ||
+ | left: 125px; | ||
+ | width: 330px; | ||
+ | -webkit-animation: slide 1s forwards; | ||
+ | -webkit-animation-delay: 0s; | ||
+ | animation: slide 1s forwards; | ||
+ | animation-delay: 0.1s; | ||
+ | } | ||
+ | |||
+ | @-webkit-keyframes slide { | ||
+ | 100% { right: 0; } | ||
+ | } | ||
+ | |||
+ | @keyframes slide { | ||
+ | 100% { right: 0; } | ||
+ | } | ||
+ | |||
+ | /**********************/ | ||
+ | /* Slide-In Animation */ | ||
+ | /* Used for Item TTs **/ | ||
+ | /**********************/ | ||
+ | |||
+ | #slide { | ||
+ | position: absolute; | ||
+ | left: -125px; | ||
+ | width: 330px; | ||
+ | -webkit-animation: slide 0.5s forwards; | ||
+ | -webkit-animation-delay: 0s; | ||
+ | animation: slide 0.5s forwards; | ||
+ | animation-delay: 0.1s; | ||
+ | } | ||
+ | |||
+ | @-webkit-keyframes slide { | ||
+ | 100% { left: 0; } | ||
+ | } | ||
+ | |||
+ | @keyframes slide { | ||
+ | 100% { left: 0; } | ||
+ | } | ||
+ | |||
+ | /**********************/ | ||
+ | /* Define the Fade2 ID */ | ||
+ | /* Requires <p> tag.. */ | ||
+ | /**********************/ | ||
+ | |||
+ | #fadein2 p { | ||
+ | |||
+ | -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */ | ||
+ | -moz-animation: fadein 2s; /* Firefox < 16 */ | ||
+ | -ms-animation: fadein 2s; /* Internet Explorer */ | ||
+ | -o-animation: fadein 2s; /* Opera < 12.1 */ | ||
+ | animation: fadein 2s; | ||
+ | } | ||
+ | |||
+ | @keyframes fadein { | ||
+ | from { opacity: 0; } | ||
+ | to { opacity: 1; } | ||
+ | } | ||
+ | |||
+ | /* Firefox < 16 */ | ||
+ | @-moz-keyframes fadein { | ||
+ | from { opacity: 0; } | ||
+ | to { opacity: 1; } | ||
+ | } | ||
+ | |||
+ | /* Safari, Chrome and Opera > 12.1 */ | ||
+ | @-webkit-keyframes fadein { | ||
+ | from { opacity: 0; } | ||
+ | to { opacity: 1; } | ||
+ | } | ||
+ | |||
+ | /* Internet Explorer */ | ||
+ | @-ms-keyframes fadein { | ||
+ | from { opacity: 0; } | ||
+ | to { opacity: 1; } | ||
+ | } | ||
+ | |||
+ | /* Opera < 12.1 */ | ||
+ | @-o-keyframes fadein { | ||
+ | from { opacity: 0; } | ||
+ | to { opacity: 1; } | ||
+ | } | ||
+ | |||
+ | /**********************/ | ||
+ | /* Define the Fade ID */ | ||
+ | /* Requires <p> tag.. */ | ||
+ | /**********************/ | ||
+ | |||
+ | #fadein p { | ||
+ | |||
+ | -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */ | ||
+ | -moz-animation: fadein 1s; /* Firefox < 16 */ | ||
+ | -ms-animation: fadein 1s; /* Internet Explorer */ | ||
+ | -o-animation: fadein 1s; /* Opera < 12.1 */ | ||
+ | animation: fadein 1s; | ||
+ | } | ||
+ | |||
+ | @keyframes fadein { | ||
+ | from { opacity: 0; } | ||
+ | to { opacity: 1; } | ||
+ | } | ||
+ | |||
+ | /* Firefox < 16 */ | ||
+ | @-moz-keyframes fadein { | ||
+ | from { opacity: 0; } | ||
+ | to { opacity: 1; } | ||
+ | } | ||
+ | |||
+ | /* Safari, Chrome and Opera > 12.1 */ | ||
+ | @-webkit-keyframes fadein { | ||
+ | from { opacity: 0; } | ||
+ | to { opacity: 1; } | ||
+ | } | ||
+ | |||
+ | /* Internet Explorer */ | ||
+ | @-ms-keyframes fadein { | ||
+ | from { opacity: 0; } | ||
+ | to { opacity: 1; } | ||
+ | } | ||
+ | |||
+ | /* Opera < 12.1 */ | ||
+ | @-o-keyframes fadein { | ||
+ | from { opacity: 0; } | ||
+ | to { opacity: 1; } | ||
+ | } | ||
+ | |||
+ | /************************/ | ||
+ | /* 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; | 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: 350px; | ||
+ | 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: 300px; | ||
+ | margin-left: 0px; | ||
+ | padding-left: 0px; | ||
+ | padding-right: 0px; | ||
+ | border: 0px solid #000000; | ||
+ | box-shadow: 0px 0px 0px #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; | ||
+ | } | ||
+ | |||
+ | /**************************/ | ||
+ | /*** ENCHANT TOOL TIPS ***/ | ||
+ | /**************************/ | ||
+ | |||
+ | .ench1 { | ||
+ | position: relative; | ||
+ | color: #576da8; | ||
+ | } | ||
+ | |||
+ | /* static part of the tooltip style */ | ||
+ | .ench2 { | ||
+ | font-size: 100%; | ||
+ | } | ||
+ | |||
+ | .ench1 .ench2 { | ||
+ | position: absolute; | ||
+ | display: none; | ||
+ | width: 350px; | ||
+ | margin-left: 0px; | ||
+ | padding-left: 0px; | ||
+ | padding-right: 0px; | ||
+ | border: 0px solid #000000; | ||
+ | box-shadow: 0px 0px 0px #000000; | ||
+ | } | ||
+ | |||
+ | .ench2-l { | ||
+ | top: 0; | ||
+ | left: 70px; | ||
+ | } | ||
+ | |||
+ | .ench2-fix { | ||
+ | top: 0; | ||
+ | right: 70px; | ||
+ | } | ||
+ | |||
+ | .ench2-b { | ||
+ | bottom: -65px; | ||
+ | left: 70px; | ||
+ | } | ||
+ | |||
+ | .ench2-b-fix { | ||
+ | bottom: -65px; | ||
+ | right: 70px; | ||
+ | } | ||
+ | |||
+ | .ench1:hover .ench2 { | ||
+ | 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; | ||
+ | } | ||
+ | |||
+ | /**********************************/ | ||
+ | /* Hide the header on class pages */ | ||
+ | /**********************************/ | ||
+ | |||
+ | .page-Assassin #siteSub, | ||
+ | .page-Assassin #contentSub, | ||
+ | .page-Assassin .firstHeading, | ||
+ | .page-Assassin_800 #siteSub, | ||
+ | .page-Assassin_800 #contentSub, | ||
+ | .page-Assassin_800 .firstHeading, | ||
+ | .page-Assassin_650 #siteSub, | ||
+ | .page-Assassin_650 #contentSub, | ||
+ | .page-Assassin_650 .firstHeading, | ||
+ | .page-Assassin_480 #siteSub, | ||
+ | .page-Assassin_480 #contentSub, | ||
+ | .page-Assassin_480 .firstHeading | ||
+ | .page-Barbarian #siteSub, | ||
+ | .page-Barbarian #contentSub, | ||
+ | .page-Barbarian .firstHeading, | ||
+ | .page-Barbarian_800 #siteSub, | ||
+ | .page-Barbarian_800 #contentSub, | ||
+ | .page-Barbarian_800 .firstHeading, | ||
+ | .page-Barbarian_650 #siteSub, | ||
+ | .page-Barbarian_650 #contentSub, | ||
+ | .page-Barbarian_650 .firstHeading, | ||
+ | .page-Barbarian_480 #siteSub, | ||
+ | .page-Barbarian_480 #contentSub, | ||
+ | .page-Barbarian_480 .firstHeading | ||
+ | .page-Bard #siteSub, | ||
+ | .page-Bard #contentSub, | ||
+ | .page-Bard .firstHeading, | ||
+ | .page-Bard_800 #siteSub, | ||
+ | .page-Bard_800 #contentSub, | ||
+ | .page-Bard_800 .firstHeading, | ||
+ | .page-Bard_650 #siteSub, | ||
+ | .page-Bard_650 #contentSub, | ||
+ | .page-Bard_650 .firstHeading, | ||
+ | .page-Bard_480 #siteSub, | ||
+ | .page-Bard_480 #contentSub, | ||
+ | .page-Bard_480 .firstHeading | ||
+ | .page-Channeler #siteSub, | ||
+ | .page-Channeler #contentSub, | ||
+ | .page-Channeler .firstHeading, | ||
+ | .page-Channeler_800 #siteSub, | ||
+ | .page-Channeler_800 #contentSub, | ||
+ | .page-Channeler_800 .firstHeading, | ||
+ | .page-Channeler_650 #siteSub, | ||
+ | .page-Channeler_650 #contentSub, | ||
+ | .page-Channeler_650 .firstHeading, | ||
+ | .page-Channeler_480 #siteSub, | ||
+ | .page-Channeler_480 #contentSub, | ||
+ | .page-Channeler_480 .firstHeading | ||
+ | .page-Channeler #siteSub, | ||
+ | .page-Channeler #contentSub, | ||
+ | .page-Channeler .firstHeading, | ||
+ | .page-Channeler_800 #siteSub, | ||
+ | .page-Channeler_800 #contentSub, | ||
+ | .page-Channeler_800 .firstHeading, | ||
+ | .page-Channeler_650 #siteSub, | ||
+ | .page-Channeler_650 #contentSub, | ||
+ | .page-Channeler_650 .firstHeading, | ||
+ | .page-Channeler_480 #siteSub, | ||
+ | .page-Channeler_480 #contentSub, | ||
+ | .page-Channeler_480 .firstHeading | ||
+ | .page-Confessor #siteSub, | ||
+ | .page-Confessor #contentSub, | ||
+ | .page-Confessor .firstHeading, | ||
+ | .page-Confessor_800 #siteSub, | ||
+ | .page-Confessor_800 #contentSub, | ||
+ | .page-Confessor_800 .firstHeading, | ||
+ | .page-Confessor_650 #siteSub, | ||
+ | .page-Confessor_650 #contentSub, | ||
+ | .page-Confessor_650 .firstHeading, | ||
+ | .page-Confessor_480 #siteSub, | ||
+ | .page-Confessor_480 #contentSub, | ||
+ | .page-Confessor_480 .firstHeading | ||
+ | .page-Crusader #siteSub, | ||
+ | .page-Crusader #contentSub, | ||
+ | .page-Crusader .firstHeading, | ||
+ | .page-Crusader_800 #siteSub, | ||
+ | .page-Crusader_800 #contentSub, | ||
+ | .page-Crusader_800 .firstHeading, | ||
+ | .page-Crusader_650 #siteSub, | ||
+ | .page-Crusader_650 #contentSub, | ||
+ | .page-Crusader_650 .firstHeading, | ||
+ | .page-Crusader_480 #siteSub, | ||
+ | .page-Crusader_480 #contentSub, | ||
+ | .page-Crusader_480 .firstHeading | ||
+ | .page-Doomsayer #siteSub, | ||
+ | .page-Doomsayer #contentSub, | ||
+ | .page-Doomsayer .firstHeading, | ||
+ | .page-Doomsayer_800 #siteSub, | ||
+ | .page-Doomsayer_800 #contentSub, | ||
+ | .page-Doomsayer_800 .firstHeading, | ||
+ | .page-Doomsayer_650 #siteSub, | ||
+ | .page-Doomsayer_650 #contentSub, | ||
+ | .page-Doomsayer_650 .firstHeading, | ||
+ | .page-Doomsayer_480 #siteSub, | ||
+ | .page-Doomsayer_480 #contentSub, | ||
+ | .page-Doomsayer_480 .firstHeading | ||
+ | .page-Druid #siteSub, | ||
+ | .page-Druid #contentSub, | ||
+ | .page-Druid .firstHeading, | ||
+ | .page-Druid_800 #siteSub, | ||
+ | .page-Druid_800 #contentSub, | ||
+ | .page-Druid_800 .firstHeading, | ||
+ | .page-Druid_650 #siteSub, | ||
+ | .page-Druid_650 #contentSub, | ||
+ | .page-Druid_650 .firstHeading, | ||
+ | .page-Druid_480 #siteSub, | ||
+ | .page-Druid_480 #contentSub, | ||
+ | .page-Druid_480 .firstHeading | ||
+ | .page-Fury #siteSub, | ||
+ | .page-Fury #contentSub, | ||
+ | .page-Fury .firstHeading, | ||
+ | .page-Fury_800 #siteSub, | ||
+ | .page-Fury_800 #contentSub, | ||
+ | .page-Fury_800 .firstHeading, | ||
+ | .page-Fury_650 #siteSub, | ||
+ | .page-Fury_650 #contentSub, | ||
+ | .page-Fury_650 .firstHeading, | ||
+ | .page-Fury_480 #siteSub, | ||
+ | .page-Fury_480 #contentSub, | ||
+ | .page-Fury_480 .firstHeading | ||
+ | .page-Huntress #siteSub, | ||
+ | .page-Huntress #contentSub, | ||
+ | .page-Huntress .firstHeading, | ||
+ | .page-Huntress_800 #siteSub, | ||
+ | .page-Huntress_800 #contentSub, | ||
+ | .page-Huntress_800 .firstHeading, | ||
+ | .page-Huntress_650 #siteSub, | ||
+ | .page-Huntress_650 #contentSub, | ||
+ | .page-Huntress_650 .firstHeading, | ||
+ | .page-Huntress_480 #siteSub, | ||
+ | .page-Huntress_480 #contentSub, | ||
+ | .page-Huntress_480 .firstHeading | ||
+ | .page-Necromancer #siteSub, | ||
+ | .page-Necromancer #contentSub, | ||
+ | .page-Necromancer .firstHeading, | ||
+ | .page-Necromancer_800 #siteSub, | ||
+ | .page-Necromancer_800 #contentSub, | ||
+ | .page-Necromancer_800 .firstHeading, | ||
+ | .page-Necromancer_650 #siteSub, | ||
+ | .page-Necromancer_650 #contentSub, | ||
+ | .page-Necromancer_650 .firstHeading, | ||
+ | .page-Necromancer_480 #siteSub, | ||
+ | .page-Necromancer_480 #contentSub, | ||
+ | .page-Necromancer_480 .firstHeading | ||
+ | .page-Nightstalker #siteSub, | ||
+ | .page-Nightstalker #contentSub, | ||
+ | .page-Nightstalker .firstHeading, | ||
+ | .page-Nightstalker_800 #siteSub, | ||
+ | .page-Nightstalker_800 #contentSub, | ||
+ | .page-Nightstalker_800 .firstHeading, | ||
+ | .page-Nightstalker_650 #siteSub, | ||
+ | .page-Nightstalker_650 #contentSub, | ||
+ | .page-Nightstalker_650 .firstHeading, | ||
+ | .page-Nightstalker_480 #siteSub, | ||
+ | .page-Nightstalker_480 #contentSub, | ||
+ | .page-Nightstalker_480 .firstHeading | ||
+ | .page-Prelate #siteSub, | ||
+ | .page-Prelate #contentSub, | ||
+ | .page-Prelate .firstHeading, | ||
+ | .page-Prelate_800 #siteSub, | ||
+ | .page-Prelate_800 #contentSub, | ||
+ | .page-Prelate_800 .firstHeading, | ||
+ | .page-Prelate_650 #siteSub, | ||
+ | .page-Prelate_650 #contentSub, | ||
+ | .page-Prelate_650 .firstHeading, | ||
+ | .page-Prelate_480 #siteSub, | ||
+ | .page-Prelate_480 #contentSub, | ||
+ | .page-Prelate_480 .firstHeading | ||
+ | .page-Priest #siteSub, | ||
+ | .page-Priest #contentSub, | ||
+ | .page-Priest .firstHeading, | ||
+ | .page-Priest_800 #siteSub, | ||
+ | .page-Priest_800 #contentSub, | ||
+ | .page-Priest_800 .firstHeading, | ||
+ | .page-Priest_650 #siteSub, | ||
+ | .page-Priest_650 #contentSub, | ||
+ | .page-Priest_650 .firstHeading, | ||
+ | .page-Priest_480 #siteSub, | ||
+ | .page-Priest_480 #contentSub, | ||
+ | .page-Priest_480 .firstHeading | ||
+ | .page-Ranger #siteSub, | ||
+ | .page-Ranger #contentSub, | ||
+ | .page-Ranger .firstHeading, | ||
+ | .page-Ranger_800 #siteSub, | ||
+ | .page-Ranger_800 #contentSub, | ||
+ | .page-Ranger_800 .firstHeading, | ||
+ | .page-Ranger_650 #siteSub, | ||
+ | .page-Ranger_650 #contentSub, | ||
+ | .page-Ranger_650 .firstHeading, | ||
+ | .page-Ranger_480 #siteSub, | ||
+ | .page-Ranger_480 #contentSub, | ||
+ | .page-Ranger_480 .firstHeading | ||
+ | .page-Scout #siteSub, | ||
+ | .page-Scout #contentSub, | ||
+ | .page-Scout .firstHeading, | ||
+ | .page-Scout_800 #siteSub, | ||
+ | .page-Scout_800 #contentSub, | ||
+ | .page-Scout_800 .firstHeading, | ||
+ | .page-Scout_650 #siteSub, | ||
+ | .page-Scout_650 #contentSub, | ||
+ | .page-Scout_650 .firstHeading, | ||
+ | .page-Scout_480 #siteSub, | ||
+ | .page-Scout_480 #contentSub, | ||
+ | .page-Scout_480 .firstHeading | ||
+ | .page-Sentinel #siteSub, | ||
+ | .page-Sentinel #contentSub, | ||
+ | .page-Sentinel .firstHeading, | ||
+ | .page-Sentinel_800 #siteSub, | ||
+ | .page-Sentinel_800 #contentSub, | ||
+ | .page-Sentinel_800 .firstHeading, | ||
+ | .page-Sentinel_650 #siteSub, | ||
+ | .page-Sentinel_650 #contentSub, | ||
+ | .page-Sentinel_650 .firstHeading, | ||
+ | .page-Sentinel_480 #siteSub, | ||
+ | .page-Sentinel_480 #contentSub, | ||
+ | .page-Sentinel_480 .firstHeading | ||
+ | .page-Templar #siteSub, | ||
+ | .page-Templar #contentSub, | ||
+ | .page-Templar .firstHeading, | ||
+ | .page-Templar_800 #siteSub, | ||
+ | .page-Templar_800 #contentSub, | ||
+ | .page-Templar_800 .firstHeading, | ||
+ | .page-Templar_650 #siteSub, | ||
+ | .page-Templar_650 #contentSub, | ||
+ | .page-Templar_650 .firstHeading, | ||
+ | .page-Templar_480 #siteSub, | ||
+ | .page-Templar_480 #contentSub, | ||
+ | .page-Templar_480 .firstHeading | ||
+ | .page-Thief #siteSub, | ||
+ | .page-Thief #contentSub, | ||
+ | .page-Thief .firstHeading, | ||
+ | .page-Thief_800 #siteSub, | ||
+ | .page-Thief_800 #contentSub, | ||
+ | .page-Thief_800 .firstHeading, | ||
+ | .page-Thief_650 #siteSub, | ||
+ | .page-Thief_650 #contentSub, | ||
+ | .page-Thief_650 .firstHeading, | ||
+ | .page-Thief_480 #siteSub, | ||
+ | .page-Thief_480 #contentSub, | ||
+ | .page-Thief_480 .firstHeading | ||
+ | .page-Warlock #siteSub, | ||
+ | .page-Warlock #contentSub, | ||
+ | .page-Warlock .firstHeading, | ||
+ | .page-Warlock_800 #siteSub, | ||
+ | .page-Warlock_800 #contentSub, | ||
+ | .page-Warlock_800 .firstHeading, | ||
+ | .page-Warlock_650 #siteSub, | ||
+ | .page-Warlock_650 #contentSub, | ||
+ | .page-Warlock_650 .firstHeading, | ||
+ | .page-Warlock_480 #siteSub, | ||
+ | .page-Warlock_480 #contentSub, | ||
+ | .page-Warlock_480 .firstHeading | ||
+ | .page-Warrior #siteSub, | ||
+ | .page-Warrior #contentSub, | ||
+ | .page-Warrior .firstHeading, | ||
+ | .page-Warrior_800 #siteSub, | ||
+ | .page-Warrior_800 #contentSub, | ||
+ | .page-Warrior_800 .firstHeading, | ||
+ | .page-Warrior_650 #siteSub, | ||
+ | .page-Warrior_650 #contentSub, | ||
+ | .page-Warrior_650 .firstHeading, | ||
+ | .page-Warrior_480 #siteSub, | ||
+ | .page-Warrior_480 #contentSub, | ||
+ | .page-Warrior_480 .firstHeading | ||
+ | .page-Wizard #siteSub, | ||
+ | .page-Wizard #contentSub, | ||
+ | .page-Wizard .firstHeading, | ||
+ | .page-Wizard_800 #siteSub, | ||
+ | .page-Wizard_800 #contentSub, | ||
+ | .page-Wizard_800 .firstHeading, | ||
+ | .page-Wizard_650 #siteSub, | ||
+ | .page-Wizard_650 #contentSub, | ||
+ | .page-Wizard_650 .firstHeading, | ||
+ | .page-Wizard_480 #siteSub, | ||
+ | .page-Wizard_480 #contentSub, | ||
+ | .page-Wizard_480 .firstHeading | ||
+ | .page-Aelfborn #siteSub, | ||
+ | .page-Aelfborn #contentSub, | ||
+ | .page-Aelfborn .firstHeading, | ||
+ | .page-Aelfborn_800 #siteSub, | ||
+ | .page-Aelfborn_800 #contentSub, | ||
+ | .page-Aelfborn_800 .firstHeading, | ||
+ | .page-Aelfborn_650 #siteSub, | ||
+ | .page-Aelfborn_650 #contentSub, | ||
+ | .page-Aelfborn_650 .firstHeading, | ||
+ | .page-Aelfborn_480 #siteSub, | ||
+ | .page-Aelfborn_480 #contentSub, | ||
+ | .page-Aelfborn_480 .firstHeading | ||
+ | .page-Aracoix #siteSub, | ||
+ | .page-Aracoix #contentSub, | ||
+ | .page-Aracoix .firstHeading, | ||
+ | .page-Aracoix_800 #siteSub, | ||
+ | .page-Aracoix_800 #contentSub, | ||
+ | .page-Aracoix_800 .firstHeading, | ||
+ | .page-Aracoix_650 #siteSub, | ||
+ | .page-Aracoix_650 #contentSub, | ||
+ | .page-Aracoix_650 .firstHeading, | ||
+ | .page-Aracoix_480 #siteSub, | ||
+ | .page-Aracoix_480 #contentSub, | ||
+ | .page-Aracoix_480 .firstHeading | ||
+ | .page-Centaur #siteSub, | ||
+ | .page-Centaur #contentSub, | ||
+ | .page-Centaur .firstHeading, | ||
+ | .page-Centaur_800 #siteSub, | ||
+ | .page-Centaur_800 #contentSub, | ||
+ | .page-Centaur_800 .firstHeading, | ||
+ | .page-Centaur_650 #siteSub, | ||
+ | .page-Centaur_650 #contentSub, | ||
+ | .page-Centaur_650 .firstHeading, | ||
+ | .page-Centaur_480 #siteSub, | ||
+ | .page-Centaur_480 #contentSub, | ||
+ | .page-Centaur_480 .firstHeading | ||
+ | .page-Dwarf #siteSub, | ||
+ | .page-Dwarf #contentSub, | ||
+ | .page-Dwarf .firstHeading, | ||
+ | .page-Dwarf_800 #siteSub, | ||
+ | .page-Dwarf_800 #contentSub, | ||
+ | .page-Dwarf_800 .firstHeading, | ||
+ | .page-Dwarf_650 #siteSub, | ||
+ | .page-Dwarf_650 #contentSub, | ||
+ | .page-Dwarf_650 .firstHeading, | ||
+ | .page-Dwarf_480 #siteSub, | ||
+ | .page-Dwarf_480 #contentSub, | ||
+ | .page-Dwarf_480 .firstHeading | ||
+ | .page-Elf #siteSub, | ||
+ | .page-Elf #contentSub, | ||
+ | .page-Elf .firstHeading, | ||
+ | .page-Elf_800 #siteSub, | ||
+ | .page-Elf_800 #contentSub, | ||
+ | .page-Elf_800 .firstHeading, | ||
+ | .page-Elf_650 #siteSub, | ||
+ | .page-Elf_650 #contentSub, | ||
+ | .page-Elf_650 .firstHeading, | ||
+ | .page-Elf_480 #siteSub, | ||
+ | .page-Elf_480 #contentSub, | ||
+ | .page-Elf_480 .firstHeading | ||
+ | .page-Human #siteSub, | ||
+ | .page-Human #contentSub, | ||
+ | .page-Human .firstHeading, | ||
+ | .page-Human_800 #siteSub, | ||
+ | .page-Human_800 #contentSub, | ||
+ | .page-Human_800 .firstHeading, | ||
+ | .page-Human_650 #siteSub, | ||
+ | .page-Human_650 #contentSub, | ||
+ | .page-Human_650 .firstHeading, | ||
+ | .page-Human_480 #siteSub, | ||
+ | .page-Human_480 #contentSub, | ||
+ | .page-Human_480 .firstHeading | ||
+ | .page-Half_Giant #siteSub, | ||
+ | .page-Half_Giant #contentSub, | ||
+ | .page-Half_Giant .firstHeading, | ||
+ | .page-Half_Giant_800 #siteSub, | ||
+ | .page-Half_Giant_800 #contentSub, | ||
+ | .page-Half_Giant_800 .firstHeading, | ||
+ | .page-Half_Giant_650 #siteSub, | ||
+ | .page-Half_Giant_650 #contentSub, | ||
+ | .page-Half_Giant_650 .firstHeading, | ||
+ | .page-Half_Giant_480 #siteSub, | ||
+ | .page-Half_Giant_480 #contentSub, | ||
+ | .page-Half_Giant_480 .firstHeading | ||
+ | .page-Irekei #siteSub, | ||
+ | .page-Irekei #contentSub, | ||
+ | .page-Irekei .firstHeading, | ||
+ | .page-Irekei_800 #siteSub, | ||
+ | .page-Irekei_800 #contentSub, | ||
+ | .page-Irekei_800 .firstHeading, | ||
+ | .page-Irekei_650 #siteSub, | ||
+ | .page-Irekei_650 #contentSub, | ||
+ | .page-Irekei_650 .firstHeading, | ||
+ | .page-Irekei_480 #siteSub, | ||
+ | .page-Irekei_480 #contentSub, | ||
+ | .page-Irekei_480 .firstHeading | ||
+ | .page-Minotaur #siteSub, | ||
+ | .page-Minotaur #contentSub, | ||
+ | .page-Minotaur .firstHeading, | ||
+ | .page-Minotaur_800 #siteSub, | ||
+ | .page-Minotaur_800 #contentSub, | ||
+ | .page-Minotaur_800 .firstHeading, | ||
+ | .page-Minotaur_650 #siteSub, | ||
+ | .page-Minotaur_650 #contentSub, | ||
+ | .page-Minotaur_650 .firstHeading, | ||
+ | .page-Minotaur_480 #siteSub, | ||
+ | .page-Minotaur_480 #contentSub, | ||
+ | .page-Minotaur_480 .firstHeading | ||
+ | .page-Nephilim #siteSub, | ||
+ | .page-Nephilim #contentSub, | ||
+ | .page-Nephilim .firstHeading, | ||
+ | .page-Nephilim_800 #siteSub, | ||
+ | .page-Nephilim_800 #contentSub, | ||
+ | .page-Nephilim_800 .firstHeading, | ||
+ | .page-Nephilim_650 #siteSub, | ||
+ | .page-Nephilim_650 #contentSub, | ||
+ | .page-Nephilim_650 .firstHeading, | ||
+ | .page-Nephilim_480 #siteSub, | ||
+ | .page-Nephilim_480 #contentSub, | ||
+ | .page-Nephilim_480 .firstHeading | ||
+ | .page-Shade #siteSub, | ||
+ | .page-Shade #contentSub, | ||
+ | .page-Shade .firstHeading, | ||
+ | .page-Shade_800 #siteSub, | ||
+ | .page-Shade_800 #contentSub, | ||
+ | .page-Shade_800 .firstHeading, | ||
+ | .page-Shade_650 #siteSub, | ||
+ | .page-Shade_650 #contentSub, | ||
+ | .page-Shade_650 .firstHeading, | ||
+ | .page-Shade_480 #siteSub, | ||
+ | .page-Shade_480 #contentSub, | ||
+ | .page-Shade_480 .firstHeading | ||
+ | .page-Rogue #siteSub, | ||
+ | .page-Rogue #contentSub, | ||
+ | .page-Rogue .firstHeading, | ||
+ | .page-Rogue_800 #siteSub, | ||
+ | .page-Rogue_800 #contentSub, | ||
+ | .page-Rogue_800 .firstHeading, | ||
+ | .page-Rogue_650 #siteSub, | ||
+ | .page-Rogue_650 #contentSub, | ||
+ | .page-Rogue_650 .firstHeading, | ||
+ | .page-Rogue_480 #siteSub, | ||
+ | .page-Rogue_480 #contentSub, | ||
+ | .page-Rogue_480 .firstHeading | ||
+ | .page-Fighter #siteSub, | ||
+ | .page-Fighter #contentSub, | ||
+ | .page-Fighter .firstHeading, | ||
+ | .page-Fighter_800 #siteSub, | ||
+ | .page-Fighter_800 #contentSub, | ||
+ | .page-Fighter_800 .firstHeading, | ||
+ | .page-Fighter_650 #siteSub, | ||
+ | .page-Fighter_650 #contentSub, | ||
+ | .page-Fighter_650 .firstHeading, | ||
+ | .page-Fighter_480 #siteSub, | ||
+ | .page-Fighter_480 #contentSub, | ||
+ | .page-Fighter_480 .firstHeading | ||
+ | .page-Healer #siteSub, | ||
+ | .page-Healer #contentSub, | ||
+ | .page-Healer .firstHeading, | ||
+ | .page-Healer_800 #siteSub, | ||
+ | .page-Healer_800 #contentSub, | ||
+ | .page-Healer_800 .firstHeading, | ||
+ | .page-Healer_650 #siteSub, | ||
+ | .page-Healer_650 #contentSub, | ||
+ | .page-Healer_650 .firstHeading, | ||
+ | .page-Healer_480 #siteSub, | ||
+ | .page-Healer_480 #contentSub, | ||
+ | .page-Healer_480 .firstHeading | ||
+ | .page-Mage #siteSub, | ||
+ | .page-Mage #contentSub, | ||
+ | .page-Mage .firstHeading, | ||
+ | .page-Mage_800 #siteSub, | ||
+ | .page-Mage_800 #contentSub, | ||
+ | .page-Mage_800 .firstHeading, | ||
+ | .page-Mage_650 #siteSub, | ||
+ | .page-Mage_650 #contentSub, | ||
+ | .page-Mage_650 .firstHeading, | ||
+ | .page-Mage_480 #siteSub, | ||
+ | .page-Mage_480 #contentSub, | ||
+ | .page-Mage_480 .firstHeading | ||
+ | .page-Vampire #siteSub, | ||
+ | .page-Vampire #contentSub, | ||
+ | .page-Vampire .firstHeading, | ||
+ | .page-Vampire_800 #siteSub, | ||
+ | .page-Vampire_800 #contentSub, | ||
+ | .page-Vampire_800 .firstHeading, | ||
+ | .page-Vampire_650 #siteSub, | ||
+ | .page-Vampire_650 #contentSub, | ||
+ | .page-Vampire_650 .firstHeading, | ||
+ | .page-Vampire_480 #siteSub, | ||
+ | .page-Vampire_480 #contentSub, | ||
+ | .page-Vampire_480 .firstHeading { | ||
+ | display: none !important; | ||
+ | } | ||
+ | |||
+ | .patrollink { | ||
+ | font-size: 75%; | ||
+ | text-align: right; | ||
+ | position: absolute; | ||
+ | top: 1.5em; | ||
+ | right: 3em; | ||
+ | } | ||
+ | |||
+ | .allpagesredirect { | ||
+ | font-style: italic; | ||
+ | } | ||
+ | .allpagesredirect:after { | ||
+ | content: " (redirect)"; | ||
+ | } | ||
+ | |||
+ | .hiddenStructure { | ||
+ | display: none; | ||
+ | speak: none; | ||
+ | } |
Latest revision as of 20:23, 21 February 2018
/************************/ /* Define Infobox Style */ /************************/ .infobox { border: 1px solid #aaaaaa; background-color: #f9f9f9; color: black; margin-bottom: 0.5em; margin-left: 1em; padding: 0.2em; float: right; clear: right; } .infobox td, .infobox th { vertical-align: top; } .infobox caption { font-size: larger; margin-left: inherit; } .infobox.bordered { border-collapse: collapse; } .infobox.bordered td, .infobox.bordered th { border: 1px solid #aaaaaa; } .infobox.bordered .borderless td, .infobox.bordered .borderless th { border: 0; } /*******************************/ /* Hide the header on mainpage */ /*******************************/ .page-Main_Page #siteSub, .page-Main_Page #contentSub, .page-Main_Page .firstHeading, .page-Main_Page_800 #siteSub, .page-Main_Page_800 #contentSub, .page-Main_Page_800 .firstHeading, .page-Main_Page_650 #siteSub, .page-Main_Page_650 #contentSub, .page-Main_Page_650 .firstHeading, .page-Main_Page_480 #siteSub, .page-Main_Page_480 #contentSub, .page-Main_Page_480 .firstHeading { display: none !important; } .patrollink { font-size: 75%; text-align: right; position: absolute; top: 1.5em; right: 3em; } .allpagesredirect { font-style: italic; } .allpagesredirect:after { content: " (redirect)"; } .hiddenStructure { display: none; speak: none; } /**********************/ /* Slide-In Animation */ /** Used for Classes **/ /**********************/ #slide2 { position: relative; left: -125px; width: 330px; -webkit-animation: slide 1s forwards; -webkit-animation-delay: 0s; animation: slide 1s forwards; animation-delay: 0.1s; } @-webkit-keyframes slide { 100% { left: 0; } } @keyframes slide { 100% { left: 0; } } /* Slide-In From the Right */ #slide3 { position: relative; left: 125px; width: 330px; -webkit-animation: slide 1s forwards; -webkit-animation-delay: 0s; animation: slide 1s forwards; animation-delay: 0.1s; } @-webkit-keyframes slide { 100% { right: 0; } } @keyframes slide { 100% { right: 0; } } /**********************/ /* Slide-In Animation */ /* Used for Item TTs **/ /**********************/ #slide { position: absolute; left: -125px; width: 330px; -webkit-animation: slide 0.5s forwards; -webkit-animation-delay: 0s; animation: slide 0.5s forwards; animation-delay: 0.1s; } @-webkit-keyframes slide { 100% { left: 0; } } @keyframes slide { 100% { left: 0; } } /**********************/ /* Define the Fade2 ID */ /* Requires <p> tag.. */ /**********************/ #fadein2 p { -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */ -moz-animation: fadein 2s; /* Firefox < 16 */ -ms-animation: fadein 2s; /* Internet Explorer */ -o-animation: fadein 2s; /* Opera < 12.1 */ animation: fadein 2s; } @keyframes fadein { from { opacity: 0; } to { opacity: 1; } } /* Firefox < 16 */ @-moz-keyframes fadein { from { opacity: 0; } to { opacity: 1; } } /* Safari, Chrome and Opera > 12.1 */ @-webkit-keyframes fadein { from { opacity: 0; } to { opacity: 1; } } /* Internet Explorer */ @-ms-keyframes fadein { from { opacity: 0; } to { opacity: 1; } } /* Opera < 12.1 */ @-o-keyframes fadein { from { opacity: 0; } to { opacity: 1; } } /**********************/ /* Define the Fade ID */ /* Requires <p> tag.. */ /**********************/ #fadein p { -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */ -moz-animation: fadein 1s; /* Firefox < 16 */ -ms-animation: fadein 1s; /* Internet Explorer */ -o-animation: fadein 1s; /* Opera < 12.1 */ animation: fadein 1s; } @keyframes fadein { from { opacity: 0; } to { opacity: 1; } } /* Firefox < 16 */ @-moz-keyframes fadein { from { opacity: 0; } to { opacity: 1; } } /* Safari, Chrome and Opera > 12.1 */ @-webkit-keyframes fadein { from { opacity: 0; } to { opacity: 1; } } /* Internet Explorer */ @-ms-keyframes fadein { from { opacity: 0; } to { opacity: 1; } } /* Opera < 12.1 */ @-o-keyframes fadein { from { opacity: 0; } to { opacity: 1; } } /************************/ /* 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: 350px; 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: 300px; margin-left: 0px; padding-left: 0px; padding-right: 0px; border: 0px solid #000000; box-shadow: 0px 0px 0px #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; } /**************************/ /*** ENCHANT TOOL TIPS ***/ /**************************/ .ench1 { position: relative; color: #576da8; } /* static part of the tooltip style */ .ench2 { font-size: 100%; } .ench1 .ench2 { position: absolute; display: none; width: 350px; margin-left: 0px; padding-left: 0px; padding-right: 0px; border: 0px solid #000000; box-shadow: 0px 0px 0px #000000; } .ench2-l { top: 0; left: 70px; } .ench2-fix { top: 0; right: 70px; } .ench2-b { bottom: -65px; left: 70px; } .ench2-b-fix { bottom: -65px; right: 70px; } .ench1:hover .ench2 { 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; } /**********************************/ /* Hide the header on class pages */ /**********************************/ .page-Assassin #siteSub, .page-Assassin #contentSub, .page-Assassin .firstHeading, .page-Assassin_800 #siteSub, .page-Assassin_800 #contentSub, .page-Assassin_800 .firstHeading, .page-Assassin_650 #siteSub, .page-Assassin_650 #contentSub, .page-Assassin_650 .firstHeading, .page-Assassin_480 #siteSub, .page-Assassin_480 #contentSub, .page-Assassin_480 .firstHeading .page-Barbarian #siteSub, .page-Barbarian #contentSub, .page-Barbarian .firstHeading, .page-Barbarian_800 #siteSub, .page-Barbarian_800 #contentSub, .page-Barbarian_800 .firstHeading, .page-Barbarian_650 #siteSub, .page-Barbarian_650 #contentSub, .page-Barbarian_650 .firstHeading, .page-Barbarian_480 #siteSub, .page-Barbarian_480 #contentSub, .page-Barbarian_480 .firstHeading .page-Bard #siteSub, .page-Bard #contentSub, .page-Bard .firstHeading, .page-Bard_800 #siteSub, .page-Bard_800 #contentSub, .page-Bard_800 .firstHeading, .page-Bard_650 #siteSub, .page-Bard_650 #contentSub, .page-Bard_650 .firstHeading, .page-Bard_480 #siteSub, .page-Bard_480 #contentSub, .page-Bard_480 .firstHeading .page-Channeler #siteSub, .page-Channeler #contentSub, .page-Channeler .firstHeading, .page-Channeler_800 #siteSub, .page-Channeler_800 #contentSub, .page-Channeler_800 .firstHeading, .page-Channeler_650 #siteSub, .page-Channeler_650 #contentSub, .page-Channeler_650 .firstHeading, .page-Channeler_480 #siteSub, .page-Channeler_480 #contentSub, .page-Channeler_480 .firstHeading .page-Channeler #siteSub, .page-Channeler #contentSub, .page-Channeler .firstHeading, .page-Channeler_800 #siteSub, .page-Channeler_800 #contentSub, .page-Channeler_800 .firstHeading, .page-Channeler_650 #siteSub, .page-Channeler_650 #contentSub, .page-Channeler_650 .firstHeading, .page-Channeler_480 #siteSub, .page-Channeler_480 #contentSub, .page-Channeler_480 .firstHeading .page-Confessor #siteSub, .page-Confessor #contentSub, .page-Confessor .firstHeading, .page-Confessor_800 #siteSub, .page-Confessor_800 #contentSub, .page-Confessor_800 .firstHeading, .page-Confessor_650 #siteSub, .page-Confessor_650 #contentSub, .page-Confessor_650 .firstHeading, .page-Confessor_480 #siteSub, .page-Confessor_480 #contentSub, .page-Confessor_480 .firstHeading .page-Crusader #siteSub, .page-Crusader #contentSub, .page-Crusader .firstHeading, .page-Crusader_800 #siteSub, .page-Crusader_800 #contentSub, .page-Crusader_800 .firstHeading, .page-Crusader_650 #siteSub, .page-Crusader_650 #contentSub, .page-Crusader_650 .firstHeading, .page-Crusader_480 #siteSub, .page-Crusader_480 #contentSub, .page-Crusader_480 .firstHeading .page-Doomsayer #siteSub, .page-Doomsayer #contentSub, .page-Doomsayer .firstHeading, .page-Doomsayer_800 #siteSub, .page-Doomsayer_800 #contentSub, .page-Doomsayer_800 .firstHeading, .page-Doomsayer_650 #siteSub, .page-Doomsayer_650 #contentSub, .page-Doomsayer_650 .firstHeading, .page-Doomsayer_480 #siteSub, .page-Doomsayer_480 #contentSub, .page-Doomsayer_480 .firstHeading .page-Druid #siteSub, .page-Druid #contentSub, .page-Druid .firstHeading, .page-Druid_800 #siteSub, .page-Druid_800 #contentSub, .page-Druid_800 .firstHeading, .page-Druid_650 #siteSub, .page-Druid_650 #contentSub, .page-Druid_650 .firstHeading, .page-Druid_480 #siteSub, .page-Druid_480 #contentSub, .page-Druid_480 .firstHeading .page-Fury #siteSub, .page-Fury #contentSub, .page-Fury .firstHeading, .page-Fury_800 #siteSub, .page-Fury_800 #contentSub, .page-Fury_800 .firstHeading, .page-Fury_650 #siteSub, .page-Fury_650 #contentSub, .page-Fury_650 .firstHeading, .page-Fury_480 #siteSub, .page-Fury_480 #contentSub, .page-Fury_480 .firstHeading .page-Huntress #siteSub, .page-Huntress #contentSub, .page-Huntress .firstHeading, .page-Huntress_800 #siteSub, .page-Huntress_800 #contentSub, .page-Huntress_800 .firstHeading, .page-Huntress_650 #siteSub, .page-Huntress_650 #contentSub, .page-Huntress_650 .firstHeading, .page-Huntress_480 #siteSub, .page-Huntress_480 #contentSub, .page-Huntress_480 .firstHeading .page-Necromancer #siteSub, .page-Necromancer #contentSub, .page-Necromancer .firstHeading, .page-Necromancer_800 #siteSub, .page-Necromancer_800 #contentSub, .page-Necromancer_800 .firstHeading, .page-Necromancer_650 #siteSub, .page-Necromancer_650 #contentSub, .page-Necromancer_650 .firstHeading, .page-Necromancer_480 #siteSub, .page-Necromancer_480 #contentSub, .page-Necromancer_480 .firstHeading .page-Nightstalker #siteSub, .page-Nightstalker #contentSub, .page-Nightstalker .firstHeading, .page-Nightstalker_800 #siteSub, .page-Nightstalker_800 #contentSub, .page-Nightstalker_800 .firstHeading, .page-Nightstalker_650 #siteSub, .page-Nightstalker_650 #contentSub, .page-Nightstalker_650 .firstHeading, .page-Nightstalker_480 #siteSub, .page-Nightstalker_480 #contentSub, .page-Nightstalker_480 .firstHeading .page-Prelate #siteSub, .page-Prelate #contentSub, .page-Prelate .firstHeading, .page-Prelate_800 #siteSub, .page-Prelate_800 #contentSub, .page-Prelate_800 .firstHeading, .page-Prelate_650 #siteSub, .page-Prelate_650 #contentSub, .page-Prelate_650 .firstHeading, .page-Prelate_480 #siteSub, .page-Prelate_480 #contentSub, .page-Prelate_480 .firstHeading .page-Priest #siteSub, .page-Priest #contentSub, .page-Priest .firstHeading, .page-Priest_800 #siteSub, .page-Priest_800 #contentSub, .page-Priest_800 .firstHeading, .page-Priest_650 #siteSub, .page-Priest_650 #contentSub, .page-Priest_650 .firstHeading, .page-Priest_480 #siteSub, .page-Priest_480 #contentSub, .page-Priest_480 .firstHeading .page-Ranger #siteSub, .page-Ranger #contentSub, .page-Ranger .firstHeading, .page-Ranger_800 #siteSub, .page-Ranger_800 #contentSub, .page-Ranger_800 .firstHeading, .page-Ranger_650 #siteSub, .page-Ranger_650 #contentSub, .page-Ranger_650 .firstHeading, .page-Ranger_480 #siteSub, .page-Ranger_480 #contentSub, .page-Ranger_480 .firstHeading .page-Scout #siteSub, .page-Scout #contentSub, .page-Scout .firstHeading, .page-Scout_800 #siteSub, .page-Scout_800 #contentSub, .page-Scout_800 .firstHeading, .page-Scout_650 #siteSub, .page-Scout_650 #contentSub, .page-Scout_650 .firstHeading, .page-Scout_480 #siteSub, .page-Scout_480 #contentSub, .page-Scout_480 .firstHeading .page-Sentinel #siteSub, .page-Sentinel #contentSub, .page-Sentinel .firstHeading, .page-Sentinel_800 #siteSub, .page-Sentinel_800 #contentSub, .page-Sentinel_800 .firstHeading, .page-Sentinel_650 #siteSub, .page-Sentinel_650 #contentSub, .page-Sentinel_650 .firstHeading, .page-Sentinel_480 #siteSub, .page-Sentinel_480 #contentSub, .page-Sentinel_480 .firstHeading .page-Templar #siteSub, .page-Templar #contentSub, .page-Templar .firstHeading, .page-Templar_800 #siteSub, .page-Templar_800 #contentSub, .page-Templar_800 .firstHeading, .page-Templar_650 #siteSub, .page-Templar_650 #contentSub, .page-Templar_650 .firstHeading, .page-Templar_480 #siteSub, .page-Templar_480 #contentSub, .page-Templar_480 .firstHeading .page-Thief #siteSub, .page-Thief #contentSub, .page-Thief .firstHeading, .page-Thief_800 #siteSub, .page-Thief_800 #contentSub, .page-Thief_800 .firstHeading, .page-Thief_650 #siteSub, .page-Thief_650 #contentSub, .page-Thief_650 .firstHeading, .page-Thief_480 #siteSub, .page-Thief_480 #contentSub, .page-Thief_480 .firstHeading .page-Warlock #siteSub, .page-Warlock #contentSub, .page-Warlock .firstHeading, .page-Warlock_800 #siteSub, .page-Warlock_800 #contentSub, .page-Warlock_800 .firstHeading, .page-Warlock_650 #siteSub, .page-Warlock_650 #contentSub, .page-Warlock_650 .firstHeading, .page-Warlock_480 #siteSub, .page-Warlock_480 #contentSub, .page-Warlock_480 .firstHeading .page-Warrior #siteSub, .page-Warrior #contentSub, .page-Warrior .firstHeading, .page-Warrior_800 #siteSub, .page-Warrior_800 #contentSub, .page-Warrior_800 .firstHeading, .page-Warrior_650 #siteSub, .page-Warrior_650 #contentSub, .page-Warrior_650 .firstHeading, .page-Warrior_480 #siteSub, .page-Warrior_480 #contentSub, .page-Warrior_480 .firstHeading .page-Wizard #siteSub, .page-Wizard #contentSub, .page-Wizard .firstHeading, .page-Wizard_800 #siteSub, .page-Wizard_800 #contentSub, .page-Wizard_800 .firstHeading, .page-Wizard_650 #siteSub, .page-Wizard_650 #contentSub, .page-Wizard_650 .firstHeading, .page-Wizard_480 #siteSub, .page-Wizard_480 #contentSub, .page-Wizard_480 .firstHeading .page-Aelfborn #siteSub, .page-Aelfborn #contentSub, .page-Aelfborn .firstHeading, .page-Aelfborn_800 #siteSub, .page-Aelfborn_800 #contentSub, .page-Aelfborn_800 .firstHeading, .page-Aelfborn_650 #siteSub, .page-Aelfborn_650 #contentSub, .page-Aelfborn_650 .firstHeading, .page-Aelfborn_480 #siteSub, .page-Aelfborn_480 #contentSub, .page-Aelfborn_480 .firstHeading .page-Aracoix #siteSub, .page-Aracoix #contentSub, .page-Aracoix .firstHeading, .page-Aracoix_800 #siteSub, .page-Aracoix_800 #contentSub, .page-Aracoix_800 .firstHeading, .page-Aracoix_650 #siteSub, .page-Aracoix_650 #contentSub, .page-Aracoix_650 .firstHeading, .page-Aracoix_480 #siteSub, .page-Aracoix_480 #contentSub, .page-Aracoix_480 .firstHeading .page-Centaur #siteSub, .page-Centaur #contentSub, .page-Centaur .firstHeading, .page-Centaur_800 #siteSub, .page-Centaur_800 #contentSub, .page-Centaur_800 .firstHeading, .page-Centaur_650 #siteSub, .page-Centaur_650 #contentSub, .page-Centaur_650 .firstHeading, .page-Centaur_480 #siteSub, .page-Centaur_480 #contentSub, .page-Centaur_480 .firstHeading .page-Dwarf #siteSub, .page-Dwarf #contentSub, .page-Dwarf .firstHeading, .page-Dwarf_800 #siteSub, .page-Dwarf_800 #contentSub, .page-Dwarf_800 .firstHeading, .page-Dwarf_650 #siteSub, .page-Dwarf_650 #contentSub, .page-Dwarf_650 .firstHeading, .page-Dwarf_480 #siteSub, .page-Dwarf_480 #contentSub, .page-Dwarf_480 .firstHeading .page-Elf #siteSub, .page-Elf #contentSub, .page-Elf .firstHeading, .page-Elf_800 #siteSub, .page-Elf_800 #contentSub, .page-Elf_800 .firstHeading, .page-Elf_650 #siteSub, .page-Elf_650 #contentSub, .page-Elf_650 .firstHeading, .page-Elf_480 #siteSub, .page-Elf_480 #contentSub, .page-Elf_480 .firstHeading .page-Human #siteSub, .page-Human #contentSub, .page-Human .firstHeading, .page-Human_800 #siteSub, .page-Human_800 #contentSub, .page-Human_800 .firstHeading, .page-Human_650 #siteSub, .page-Human_650 #contentSub, .page-Human_650 .firstHeading, .page-Human_480 #siteSub, .page-Human_480 #contentSub, .page-Human_480 .firstHeading .page-Half_Giant #siteSub, .page-Half_Giant #contentSub, .page-Half_Giant .firstHeading, .page-Half_Giant_800 #siteSub, .page-Half_Giant_800 #contentSub, .page-Half_Giant_800 .firstHeading, .page-Half_Giant_650 #siteSub, .page-Half_Giant_650 #contentSub, .page-Half_Giant_650 .firstHeading, .page-Half_Giant_480 #siteSub, .page-Half_Giant_480 #contentSub, .page-Half_Giant_480 .firstHeading .page-Irekei #siteSub, .page-Irekei #contentSub, .page-Irekei .firstHeading, .page-Irekei_800 #siteSub, .page-Irekei_800 #contentSub, .page-Irekei_800 .firstHeading, .page-Irekei_650 #siteSub, .page-Irekei_650 #contentSub, .page-Irekei_650 .firstHeading, .page-Irekei_480 #siteSub, .page-Irekei_480 #contentSub, .page-Irekei_480 .firstHeading .page-Minotaur #siteSub, .page-Minotaur #contentSub, .page-Minotaur .firstHeading, .page-Minotaur_800 #siteSub, .page-Minotaur_800 #contentSub, .page-Minotaur_800 .firstHeading, .page-Minotaur_650 #siteSub, .page-Minotaur_650 #contentSub, .page-Minotaur_650 .firstHeading, .page-Minotaur_480 #siteSub, .page-Minotaur_480 #contentSub, .page-Minotaur_480 .firstHeading .page-Nephilim #siteSub, .page-Nephilim #contentSub, .page-Nephilim .firstHeading, .page-Nephilim_800 #siteSub, .page-Nephilim_800 #contentSub, .page-Nephilim_800 .firstHeading, .page-Nephilim_650 #siteSub, .page-Nephilim_650 #contentSub, .page-Nephilim_650 .firstHeading, .page-Nephilim_480 #siteSub, .page-Nephilim_480 #contentSub, .page-Nephilim_480 .firstHeading .page-Shade #siteSub, .page-Shade #contentSub, .page-Shade .firstHeading, .page-Shade_800 #siteSub, .page-Shade_800 #contentSub, .page-Shade_800 .firstHeading, .page-Shade_650 #siteSub, .page-Shade_650 #contentSub, .page-Shade_650 .firstHeading, .page-Shade_480 #siteSub, .page-Shade_480 #contentSub, .page-Shade_480 .firstHeading .page-Rogue #siteSub, .page-Rogue #contentSub, .page-Rogue .firstHeading, .page-Rogue_800 #siteSub, .page-Rogue_800 #contentSub, .page-Rogue_800 .firstHeading, .page-Rogue_650 #siteSub, .page-Rogue_650 #contentSub, .page-Rogue_650 .firstHeading, .page-Rogue_480 #siteSub, .page-Rogue_480 #contentSub, .page-Rogue_480 .firstHeading .page-Fighter #siteSub, .page-Fighter #contentSub, .page-Fighter .firstHeading, .page-Fighter_800 #siteSub, .page-Fighter_800 #contentSub, .page-Fighter_800 .firstHeading, .page-Fighter_650 #siteSub, .page-Fighter_650 #contentSub, .page-Fighter_650 .firstHeading, .page-Fighter_480 #siteSub, .page-Fighter_480 #contentSub, .page-Fighter_480 .firstHeading .page-Healer #siteSub, .page-Healer #contentSub, .page-Healer .firstHeading, .page-Healer_800 #siteSub, .page-Healer_800 #contentSub, .page-Healer_800 .firstHeading, .page-Healer_650 #siteSub, .page-Healer_650 #contentSub, .page-Healer_650 .firstHeading, .page-Healer_480 #siteSub, .page-Healer_480 #contentSub, .page-Healer_480 .firstHeading .page-Mage #siteSub, .page-Mage #contentSub, .page-Mage .firstHeading, .page-Mage_800 #siteSub, .page-Mage_800 #contentSub, .page-Mage_800 .firstHeading, .page-Mage_650 #siteSub, .page-Mage_650 #contentSub, .page-Mage_650 .firstHeading, .page-Mage_480 #siteSub, .page-Mage_480 #contentSub, .page-Mage_480 .firstHeading .page-Vampire #siteSub, .page-Vampire #contentSub, .page-Vampire .firstHeading, .page-Vampire_800 #siteSub, .page-Vampire_800 #contentSub, .page-Vampire_800 .firstHeading, .page-Vampire_650 #siteSub, .page-Vampire_650 #contentSub, .page-Vampire_650 .firstHeading, .page-Vampire_480 #siteSub, .page-Vampire_480 #contentSub, .page-Vampire_480 .firstHeading { display: none !important; } .patrollink { font-size: 75%; text-align: right; position: absolute; top: 1.5em; right: 3em; } .allpagesredirect { font-style: italic; } .allpagesredirect:after { content: " (redirect)"; } .hiddenStructure { display: none; speak: none; }