Difference between revisions of "MediaWiki:Common.css"
Jump to navigation
Jump to search
m |
m |
||
(47 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
/* CSS placed in this file will be applied to all skins */ | /* CSS placed in this file will be applied to all skins */ | ||
+ | #bodyContent h5 { font-size: 12px; } | ||
+ | |||
+ | /* MoveData frameChart Toggle */ | ||
+ | .frameChart-toggle-off, | ||
+ | .frameChart-toggle-on { | ||
+ | border: 1px solid #000; | ||
+ | width: 134px; | ||
+ | height: 24px; | ||
+ | cursor: pointer; | ||
+ | } | ||
+ | |||
+ | .frameChart-toggle-on { | ||
+ | opacity: 1.0; | ||
+ | } | ||
+ | |||
+ | .frameChart-toggle-off { | ||
+ | opacity: 0.5; | ||
+ | display: none; | ||
+ | } | ||
+ | |||
+ | .frameChart { | ||
+ | width: 100%; | ||
+ | border-bottom: 1px solid grey; | ||
+ | display: none; | ||
+ | } | ||
+ | |||
+ | /* End MoveData frameChart Toggle */ | ||
+ | |||
+ | |||
+ | .frame-data-startup, | ||
+ | .frame-data-active, | ||
+ | .frame-data-inactive, | ||
+ | .frame-data-recovery, | ||
+ | .frame-data-specialRecovery { | ||
+ | width: 10px; | ||
+ | height: 10px; | ||
+ | display: inline-block; | ||
+ | margin-left: 1px; | ||
+ | margin-right: 1px; | ||
+ | vertical-align: middle; | ||
+ | } | ||
+ | |||
+ | .frame-data-startup { | ||
+ | background-color: #36B37E; | ||
+ | } | ||
+ | |||
+ | .frame-data-active { | ||
+ | background-color: #FF5D5D; | ||
+ | } | ||
+ | |||
+ | .frame-data-inactive { | ||
+ | background-color: gray; | ||
+ | } | ||
+ | |||
+ | .frame-data-recovery { | ||
+ | background-color: #0069B6; | ||
+ | } | ||
+ | .frame-data-specialRecovery { | ||
+ | background-color: #db69cf; | ||
+ | } | ||
+ | |||
+ | |||
+ | .spawn-projectile { | ||
+ | width: 3px; | ||
+ | height: 14px; | ||
+ | display: inline-block; | ||
+ | margin-left: -1px; | ||
+ | margin-right: 1px; | ||
+ | vertical-align: middle; | ||
+ | background-color: red; | ||
+ | } | ||
/* ----------------------------------------------------------------------------- | /* ----------------------------------------------------------------------------- | ||
Line 8: | Line 79: | ||
border-radius: 6px; | border-radius: 6px; | ||
} | } | ||
− | |||
.responsiveImg img { | .responsiveImg img { | ||
− | + | max-width: 100%; | |
− | + | height: auto; | |
− | + | max-height: 450px; | |
} | } | ||
− | |||
/* ----------------------------------------------------------------------------- | /* ----------------------------------------------------------------------------- | ||
− | + | Cargo Rules | |
----------------------------------------------------------------------------- */ | ----------------------------------------------------------------------------- */ | ||
+ | |||
+ | table.cargoDynamicTable td { | ||
+ | text-align: center; | ||
+ | } | ||
/* reduce the padding on DynamicTables generated with DataTables */ | /* reduce the padding on DynamicTables generated with DataTables */ | ||
− | table.cargoDynamicTable thead th, | + | |
− | table.cargoDynamicTable thead td { | + | table.cargoDynamicTable thead th, table.cargoDynamicTable thead td { |
− | + | padding: 4px 17px 4px 4px | |
} | } | ||
− | table.cargoDynamicTable tfoot th, | + | table.cargoDynamicTable tfoot th, table.cargoDynamicTable tfoot td { |
− | table.cargoDynamicTable tfoot td { | + | padding: 4px |
− | |||
} | } | ||
− | table.cargoDynamicTable tbody th, | + | table.cargoDynamicTable tbody th, table.cargoDynamicTable tbody td { |
− | table.cargoDynamicTable tbody td { | + | padding: 4px |
− | |||
} | } | ||
/* disable the tfoot which dupes thead */ | /* disable the tfoot which dupes thead */ | ||
+ | |||
table.cargoDynamicTable tfoot { | table.cargoDynamicTable tfoot { | ||
− | + | display: none; | |
+ | } | ||
+ | |||
+ | /* move images to start of line. else they will be at end of line when there are notes */ | ||
+ | table.cargoDynamicTable div.tright { | ||
+ | float: left; | ||
+ | } | ||
+ | |||
+ | /* Make the cargo standard table look more like the mediawiki table */ | ||
+ | |||
+ | table.cargoTable { | ||
+ | width: 100%; | ||
+ | } | ||
+ | .cargoTable table { | ||
+ | width: 100%; | ||
+ | } | ||
+ | table.cargoTable tbody { | ||
+ | text-align: center; | ||
+ | } | ||
+ | table.cargoTable tbody td { | ||
+ | border: 1px solid #a2a9b1; | ||
+ | text-align: center; | ||
+ | } | ||
+ | table.cargoTable thead th { | ||
+ | background-color: #f8f9fa; | ||
+ | margin: 1em 0; | ||
+ | padding: 0 2px; | ||
+ | border: 1px solid #a2a9b1; | ||
} | } | ||
+ | |||
+ | /* ----------------------------------------------------------------------------- | ||
+ | Global Rules | ||
+ | ----------------------------------------------------------------------------- */ | ||
/* normalize link colors */ | /* normalize link colors */ | ||
+ | |||
a, a:visited, a.external, a.external:visited { | a, a:visited, a.external, a.external:visited { | ||
color: rgb(6, 95, 212); | color: rgb(6, 95, 212); | ||
} | } | ||
− | |||
.mw-body-content a.external:visited, a.external, a, a:visited { | .mw-body-content a.external:visited, a.external, a, a:visited { | ||
color: rgb(6, 95, 212); | color: rgb(6, 95, 212); | ||
} | } | ||
− | + | a:hover, a:focus { | |
− | a:hover, a:focus { text-decoration: none; } | + | text-decoration: none; |
− | + | } | |
/* move collapsible element indicator to the left */ | /* move collapsible element indicator to the left */ | ||
− | + | span.mw-collapsible-toggle { | |
float: left; | float: left; | ||
margin-left: 0; | margin-left: 0; | ||
margin-right: 1em; | margin-right: 1em; | ||
} | } | ||
+ | /* Odd rows for any table with "stripe" class */ | ||
− | |||
table.stripe tr:nth-child(even) { | table.stripe tr:nth-child(even) { | ||
background-color: white; | background-color: white; | ||
} | } | ||
+ | /* Even rows for any table with "stripe" class */ | ||
− | |||
table.stripe tr:nth-child(odd) { | table.stripe tr:nth-child(odd) { | ||
background-color: #f9f9f9; | background-color: #f9f9f9; | ||
} | } | ||
+ | /* Odd set of 2 rows (for colors table) */ | ||
− | + | table.colors-table.stripe tr:nth-child(4n), table.colors-table.stripe tr:nth-child(4n-1) { | |
− | table.colors-table.stripe tr:nth-child(4n), | ||
− | table.colors-table.stripe tr:nth-child(4n-1) { | ||
background-color: white; | background-color: white; | ||
} | } | ||
+ | /* Even set of 2 rows (for colors table) */ | ||
− | + | table.colors-table.stripe tr:nth-child(4n-2), table.colors-table.stripe tr:nth-child(4n-3) { | |
− | table.colors-table.stripe tr:nth-child(4n-2), | ||
− | table.colors-table.stripe tr:nth-child(4n-3) { | ||
background-color: #f9f9f9; | background-color: #f9f9f9; | ||
} | } | ||
− | |||
.dataTables_wrapper { | .dataTables_wrapper { | ||
background-color: white; | background-color: white; | ||
− | box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.12), 0 1px 5px 0 rgba(0,0,0,.2); | + | box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .12), 0 1px 5px 0 rgba(0, 0, 0, .2); |
padding: 4px; | padding: 4px; | ||
border-radius: 4px; | border-radius: 4px; | ||
} | } | ||
− | |||
/* ----------------------------------------------------------------------------- | /* ----------------------------------------------------------------------------- | ||
Editorial Rules | Editorial Rules | ||
Line 94: | Line 193: | ||
object-position: center; | object-position: center; | ||
} | } | ||
− | |||
.editorial-body { | .editorial-body { | ||
font-size: 14px; | font-size: 14px; | ||
Line 104: | Line 202: | ||
font-weight: normal; | font-weight: normal; | ||
} | } | ||
− | |||
.editorial-author { | .editorial-author { | ||
font-size: 20px; | font-size: 20px; | ||
Line 112: | Line 209: | ||
text-align: center; | text-align: center; | ||
} | } | ||
− | |||
.editorial-title { | .editorial-title { | ||
font-size: 29px; | font-size: 29px; | ||
Line 120: | Line 216: | ||
text-align: center; | text-align: center; | ||
} | } | ||
− | |||
.editorial-subtitle { | .editorial-subtitle { | ||
font-size: 20px; | font-size: 20px; | ||
Line 128: | Line 223: | ||
margin-top: 36px; | margin-top: 36px; | ||
} | } | ||
− | |||
.editorial-sectiontitle { | .editorial-sectiontitle { | ||
font-size: 16px; | font-size: 16px; | ||
Line 136: | Line 230: | ||
margin-top: 36px; | margin-top: 36px; | ||
} | } | ||
− | |||
/* ----------------------------------------------------------------------------- | /* ----------------------------------------------------------------------------- | ||
Footer Nav Rules | Footer Nav Rules | ||
Line 147: | Line 240: | ||
gap: 0px 0px; | gap: 0px 0px; | ||
border-radius: 4px; | border-radius: 4px; | ||
− | box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.12), 0 1px 5px 0 rgba(0,0,0,.2); | + | box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .12), 0 1px 5px 0 rgba(0, 0, 0, .2); |
− | grid-template-areas: | + | grid-template-areas: "." "." "." "." "."; |
− | |||
− | |||
− | |||
− | |||
− | |||
} | } | ||
− | |||
.footNavHeader { | .footNavHeader { | ||
background-color: #F64236; | background-color: #F64236; | ||
text-align: center; | text-align: center; | ||
color: white; | color: white; | ||
− | margin: 8px; padding: 2px; | + | margin: 8px; |
+ | padding: 2px; | ||
} | } | ||
− | |||
.footNavFlex { | .footNavFlex { | ||
display: flex; | display: flex; | ||
Line 172: | Line 259: | ||
padding-bottom: 1em; | padding-bottom: 1em; | ||
} | } | ||
− | |||
.footNavFlex div { | .footNavFlex div { | ||
margin: 4px 10px 4px 10px; | margin: 4px 10px 4px 10px; | ||
} | } | ||
− | |||
/* ----------------------------------------------------------------------------- | /* ----------------------------------------------------------------------------- | ||
Tier List Rules | Tier List Rules | ||
Line 186: | Line 271: | ||
grid-column-gap: 0px; | grid-column-gap: 0px; | ||
grid-row-gap: 0px; | grid-row-gap: 0px; | ||
− | box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.12), 0 1px 5px 0 rgba(0,0,0,.2); | + | box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .12), 0 1px 5px 0 rgba(0, 0, 0, .2); |
− | border-radius: 4px; font-size: 12px; | + | border-radius: 4px; |
+ | font-size: 12px; | ||
background-color: #f4f4f2; | background-color: #f4f4f2; | ||
} | } | ||
− | |||
.tierHeader { | .tierHeader { | ||
display: flex; | display: flex; | ||
Line 200: | Line 285: | ||
border-right: 2px solid #1a1a17; | border-right: 2px solid #1a1a17; | ||
} | } | ||
− | |||
.tierGroup { | .tierGroup { | ||
display: flex; | display: flex; | ||
Line 207: | Line 291: | ||
align-items: center; | align-items: center; | ||
} | } | ||
− | |||
.tierUnderline { | .tierUnderline { | ||
− | + | border-bottom: 2px solid #1a1a17; | |
} | } | ||
− | |||
.generalUnderline { | .generalUnderline { | ||
− | border-bottom: 1px solid rgba(160,160,160,.4); | + | border-bottom: 1px solid rgba(160, 160, 160, .4); |
} | } | ||
− | + | .tierGroup>div { | |
− | .tierGroup > div { | ||
margin: 4px 10px; | margin: 4px 10px; | ||
} | } | ||
− | |||
.CharaInfoLabel { | .CharaInfoLabel { | ||
text-align: right; | text-align: right; | ||
− | width: | + | width: 50%; |
} | } | ||
− | |||
− | |||
/* ----------------------------------------------------------------------------- | /* ----------------------------------------------------------------------------- | ||
Table of Contents Rules | Table of Contents Rules | ||
----------------------------------------------------------------------------- */ | ----------------------------------------------------------------------------- */ | ||
− | |||
/* Allow limiting of which header levels are shown in a TOC; | /* Allow limiting of which header levels are shown in a TOC; | ||
Line 238: | Line 315: | ||
*/ | */ | ||
− | .toclimit-2 .toclevel-1 ul, | + | .toclimit-2 .toclevel-1 ul, .toclimit-3 .toclevel-2 ul, .toclimit-4 .toclevel-3 ul, .toclimit-5 .toclevel-4 ul, .toclimit-6 .toclevel-5 ul, .toclimit-7 .toclevel-6 ul { |
− | .toclimit-3 .toclevel-2 ul, | ||
− | .toclimit-4 .toclevel-3 ul, | ||
− | .toclimit-5 .toclevel-4 ul, | ||
− | .toclimit-6 .toclevel-5 ul, | ||
− | .toclimit-7 .toclevel-6 ul { | ||
display: none; | display: none; | ||
} | } | ||
− | |||
.overview_toc .toctitle { | .overview_toc .toctitle { | ||
width: 103%; | width: 103%; | ||
margin-left: -1.5%; | margin-left: -1.5%; | ||
− | border-bottom: 1px solid rgba(160,160,160,.4); | + | border-bottom: 1px solid rgba(160, 160, 160, .4); |
font-weight: 600; | font-weight: 600; | ||
font-size: 20px; | font-size: 20px; | ||
} | } | ||
− | |||
.overview_toc .toctogglespan { | .overview_toc .toctogglespan { | ||
− | font-weight: 300 !important | + | font-weight: 300 !important; |
font-size: 14px !important; | font-size: 14px !important; | ||
} | } | ||
− | |||
− | |||
− | |||
.overview_toc .toc ul { | .overview_toc .toc ul { | ||
column-count: 2; | column-count: 2; | ||
Line 269: | Line 336: | ||
padding: 10px 0px 0px 35px; | padding: 10px 0px 0px 35px; | ||
} | } | ||
− | |||
.overview_toc .toc { | .overview_toc .toc { | ||
display: block; | display: block; | ||
Line 276: | Line 342: | ||
padding: -4px; | padding: -4px; | ||
} | } | ||
− | |||
− | |||
/* ----------------------------------------------------------------------------- | /* ----------------------------------------------------------------------------- | ||
Image Map Sizing Rules | Image Map Sizing Rules | ||
----------------------------------------------------------------------------- */ | ----------------------------------------------------------------------------- */ | ||
− | |||
/* GBVS Imagemap */ | /* GBVS Imagemap */ | ||
Line 288: | Line 351: | ||
transform-origin: center left; | transform-origin: center left; | ||
} | } | ||
− | |||
@media (max-width: 1800px) { | @media (max-width: 1800px) { | ||
img[alt="GBVS CharSelect.png"] { | img[alt="GBVS CharSelect.png"] { | ||
Line 294: | Line 356: | ||
} | } | ||
} | } | ||
− | |||
@media (max-width: 1600px) { | @media (max-width: 1600px) { | ||
img[alt="GBVS CharSelect.png"] { | img[alt="GBVS CharSelect.png"] { | ||
Line 300: | Line 361: | ||
} | } | ||
} | } | ||
− | |||
@media (max-width: 1366px) { | @media (max-width: 1366px) { | ||
img[alt="GBVS CharSelect.png"] { | img[alt="GBVS CharSelect.png"] { | ||
Line 306: | Line 366: | ||
} | } | ||
} | } | ||
− | |||
@media (max-width: 1280px) { | @media (max-width: 1280px) { | ||
img[alt="GBVS CharSelect.png"] { | img[alt="GBVS CharSelect.png"] { | ||
Line 312: | Line 371: | ||
} | } | ||
} | } | ||
− | |||
@media (max-width: 989px) { | @media (max-width: 989px) { | ||
img[alt="GBVS CharSelect.png"] { | img[alt="GBVS CharSelect.png"] { | ||
Line 318: | Line 376: | ||
} | } | ||
} | } | ||
− | |||
− | |||
/* GGXRD-R2 Imagemap */ | /* GGXRD-R2 Imagemap */ | ||
Line 325: | Line 381: | ||
transform-origin: center left; | transform-origin: center left; | ||
} | } | ||
− | |||
@media (max-width: 1366px) { | @media (max-width: 1366px) { | ||
img[alt="GGXRD-R2_Roster.png"] { | img[alt="GGXRD-R2_Roster.png"] { | ||
Line 331: | Line 386: | ||
} | } | ||
} | } | ||
− | |||
@media (max-width: 1280px) { | @media (max-width: 1280px) { | ||
img[alt="GGXRD-R2_Roster.png"] { | img[alt="GGXRD-R2_Roster.png"] { | ||
Line 338: | Line 392: | ||
} | } | ||
+ | /* GGACR Imagemap */ | ||
− | + | img[alt="GGACR Roster.png"] { | |
− | + | transform-origin: center left; | |
− | |||
− | |||
− | . | ||
− | |||
} | } | ||
− | + | @media (max-width: 1428px) { | |
− | + | img[alt="GGACR Roster.png"] { | |
− | + | transform: scale(0.9); | |
− | . | + | } |
− | |||
} | } | ||
− | + | @media (max-width: 1366px) { | |
− | + | img[alt="GGACR Roster.png"] { | |
− | + | transform: scale(0.85); | |
− | . | + | } |
− | |||
} | } | ||
− | + | @media (max-width: 1280px) { | |
− | + | img[alt="GGACR Roster.png"] { | |
− | + | transform: scale(0.75); | |
− | . | + | } |
− | |||
} | } | ||
− | + | @media (max-width: 989px) { | |
− | + | img[alt="GGACR Roster.png"] { | |
− | + | transform: scale(0.9); | |
− | . | + | } |
− | |||
} | } | ||
− | + | @media (max-width: 480px) { | |
− | + | img[alt="GGACR Roster.png"] { | |
− | + | transform: scale(0.63); | |
− | . | + | } |
− | |||
} | } | ||
− | + | @media (max-width: 375px) { | |
− | + | img[alt="GGACR Roster.png"] { | |
− | + | transform: scale(0.475); | |
− | . | + | } |
− | |||
} | } | ||
− | + | @media (max-width: 320px) { | |
− | + | img[alt="GGACR Roster.png"] { | |
− | + | transform: scale(0.39); | |
− | + | } | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | . | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | } | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
} | } | ||
Line 461: | Line 449: | ||
padding: 0; | padding: 0; | ||
} | } | ||
− | |||
ul.tabbernav { | ul.tabbernav { | ||
margin: 0; | margin: 0; | ||
Line 468: | Line 455: | ||
font: bold 14px 'Roboto', sans-serif !important; | font: bold 14px 'Roboto', sans-serif !important; | ||
} | } | ||
− | |||
ul.tabbernav li a { | ul.tabbernav li a { | ||
border-top-left-radius: 4px !important; | border-top-left-radius: 4px !important; | ||
Line 479: | Line 465: | ||
line-height: 1; | line-height: 1; | ||
} | } | ||
− | |||
ul.tabbernav li.tabberactive a { | ul.tabbernav li.tabberactive a { | ||
background-color: #FFF; | background-color: #FFF; | ||
border: 1px solid #7ec0ee !important; | border: 1px solid #7ec0ee !important; | ||
} | } | ||
− | |||
ul.tabbernav li.tabberactive a:hover { | ul.tabbernav li.tabberactive a:hover { | ||
color: #000; | color: #000; | ||
Line 490: | Line 474: | ||
border: 1px solid #7ec0ee !important; | border: 1px solid #7ec0ee !important; | ||
} | } | ||
− | |||
− | |||
/* Prevents tabber contents from showing up for a few frames before the script executes */ | /* Prevents tabber contents from showing up for a few frames before the script executes */ | ||
Line 497: | Line 479: | ||
display: none; | display: none; | ||
} | } | ||
− | |||
− | |||
/* ----------------------------------------------------------------------------- | /* ----------------------------------------------------------------------------- | ||
Tooltip CSS from gbf.wiki | Tooltip CSS from gbf.wiki | ||
Line 508: | Line 488: | ||
border-bottom: 1px dashed black; | border-bottom: 1px dashed black; | ||
} | } | ||
− | |||
.tooltiptext { | .tooltiptext { | ||
visibility: hidden; | visibility: hidden; | ||
min-width: 250px; | min-width: 250px; | ||
padding: 12px 14px; | padding: 12px 14px; | ||
− | |||
position: absolute; | position: absolute; | ||
left: 50%; | left: 50%; | ||
bottom: calc(20px + 100%); | bottom: calc(20px + 100%); | ||
z-index: 99999; | z-index: 99999; | ||
− | |||
background: #fff; | background: #fff; | ||
− | box-shadow: 0 2px 0 0 rgba(0,0,0,0.15); | + | box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.15); |
border: 1px solid #a2a9b1; | border: 1px solid #a2a9b1; | ||
border-radius: 2px; | border-radius: 2px; | ||
− | |||
white-space: normal; | white-space: normal; | ||
font-weight: normal; | font-weight: normal; | ||
Line 531: | Line 507: | ||
line-height: 1.6; | line-height: 1.6; | ||
} | } | ||
− | + | .tooltiptext:after, .tooltiptext:before { | |
− | .tooltiptext:after, | ||
− | .tooltiptext:before { | ||
content: ''; | content: ''; | ||
position: absolute; | position: absolute; | ||
Line 539: | Line 513: | ||
border-style: solid; | border-style: solid; | ||
} | } | ||
− | |||
.tooltiptext:after { | .tooltiptext:after { | ||
top: 100%; | top: 100%; | ||
Line 552: | Line 525: | ||
border-width: 0; | border-width: 0; | ||
} | } | ||
− | |||
.tooltiptext:before { | .tooltiptext:before { | ||
top: 100%; | top: 100%; | ||
Line 558: | Line 530: | ||
border-width: 18px; | border-width: 18px; | ||
margin-left: -18px; | margin-left: -18px; | ||
− | border-color: rgba(0,0,0,0.15) transparent transparent transparent; | + | border-color: rgba(0, 0, 0, 0.15) transparent transparent transparent; |
pointer-events: none; | pointer-events: none; | ||
} | } | ||
− | + | .tooltip .tooltip .tooltiptext, .header-fixed-helper .tooltip .tooltiptext { | |
− | .tooltip .tooltip .tooltiptext, | ||
− | .header-fixed-helper .tooltip .tooltiptext { | ||
bottom: auto; | bottom: auto; | ||
top: calc(20px + 100%); | top: calc(20px + 100%); | ||
} | } | ||
− | + | .tooltip .tooltip .tooltiptext:after, .header-fixed-helper .tooltip .tooltiptext:after { | |
− | .tooltip .tooltip .tooltiptext:after, | ||
− | .header-fixed-helper .tooltip .tooltiptext:after { | ||
top: auto; | top: auto; | ||
bottom: 100%; | bottom: 100%; | ||
Line 581: | Line 549: | ||
transform: none; | transform: none; | ||
} | } | ||
− | + | .tooltip .tooltip .tooltiptext:before, .header-fixed-helper .tooltip .tooltiptext:before { | |
− | .tooltip .tooltip .tooltiptext:before, | ||
− | .header-fixed-helper .tooltip .tooltiptext:before { | ||
top: auto; | top: auto; | ||
bottom: 100%; | bottom: 100%; | ||
Line 590: | Line 556: | ||
border-color: transparent transparent #888 transparent; | border-color: transparent transparent #888 transparent; | ||
} | } | ||
− | |||
.tooltiptext span.hr { | .tooltiptext span.hr { | ||
− | + | display: block; | |
− | + | height: 1px; | |
− | + | background-color: #a2a9b1; | |
} | } | ||
− | + | .tooltiptext hr, .tooltiptext span.hr { | |
− | .tooltiptext hr, | ||
− | .tooltiptext span.hr { | ||
margin: 10px 0 12px; | margin: 10px 0 12px; | ||
position: relative; | position: relative; | ||
background: none; | background: none; | ||
} | } | ||
− | + | .tooltiptext hr:after, .tooltiptext span.hr:after { | |
− | .tooltiptext hr:after, | ||
− | .tooltiptext span.hr:after { | ||
content: ''; | content: ''; | ||
display: block; | display: block; | ||
Line 615: | Line 576: | ||
padding: 0 14px; | padding: 0 14px; | ||
} | } | ||
− | + | .tooltip:hover>.tooltiptext, .tooltip.hover>.tooltiptext { | |
− | .tooltip:hover > .tooltiptext, | ||
− | .tooltip.hover > .tooltiptext { | ||
visibility: visible; | visibility: visible; | ||
} | } | ||
− | |||
.tooltiptext { | .tooltiptext { | ||
opacity: 0; | opacity: 0; | ||
Line 626: | Line 584: | ||
transform: translate(-50%, 8px); | transform: translate(-50%, 8px); | ||
} | } | ||
− | + | .tooltip .tooltip .tooltiptext, .header-fixed-helper .tooltip .tooltiptext { | |
− | .tooltip .tooltip .tooltiptext, | ||
− | .header-fixed-helper .tooltip .tooltiptext { | ||
transform: translate(-50%, -8px); | transform: translate(-50%, -8px); | ||
} | } | ||
− | + | .tooltip:hover>.tooltiptext, .tooltip.hover>.tooltiptext { | |
− | .tooltip:hover > .tooltiptext, | ||
− | .tooltip.hover > .tooltiptext { | ||
opacity: 1; | opacity: 1; | ||
transition-delay: 0s; | transition-delay: 0s; | ||
transform: translate(-50%, 0); | transform: translate(-50%, 0); | ||
} | } | ||
− | + | .tooltiptext a { | |
− | .tooltiptext a { color: #0645ad; border-bottom: 0; } | + | color: #0645ad; |
− | .tooltiptext a:visited { color: #0b0080; } | + | border-bottom: 0; |
− | .tooltiptext a:active { color: #faa700; } | + | } |
− | .tooltiptext a:hover, a:focus { text-decoration: underline; } | + | .tooltiptext a:visited { |
− | .tooltiptext { color: #252525; } | + | color: #0b0080; |
− | .tooltiptext a.new { color: #ba0000; } | + | } |
− | + | .tooltiptext a:active { | |
+ | color: #faa700; | ||
+ | } | ||
+ | .tooltiptext a:hover, a:focus { | ||
+ | text-decoration: underline; | ||
+ | } | ||
+ | .tooltiptext { | ||
+ | color: #252525; | ||
+ | } | ||
+ | .tooltiptext a.new { | ||
+ | color: #ba0000; | ||
+ | } | ||
/* Remove .mw-body-content stacking context so the tooltip can | /* Remove .mw-body-content stacking context so the tooltip can | ||
overlap with elements outside content area and be shown properly */ | overlap with elements outside content area and be shown properly */ | ||
− | |||
− | |||
+ | .mw-body-content { | ||
+ | z-index: auto; | ||
+ | } | ||
.flow-post .flow-post-content { | .flow-post .flow-post-content { | ||
overflow: visible; | overflow: visible; | ||
} | } | ||
− | |||
− | |||
/* ----------------------------------------------------------------------------- | /* ----------------------------------------------------------------------------- | ||
Flex Rules | Flex Rules | ||
Line 670: | Line 634: | ||
color: white; | color: white; | ||
display: inline-block; | display: inline-block; | ||
− | transition: all 0.3s cubic-bezier(.25,.8,.25,1); | + | transition: all 0.3s cubic-bezier(.25, .8, .25, 1); |
} | } | ||
− | |||
.fp-button:hover { | .fp-button:hover { | ||
− | box-shadow: 0 2px 3px rgba(0,0,0,0.12), 0 1px 5px rgba(0,0,0,0.24); | + | box-shadow: 0 2px 3px rgba(0, 0, 0, 0.12), 0 1px 5px rgba(0, 0, 0, 0.24); |
} | } | ||
− | |||
.fpcontent { | .fpcontent { | ||
width: 100%; | width: 100%; | ||
Line 683: | Line 645: | ||
z-index: 1; | z-index: 1; | ||
} | } | ||
− | |||
.fpbox { | .fpbox { | ||
background-color: white; | background-color: white; | ||
− | box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.12), 0 1px 5px 0 rgba(0,0,0,.2); | + | box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .12), 0 1px 5px 0 rgba(0, 0, 0, .2); |
margin: 0px 10px 20px 10px; | margin: 0px 10px 20px 10px; | ||
padding: 2px; | padding: 2px; | ||
border-radius: 4px; | border-radius: 4px; | ||
} | } | ||
− | |||
.fpbox .heading { | .fpbox .heading { | ||
− | border-bottom: 1px solid rgba(160,160,160,.4); | + | border-bottom: 1px solid rgba(160, 160, 160, .4); |
margin: 0 0 10px 0; | margin: 0 0 10px 0; | ||
padding: 0 0 5px 0; | padding: 0 0 5px 0; | ||
Line 700: | Line 660: | ||
font-size: 22px; | font-size: 22px; | ||
} | } | ||
− | |||
.fpbox .heading .smalllink { | .fpbox .heading .smalllink { | ||
font-weight: 500; | font-weight: 500; | ||
} | } | ||
− | |||
.fpbox hr { | .fpbox hr { | ||
border: none; | border: none; | ||
− | border-bottom: 1px solid rgba(160,160,160,.4); | + | border-bottom: 1px solid rgba(160, 160, 160, .4); |
} | } | ||
− | |||
.fplinks { | .fplinks { | ||
margin: -5px; | margin: -5px; | ||
} | } | ||
− | |||
.fpvideos { | .fpvideos { | ||
margin: 0 auto; | margin: 0 auto; | ||
Line 719: | Line 675: | ||
text-align: center; | text-align: center; | ||
} | } | ||
− | |||
.fpvideo { | .fpvideo { | ||
display: inline-block; | display: inline-block; | ||
margin: 0 5px; | margin: 0 5px; | ||
} | } | ||
− | |||
.fplinks .linkslabel { | .fplinks .linkslabel { | ||
background: rgba(0, 0, 0, 0); | background: rgba(0, 0, 0, 0); | ||
Line 731: | Line 685: | ||
padding: 0 0 5px 0; | padding: 0 0 5px 0; | ||
} | } | ||
− | |||
.fplink { | .fplink { | ||
display: inline-block; | display: inline-block; | ||
Line 739: | Line 692: | ||
font-weight: 500; | font-weight: 500; | ||
} | } | ||
− | |||
.fplink a { | .fplink a { | ||
color: black; | color: black; | ||
} | } | ||
− | |||
.fplink a.external { | .fplink a.external { | ||
color: black; | color: black; | ||
} | } | ||
− | |||
.fplink a.external:visited { | .fplink a.external:visited { | ||
color: black; | color: black; | ||
} | } | ||
− | |||
.fplink a:visited { | .fplink a:visited { | ||
color: black; | color: black; | ||
} | } | ||
− | |||
− | |||
/* Yeah, using display: table makes for a lot of extra markup, but it makes proportionate sizing and vertical centering a lot easier, so going with it */ | /* Yeah, using display: table makes for a lot of extra markup, but it makes proportionate sizing and vertical centering a lot easier, so going with it */ | ||
Line 765: | Line 712: | ||
width: 100%; | width: 100%; | ||
} | } | ||
− | |||
.fplink .box .row { | .fplink .box .row { | ||
display: table-row; | display: table-row; | ||
} | } | ||
− | |||
.fplink .box .row .cell { | .fplink .box .row .cell { | ||
background-color: white; | background-color: white; | ||
Line 781: | Line 726: | ||
vertical-align: middle; | vertical-align: middle; | ||
} | } | ||
− | |||
.fplink.wide .box .row .cell { | .fplink.wide .box .row .cell { | ||
padding: 0 5px; | padding: 0 5px; | ||
} | } | ||
− | + | #fptopsection .fplink.image, #fpflexsection .fplink.image, #fpbottomsection .fplink.image { | |
− | #fptopsection .fplink.image, | ||
− | #fpflexsection .fplink.image, | ||
− | #fpbottomsection .fplink.image { | ||
height: 114px; | height: 114px; | ||
width: 114px; | width: 114px; | ||
} | } | ||
− | |||
.fplink.image .box .row .cell { | .fplink.image .box .row .cell { | ||
height: 100px; | height: 100px; | ||
Line 798: | Line 738: | ||
vertical-align: bottom; | vertical-align: bottom; | ||
} | } | ||
− | |||
.fplink.image .box .row .cell .image img { | .fplink.image .box .row .cell .image img { | ||
height: 100px; | height: 100px; | ||
width: 100px; | width: 100px; | ||
} | } | ||
− | |||
@media (min-width: 470px) { | @media (min-width: 470px) { | ||
.fplink { | .fplink { | ||
Line 812: | Line 750: | ||
} | } | ||
} | } | ||
− | |||
@media (min-width: 580px) { | @media (min-width: 580px) { | ||
.fplink { | .fplink { | ||
Line 821: | Line 758: | ||
} | } | ||
} | } | ||
− | |||
@media (min-width: 690px) { | @media (min-width: 690px) { | ||
.fplink { | .fplink { | ||
Line 830: | Line 766: | ||
} | } | ||
} | } | ||
− | |||
@media (min-width: 800px) { | @media (min-width: 800px) { | ||
.fplink { | .fplink { | ||
Line 839: | Line 774: | ||
} | } | ||
} | } | ||
− | |||
@media (min-width: 910px) { | @media (min-width: 910px) { | ||
.fplink { | .fplink { | ||
Line 848: | Line 782: | ||
} | } | ||
} | } | ||
− | |||
@media (min-width: 990px) { | @media (min-width: 990px) { | ||
.fpcontent { | .fpcontent { | ||
Line 868: | Line 801: | ||
margin-top: -5px; | margin-top: -5px; | ||
} | } | ||
− | #fptopsection .fplink, | + | #fptopsection .fplink, #fpbottomsection .fplink { |
− | |||
width: 50%; | width: 50%; | ||
} | } | ||
− | #fptopsection .fplink.wide, | + | #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { |
− | |||
width: 100%; | width: 100%; | ||
} | } | ||
Line 883: | Line 814: | ||
} | } | ||
} | } | ||
− | |||
@media (min-width: 1100px) { | @media (min-width: 1100px) { | ||
− | #fptopsection .fplink, | + | #fptopsection .fplink, #fpbottomsection .fplink { |
− | |||
width: 33.333%; | width: 33.333%; | ||
} | } | ||
− | #fptopsection .fplink.wide, | + | #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { |
− | |||
width: 66.666%; | width: 66.666%; | ||
} | } | ||
} | } | ||
− | |||
@media (min-width: 1210px) { | @media (min-width: 1210px) { | ||
− | #fptopsection .fplink, | + | #fptopsection .fplink, #fpbottomsection .fplink { |
− | |||
width: 25%; | width: 25%; | ||
} | } | ||
− | #fptopsection .fplink.wide, | + | #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { |
− | |||
width: 50%; | width: 50%; | ||
} | } | ||
} | } | ||
− | |||
@media (min-width: 1320px) { | @media (min-width: 1320px) { | ||
− | #fptopsection .fplink, | + | #fptopsection .fplink, #fpbottomsection .fplink { |
− | |||
width: 20%; | width: 20%; | ||
} | } | ||
− | #fptopsection .fplink.wide, | + | #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { |
− | |||
width: 40%; | width: 40%; | ||
} | } | ||
} | } | ||
− | |||
@media (min-width: 1430px) { | @media (min-width: 1430px) { | ||
− | #fptopsection .fplink, | + | #fptopsection .fplink, #fpbottomsection .fplink { |
− | |||
width: 16.666%; | width: 16.666%; | ||
} | } | ||
− | #fptopsection .fplink.wide, | + | #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { |
− | |||
width: 33.333%; | width: 33.333%; | ||
} | } | ||
Line 933: | Line 852: | ||
color: black; | color: black; | ||
} | } | ||
− | .fplink a | + | .fplink a.external { |
color: black; | color: black; | ||
} | } | ||
Line 940: | Line 859: | ||
} | } | ||
} | } | ||
− | |||
@media (min-width: 1540px) { | @media (min-width: 1540px) { | ||
− | #fptopsection .fplink, | + | #fptopsection .fplink, #fpbottomsection .fplink { |
− | |||
width: 14.285%; | width: 14.285%; | ||
} | } | ||
− | #fptopsection .fplink.wide, | + | #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { |
− | |||
width: 28.571%; | width: 28.571%; | ||
} | } | ||
− | #fptopsection .fpmaybercol .fpbox, | + | #fptopsection .fpmaybercol .fpbox, #fpbottomsection .fpmaybercol .fpbox { |
− | |||
background-image: none; | background-image: none; | ||
} | } | ||
Line 958: | Line 873: | ||
width: 70.886%; | width: 70.886%; | ||
} | } | ||
− | #fptopsection .fpmaybelcol .fplink, | + | #fptopsection .fpmaybelcol .fplink, #fpbottomsection .fpmaybelcol .fplink { |
− | |||
width: 20%; | width: 20%; | ||
} | } | ||
− | #fptopsection .fpmaybelcol .fplink.wide, | + | #fptopsection .fpmaybelcol .fplink.wide, #fpbottomsection .fpmaybelcol .fplink.wide { |
− | |||
width: 40%; | width: 40%; | ||
} | } | ||
Line 970: | Line 883: | ||
width: 29.113%; | width: 29.113%; | ||
} | } | ||
− | #fptopsection .fpmaybercol .fplink, | + | #fptopsection .fpmaybercol .fplink, #fpbottomsection .fpmaybercol .fplink { |
− | |||
width: 50%; | width: 50%; | ||
} | } | ||
− | #fptopsection .fpmaybercol .fplink.wide, | + | #fptopsection .fpmaybercol .fplink.wide, #fpbottomsection .fpmaybercol .fplink.wide { |
− | |||
width: 100%; | width: 100%; | ||
} | } | ||
} | } | ||
− | |||
@media (min-width: 1650px) { | @media (min-width: 1650px) { | ||
− | #fptopsection .fplink, | + | #fptopsection .fplink, #fpbottomsection .fplink { |
− | |||
width: 12.5%; | width: 12.5%; | ||
} | } | ||
− | #fptopsection .fplink.wide, | + | #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { |
− | |||
width: 25%; | width: 25%; | ||
} | } | ||
} | } | ||
− | |||
@media (min-width: 1697px) { | @media (min-width: 1697px) { | ||
− | #fptopsection .fpmaybelcol .fplink, | + | #fptopsection .fpmaybelcol .fplink, #fpbottomsection .fpmaybelcol .fplink { |
− | |||
width: 16.666%; | width: 16.666%; | ||
} | } | ||
− | #fptopsection .fpmaybelcol .fplink.wide, | + | #fptopsection .fpmaybelcol .fplink.wide, #fpbottomsection .fpmaybelcol .fplink.wide { |
− | |||
width: 33.333%; | width: 33.333%; | ||
} | } | ||
} | } | ||
− | |||
@media (min-width: 1760px) { | @media (min-width: 1760px) { | ||
− | #fptopsection .fplink, | + | #fptopsection .fplink, #fpbottomsection .fplink { |
− | |||
width: 11.111%; | width: 11.111%; | ||
} | } | ||
− | #fptopsection .fplink.wide, | + | #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { |
− | |||
width: 22.222%; | width: 22.222%; | ||
} | } | ||
} | } | ||
− | |||
@media (min-width: 1850px) { | @media (min-width: 1850px) { | ||
− | #fptopsection .fpmaybelcol .fplink, | + | #fptopsection .fpmaybelcol .fplink, #fpbottomsection .fpmaybelcol .fplink { |
− | |||
width: 14.285%; | width: 14.285%; | ||
} | } | ||
− | #fptopsection .fpmaybelcol .fplink.wide, | + | #fptopsection .fpmaybelcol .fplink.wide, #fpbottomsection .fpmaybelcol .fplink.wide { |
− | |||
width: 28.571%; | width: 28.571%; | ||
} | } | ||
} | } | ||
− | |||
@media (min-width: 1870px) { | @media (min-width: 1870px) { | ||
− | #fptopsection .fplink, | + | #fptopsection .fplink, #fpbottomsection .fplink { |
− | |||
width: 10%; | width: 10%; | ||
} | } | ||
− | #fptopsection .fplink.wide, | + | #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { |
− | |||
width: 20%; | width: 20%; | ||
} | } | ||
− | #fptopsection .fplink.image, | + | #fptopsection .fplink.image, #fpbottomsection .fplink.image { |
− | |||
width: 134px; | width: 134px; | ||
height: 134px; | height: 134px; | ||
} | } | ||
− | #fptopsection .fplink.image .box .row .cell, | + | #fptopsection .fplink.image .box .row .cell, #fpbottomsection .fplink.image .box .row .cell { |
− | |||
width: 120px; | width: 120px; | ||
height: 120px; | height: 120px; | ||
} | } | ||
− | #fptopsection .fplink.image .box .row .cell .image img, | + | #fptopsection .fplink.image .box .row .cell .image img, #fpbottomsection .fplink.image .box .row .cell .image img { |
− | |||
width: 120px; | width: 120px; | ||
height: 120px; | height: 120px; | ||
} | } | ||
} | } | ||
− | |||
@media (min-width: 1918px) { | @media (min-width: 1918px) { | ||
− | #fptopsection .fpmaybercol .fplink, | + | #fptopsection .fpmaybercol .fplink, #fpbottomsection .fpmaybercol .fplink { |
− | |||
width: 33.333%; | width: 33.333%; | ||
} | } | ||
− | #fptopsection .fpmaybercol .fplink.wide, | + | #fptopsection .fpmaybercol .fplink.wide, #fpbottomsection .fpmaybercol .fplink.wide { |
− | |||
width: 66.666%; | width: 66.666%; | ||
} | } | ||
} | } | ||
− | |||
@media (min-width: 1980px) { | @media (min-width: 1980px) { | ||
− | #fptopsection .fplink, | + | #fptopsection .fplink, #fpbottomsection .fplink { |
− | |||
width: 9.09%; | width: 9.09%; | ||
} | } | ||
− | #fptopsection .fplink.wide, | + | #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { |
− | |||
width: 18.181%; | width: 18.181%; | ||
} | } | ||
} | } | ||
− | |||
@media (min-width: 2006px) { | @media (min-width: 2006px) { | ||
− | #fptopsection .fpmaybelcol .fplink, | + | #fptopsection .fpmaybelcol .fplink, #fpbottomsection .fpmaybelcol .fplink { |
− | |||
width: 12.5%; | width: 12.5%; | ||
} | } | ||
− | #fptopsection .fpmaybelcol .fplink.wide, | + | #fptopsection .fpmaybelcol .fplink.wide, #fpbottomsection .fpmaybelcol .fplink.wide { |
− | |||
width: 25%; | width: 25%; | ||
} | } | ||
} | } | ||
− | |||
@media (min-width: 2090px) { | @media (min-width: 2090px) { | ||
− | #fptopsection .fplink, | + | #fptopsection .fplink, #fpbottomsection .fplink { |
− | |||
width: 8.33%; | width: 8.33%; | ||
} | } | ||
− | #fptopsection .fplink.wide, | + | #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { |
− | |||
width: 16.666%; | width: 16.666%; | ||
} | } | ||
} | } | ||
− | |||
@media (min-width: 2161px) { | @media (min-width: 2161px) { | ||
− | #fptopsection .fpmaybelcol .fplink, | + | #fptopsection .fpmaybelcol .fplink, #fpbottomsection .fpmaybelcol .fplink { |
− | |||
width: 11.111%; | width: 11.111%; | ||
} | } | ||
− | #fptopsection .fpmaybelcol .fplink.wide, | + | #fptopsection .fpmaybelcol .fplink.wide, #fpbottomsection .fpmaybelcol .fplink.wide { |
− | |||
width: 22.222%; | width: 22.222%; | ||
} | } | ||
} | } | ||
− | |||
@media (min-width: 2200px) { | @media (min-width: 2200px) { | ||
− | #fptopsection .fplink, | + | #fptopsection .fplink, #fpbottomsection .fplink { |
− | |||
width: 7.692%; | width: 7.692%; | ||
} | } | ||
− | #fptopsection .fplink.wide, | + | #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { |
− | |||
width: 15.384%; | width: 15.384%; | ||
} | } | ||
} | } | ||
− | |||
@media (min-width: 2296px) { | @media (min-width: 2296px) { | ||
− | #fptopsection .fpmaybercol .fplink, | + | #fptopsection .fpmaybercol .fplink, #fpbottomsection .fpmaybercol .fplink { |
− | |||
width: 25%; | width: 25%; | ||
} | } | ||
− | #fptopsection .fpmaybercol .fplink.wide, | + | #fptopsection .fpmaybercol .fplink.wide, #fpbottomsection .fpmaybercol .fplink.wide { |
− | |||
width: 50%; | width: 50%; | ||
} | } | ||
} | } | ||
− | |||
@media (min-width: 2310px) { | @media (min-width: 2310px) { | ||
− | #fptopsection .fplink, | + | #fptopsection .fplink, #fpbottomsection .fplink { |
− | |||
width: 7.142%; | width: 7.142%; | ||
} | } | ||
− | #fptopsection .fplink.wide, | + | #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { |
− | |||
width: 14.285%; | width: 14.285%; | ||
} | } | ||
} | } | ||
− | |||
@media (min-width: 2316px) { | @media (min-width: 2316px) { | ||
− | #fptopsection .fpmaybelcol .fplink, | + | #fptopsection .fpmaybelcol .fplink, #fpbottomsection .fpmaybelcol .fplink { |
− | |||
width: 10%; | width: 10%; | ||
} | } | ||
− | #fptopsection .fpmaybelcol .fplink.wide, | + | #fptopsection .fpmaybelcol .fplink.wide, #fpbottomsection .fpmaybelcol .fplink.wide { |
− | |||
width: 20%; | width: 20%; | ||
} | } | ||
} | } | ||
− | |||
@media (min-width: 2420px) { | @media (min-width: 2420px) { | ||
− | #fptopsection .fplink, | + | #fptopsection .fplink, #fpbottomsection .fplink { |
− | |||
width: 6.666%; | width: 6.666%; | ||
} | } | ||
− | #fptopsection .fplink.wide, | + | #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { |
− | |||
width: 13.333%; | width: 13.333%; | ||
} | } | ||
Line 1,161: | Line 1,024: | ||
padding: 5px 5px; | padding: 5px 5px; | ||
} | } | ||
− | #fptopsection .fplink.image, | + | #fptopsection .fplink.image, #fpbottomsection .fplink.image { |
− | |||
width: 164px; | width: 164px; | ||
height: 164px; | height: 164px; | ||
} | } | ||
− | #fptopsection .fplink.image .box .row .cell, | + | #fptopsection .fplink.image .box .row .cell, #fpbottomsection .fplink.image .box .row .cell { |
− | |||
width: 150px; | width: 150px; | ||
height: 150px; | height: 150px; | ||
} | } | ||
− | #fptopsection .fplink.image .box .row .cell .image img, | + | #fptopsection .fplink.image .box .row .cell .image img, #fpbottomsection .fplink.image .box .row .cell .image img { |
− | |||
width: 150px; | width: 150px; | ||
height: 150px; | height: 150px; | ||
} | } | ||
} | } | ||
− | |||
.fplink.image .image { | .fplink.image .image { | ||
position: absolute; | position: absolute; | ||
Line 1,186: | Line 1,045: | ||
z-index: 1; | z-index: 1; | ||
} | } | ||
− | |||
.fplink.image a { | .fplink.image a { | ||
z-index: 2; | z-index: 2; | ||
} | } | ||
− | |||
.fplink a { | .fplink a { | ||
display: block; | display: block; | ||
Line 1,200: | Line 1,057: | ||
padding: 1px 5px; | padding: 1px 5px; | ||
} | } | ||
− | |||
.fplink.image .image a { | .fplink.image .image a { | ||
padding: 0; | padding: 0; | ||
} | } | ||
− | |||
.fplink.image .link a { | .fplink.image .link a { | ||
background: #f5f5f5; | background: #f5f5f5; | ||
border-top: 2px solid #454545; | border-top: 2px solid #454545; | ||
} | } | ||
− | |||
.fplink.wide a { | .fplink.wide a { | ||
margin: 0 -5px; | margin: 0 -5px; | ||
} | } | ||
− | |||
− | |||
/* ----------------------------------------------------------------------------- | /* ----------------------------------------------------------------------------- | ||
ColumnList Specific Rules | ColumnList Specific Rules | ||
----------------------------------------------------------------------------- */ | ----------------------------------------------------------------------------- */ | ||
+ | |||
.columns2 { | .columns2 { | ||
− | -webkit-columns: 16em 2; | + | -webkit-columns: 16em 2; |
− | -moz-columns: 16em 2; | + | -moz-columns: 16em 2; |
− | columns: 16em 2; | + | columns: 16em 2; |
} | } | ||
− | |||
/* ----------------------------------------------------------------------------- | /* ----------------------------------------------------------------------------- | ||
MoveData Specific Rules | MoveData Specific Rules | ||
----------------------------------------------------------------------------- */ | ----------------------------------------------------------------------------- */ | ||
+ | |||
div.movedata { | div.movedata { | ||
− | border-radius: 4px; | + | border-radius: 4px; |
− | border: none; | + | border: none; |
− | background-color: white; | + | background-color: white; |
− | box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.12), 0 1px 5px 0 rgba(0,0,0,.2); | + | box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .12), 0 1px 5px 0 rgba(0, 0, 0, .2); |
− | border-collapse: collapse; | + | border-collapse: collapse; |
− | margin: 0em; | + | margin: 0em; |
} | } | ||
div.movedata>table.movedata { | div.movedata>table.movedata { | ||
− | width:100%; | + | width: 100%; |
− | text-align:center; | + | text-align: center; |
− | margin: 0.2em 0; | + | margin: 0.2em 0; |
} | } | ||
div.movedata>p { | div.movedata>p { | ||
− | padding-left: 0.5em; | + | padding-left: 0.5em; |
− | padding-right: 0.5em; | + | padding-right: 0.5em; |
− | padding-bottom: 0.5em; | + | padding-bottom: 0.5em; |
} | } | ||
div.movedata>dl { | div.movedata>dl { | ||
− | padding-left: 0.5em; | + | padding-left: 0.5em; |
− | padding-right: 0.5em; | + | padding-right: 0.5em; |
} | } | ||
div.movedata>.thumb>.thumbinner>.image>.thumbimage { | div.movedata>.thumb>.thumbinner>.image>.thumbimage { | ||
− | background-color: #f8f9fa; | + | background-color: #f8f9fa; |
} | } | ||
/* ------------------------- | /* ------------------------- | ||
Flex Attack Data styling | Flex Attack Data styling | ||
------------------------- */ | ------------------------- */ | ||
+ | |||
@media (min-width: 990px) { | @media (min-width: 990px) { | ||
.attack-container { | .attack-container { | ||
Line 1,270: | Line 1,124: | ||
} | } | ||
span.input-badge { | span.input-badge { | ||
− | border: 1px solid #2e2d2d; | + | border: 1px solid #2e2d2d; |
− | border-radius: 4px; | + | border-radius: 4px; |
− | padding: 1px .35em; | + | padding: 1px .35em; |
− | background-color: white; | + | background-color: white; |
} | } | ||
− | |||
.attack-container { | .attack-container { | ||
width: 100%; | width: 100%; | ||
Line 1,284: | Line 1,137: | ||
border: none; | border: none; | ||
background-color: white; | background-color: white; | ||
− | box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2); | + | box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .12), 0 1px 5px 0 rgba(0, 0, 0, .2); |
border-collapse: collapse; | border-collapse: collapse; | ||
} | } | ||
div.attack-gallery ul.gallery { | div.attack-gallery ul.gallery { | ||
− | margin: 0; | + | margin: 0; |
} | } | ||
div.attack-gallery * .gallerytext p { | div.attack-gallery * .gallerytext p { | ||
− | margin: 0; | + | margin: 0; |
− | text-align: center; | + | text-align: center; |
} | } | ||
div.attack-data { | div.attack-data { | ||
− | border: none; | + | border: none; |
− | background-color: white; | + | background-color: white; |
− | border-collapse: collapse; | + | border-collapse: collapse; |
− | margin-top: 0; | + | margin-top: 0; |
− | + | overflow: auto; | |
} | } | ||
div.attack-info>table.attack-data { | div.attack-info>table.attack-data { | ||
− | width:100%; | + | width: 100%; |
− | text-align:center; | + | text-align: center; |
− | margin-top: 0; | + | margin-top: 0; |
− | margin-left: 0; | + | margin-left: 0; |
− | margin-bottom: 0.2em; | + | margin-bottom: 0.2em; |
} | } | ||
− | div.attack-info>p{ | + | div.attack-info>p { |
− | padding-left: 0.5em; | + | padding-left: 0.5em; |
− | padding-right: 0.5em; | + | padding-right: 0.5em; |
− | padding-bottom: 0.5em; | + | padding-bottom: 0.5em; |
} | } | ||
− | div.attack-info>dl{ | + | div.attack-info>dl { |
− | padding-left: 0.5em; | + | padding-left: 0.5em; |
− | padding-right: 0.5em; | + | padding-right: 0.5em; |
} | } | ||
.attack-info h4 { | .attack-info h4 { | ||
− | padding: 0; | + | padding: 0; |
− | margin: 0; | + | margin: 0; |
} | } | ||
− | |||
/* ----------------------------------------------------------------------------- | /* ----------------------------------------------------------------------------- | ||
Character Link Button styling | Character Link Button styling | ||
----------------------------------------------------------------------------- */ | ----------------------------------------------------------------------------- */ | ||
+ | |||
.char-btn { | .char-btn { | ||
− | background-color: | + | background-color: #e85a5a; |
− | + | color: white; | |
− | color: | + | border-radius: 4px; |
− | border-radius: 4px; | + | text-align: center; |
− | text-align: center; | + | text-decoration: none; |
− | text-decoration: none; | + | display: inline-block; |
− | display: inline-block; | + | padding: 4px 8px 4px; |
− | padding: 4px 8px 4px; | + | margin: 5px; |
− | margin: 5px; | + | min-width: 90px; |
− | min-width: 90px; | ||
} | } | ||
− | |||
/* Remove external link icon from external links and adjust their padding | /* Remove external link icon from external links and adjust their padding | ||
Replace this styling with a more localized solution in the future */ | Replace this styling with a more localized solution in the future */ | ||
+ | |||
a .external .text { | a .external .text { | ||
background-image: none; | background-image: none; | ||
padding-right: 0px; | padding-right: 0px; | ||
} | } | ||
− | |||
.addShadow { | .addShadow { | ||
− | box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); | + | box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); |
} | } | ||
− | |||
/* ----------------------------------------------------------------------------- | /* ----------------------------------------------------------------------------- | ||
Cargo Based Move Boxes Styling | Cargo Based Move Boxes Styling | ||
----------------------------------------------------------------------------- */ | ----------------------------------------------------------------------------- */ | ||
+ | |||
.grid-container { | .grid-container { | ||
display: grid; | display: grid; | ||
Line 1,357: | Line 1,208: | ||
grid-template-rows: auto auto; | grid-template-rows: auto auto; | ||
gap: 0px 0px; | gap: 0px 0px; | ||
− | grid-template-areas: | + | grid-template-areas: "name data" "gallery description"; |
− | |||
− | |||
} | } | ||
− | |||
.move-box { | .move-box { | ||
− | box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.12), 0 1px 5px 0 rgba(0,0,0,.2); | + | box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .12), 0 1px 5px 0 rgba(0, 0, 0, .2); |
border-radius: 4px; | border-radius: 4px; | ||
background-color: white; | background-color: white; | ||
} | } | ||
− | |||
.name { | .name { | ||
display: grid; | display: grid; | ||
Line 1,374: | Line 1,221: | ||
height: 1em; | height: 1em; | ||
gap: 0px 0px; | gap: 0px 0px; | ||
− | grid-template-areas: | + | grid-template-areas: "."; |
− | |||
grid-area: name; | grid-area: name; | ||
text-align: center; | text-align: center; | ||
} | } | ||
− | |||
#moveName { | #moveName { | ||
font-weight: bold; | font-weight: bold; | ||
Line 1,385: | Line 1,230: | ||
line-height: 1.1em; | line-height: 1.1em; | ||
} | } | ||
− | |||
.gallery { | .gallery { | ||
grid-area: gallery; | grid-area: gallery; | ||
Line 1,392: | Line 1,236: | ||
overflow: hidden; | overflow: hidden; | ||
} | } | ||
− | |||
.description { | .description { | ||
grid-area: description; | grid-area: description; | ||
padding: 0.25em 1em; | padding: 0.25em 1em; | ||
} | } | ||
− | |||
.data { | .data { | ||
display: grid; | display: grid; | ||
Line 1,403: | Line 1,245: | ||
grid-template-rows: repeat(2, 1fr); | grid-template-rows: repeat(2, 1fr); | ||
gap: 0px 0px; | gap: 0px 0px; | ||
− | grid-template-areas: | + | grid-template-areas: ". . . . . . . ." ". . . . . . . ."; |
− | |||
− | |||
grid-area: data; | grid-area: data; | ||
text-align: center; | text-align: center; | ||
border-bottom: 1px solid grey; | border-bottom: 1px solid grey; | ||
} | } | ||
− | |||
.data-cell { | .data-cell { | ||
font-size: 20px; | font-size: 20px; | ||
} | } | ||
− | |||
#startup { | #startup { | ||
color: #4caf50; | color: #4caf50; | ||
Line 1,423: | Line 1,261: | ||
#recovery { | #recovery { | ||
color: #2196f3; | color: #2196f3; | ||
+ | } | ||
+ | |||
+ | /* Movelist Toggles */ | ||
+ | .movelist-toggles { | ||
+ | display: flex; | ||
+ | } | ||
+ | |||
+ | .movelist-toggle-button { | ||
+ | user-select: none; | ||
+ | flex-flow: row wrap; | ||
+ | padding: 2px 10px; | ||
+ | margin: 0 3px; | ||
+ | border-radius: 3px; | ||
+ | border: 1px solid black; | ||
+ | } | ||
+ | |||
+ | .movelist-toggle-off { | ||
+ | background-color: #aaa; | ||
+ | } | ||
+ | |||
+ | .movelist-toggle-on { | ||
+ | background-color: #eee; | ||
} | } |
Revision as of 18:16, 23 December 2021
/* CSS placed in this file will be applied to all skins */ #bodyContent h5 { font-size: 12px; } /* MoveData frameChart Toggle */ .frameChart-toggle-off, .frameChart-toggle-on { border: 1px solid #000; width: 134px; height: 24px; cursor: pointer; } .frameChart-toggle-on { opacity: 1.0; } .frameChart-toggle-off { opacity: 0.5; display: none; } .frameChart { width: 100%; border-bottom: 1px solid grey; display: none; } /* End MoveData frameChart Toggle */ .frame-data-startup, .frame-data-active, .frame-data-inactive, .frame-data-recovery, .frame-data-specialRecovery { width: 10px; height: 10px; display: inline-block; margin-left: 1px; margin-right: 1px; vertical-align: middle; } .frame-data-startup { background-color: #36B37E; } .frame-data-active { background-color: #FF5D5D; } .frame-data-inactive { background-color: gray; } .frame-data-recovery { background-color: #0069B6; } .frame-data-specialRecovery { background-color: #db69cf; } .spawn-projectile { width: 3px; height: 14px; display: inline-block; margin-left: -1px; margin-right: 1px; vertical-align: middle; background-color: red; } /* ----------------------------------------------------------------------------- Effect Classes ----------------------------------------------------------------------------- */ .round-corners { border-radius: 6px; } .responsiveImg img { max-width: 100%; height: auto; max-height: 450px; } /* ----------------------------------------------------------------------------- Cargo Rules ----------------------------------------------------------------------------- */ table.cargoDynamicTable td { text-align: center; } /* reduce the padding on DynamicTables generated with DataTables */ table.cargoDynamicTable thead th, table.cargoDynamicTable thead td { padding: 4px 17px 4px 4px } table.cargoDynamicTable tfoot th, table.cargoDynamicTable tfoot td { padding: 4px } table.cargoDynamicTable tbody th, table.cargoDynamicTable tbody td { padding: 4px } /* disable the tfoot which dupes thead */ table.cargoDynamicTable tfoot { display: none; } /* move images to start of line. else they will be at end of line when there are notes */ table.cargoDynamicTable div.tright { float: left; } /* Make the cargo standard table look more like the mediawiki table */ table.cargoTable { width: 100%; } .cargoTable table { width: 100%; } table.cargoTable tbody { text-align: center; } table.cargoTable tbody td { border: 1px solid #a2a9b1; text-align: center; } table.cargoTable thead th { background-color: #f8f9fa; margin: 1em 0; padding: 0 2px; border: 1px solid #a2a9b1; } /* ----------------------------------------------------------------------------- Global Rules ----------------------------------------------------------------------------- */ /* normalize link colors */ a, a:visited, a.external, a.external:visited { color: rgb(6, 95, 212); } .mw-body-content a.external:visited, a.external, a, a:visited { color: rgb(6, 95, 212); } a:hover, a:focus { text-decoration: none; } /* move collapsible element indicator to the left */ span.mw-collapsible-toggle { float: left; margin-left: 0; margin-right: 1em; } /* Odd rows for any table with "stripe" class */ table.stripe tr:nth-child(even) { background-color: white; } /* Even rows for any table with "stripe" class */ table.stripe tr:nth-child(odd) { background-color: #f9f9f9; } /* Odd set of 2 rows (for colors table) */ table.colors-table.stripe tr:nth-child(4n), table.colors-table.stripe tr:nth-child(4n-1) { background-color: white; } /* Even set of 2 rows (for colors table) */ table.colors-table.stripe tr:nth-child(4n-2), table.colors-table.stripe tr:nth-child(4n-3) { background-color: #f9f9f9; } .dataTables_wrapper { background-color: white; box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .12), 0 1px 5px 0 rgba(0, 0, 0, .2); padding: 4px; border-radius: 4px; } /* ----------------------------------------------------------------------------- Editorial Rules ----------------------------------------------------------------------------- */ .imgContainer { display: inline-block; overflow: hidden; object-fit: cover; object-position: center; } .editorial-body { font-size: 14px; line-height: 27px; padding: 4px; margin: 0 auto; max-width: 1000px; color: #454545; font-weight: normal; } .editorial-author { font-size: 20px; color: #6B778C; font-weight: 500; line-height: 20px; text-align: center; } .editorial-title { font-size: 29px; font-weight: 600; letter-spacing: -0.01em; line-height: 32px; text-align: center; } .editorial-subtitle { font-size: 20px; font-weight: 500; letter-spacing: -0.008em; line-height: 24px; margin-top: 36px; } .editorial-sectiontitle { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; line-height: 24px; margin-top: 36px; } /* ----------------------------------------------------------------------------- Footer Nav Rules ----------------------------------------------------------------------------- */ .footNav { box-sizing: border-box; display: grid; grid-auto-rows: auto; gap: 0px 0px; border-radius: 4px; box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .12), 0 1px 5px 0 rgba(0, 0, 0, .2); grid-template-areas: "." "." "." "." "."; } .footNavHeader { background-color: #F64236; text-align: center; color: white; margin: 8px; padding: 2px; } .footNavFlex { display: flex; flex: 1 1 0px; flex-wrap: wrap; align-items: center; justify-content: center; margin: 0.25em 1% 0px 1%; padding-bottom: 1em; } .footNavFlex div { margin: 4px 10px 4px 10px; } /* ----------------------------------------------------------------------------- Tier List Rules ----------------------------------------------------------------------------- */ .tierList { display: grid; grid-template-columns: 58px 1fr; grid-column-gap: 0px; grid-row-gap: 0px; box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .12), 0 1px 5px 0 rgba(0, 0, 0, .2); border-radius: 4px; font-size: 12px; background-color: #f4f4f2; } .tierHeader { display: flex; align-items: center; justify-content: center; padding: 1em 2em; font-size: 14px; font-weight: 600; border-right: 2px solid #1a1a17; } .tierGroup { display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; } .tierUnderline { border-bottom: 2px solid #1a1a17; } .generalUnderline { border-bottom: 1px solid rgba(160, 160, 160, .4); } .tierGroup>div { margin: 4px 10px; } .CharaInfoLabel { text-align: right; width: 50%; } /* ----------------------------------------------------------------------------- Table of Contents Rules ----------------------------------------------------------------------------- */ /* Allow limiting of which header levels are shown in a TOC; <div class="toclimit-3">, for instance, will limit to showing ==headings== and ===headings=== but no further (as long as there are no =headings= on the page, which there shouldn't be according to the MoS). */ .toclimit-2 .toclevel-1 ul, .toclimit-3 .toclevel-2 ul, .toclimit-4 .toclevel-3 ul, .toclimit-5 .toclevel-4 ul, .toclimit-6 .toclevel-5 ul, .toclimit-7 .toclevel-6 ul { display: none; } .overview_toc .toctitle { width: 103%; margin-left: -1.5%; border-bottom: 1px solid rgba(160, 160, 160, .4); font-weight: 600; font-size: 20px; } .overview_toc .toctogglespan { font-weight: 300 !important; font-size: 14px !important; } .overview_toc .toc ul { column-count: 2; -moz-column-count: 2; -webkit-column-count: 2; line-height: 1.6; padding: 10px 0px 0px 35px; } .overview_toc .toc { display: block; border: unset; background-color: unset; padding: -4px; } /* ----------------------------------------------------------------------------- Image Map Sizing Rules ----------------------------------------------------------------------------- */ /* GBVS Imagemap */ img[alt="GBVS CharSelect.png"] { transform-origin: center left; } @media (max-width: 1800px) { img[alt="GBVS CharSelect.png"] { transform: scale(0.9); } } @media (max-width: 1600px) { img[alt="GBVS CharSelect.png"] { transform: scale(0.8); } } @media (max-width: 1366px) { img[alt="GBVS CharSelect.png"] { transform: scale(0.58); } } @media (max-width: 1280px) { img[alt="GBVS CharSelect.png"] { transform: scale(0.5); } } @media (max-width: 989px) { img[alt="GBVS CharSelect.png"] { transform: scale(0.72); } } /* GGXRD-R2 Imagemap */ img[alt="GGXRD-R2_Roster.png"] { transform-origin: center left; } @media (max-width: 1366px) { img[alt="GGXRD-R2_Roster.png"] { transform: scale(0.85); } } @media (max-width: 1280px) { img[alt="GGXRD-R2_Roster.png"] { transform: scale(0.75); } } /* GGACR Imagemap */ img[alt="GGACR Roster.png"] { transform-origin: center left; } @media (max-width: 1428px) { img[alt="GGACR Roster.png"] { transform: scale(0.9); } } @media (max-width: 1366px) { img[alt="GGACR Roster.png"] { transform: scale(0.85); } } @media (max-width: 1280px) { img[alt="GGACR Roster.png"] { transform: scale(0.75); } } @media (max-width: 989px) { img[alt="GGACR Roster.png"] { transform: scale(0.9); } } @media (max-width: 480px) { img[alt="GGACR Roster.png"] { transform: scale(0.63); } } @media (max-width: 375px) { img[alt="GGACR Roster.png"] { transform: scale(0.475); } } @media (max-width: 320px) { img[alt="GGACR Roster.png"] { transform: scale(0.39); } } /* ----------------------------------------------------------------------------- Tabber Rules ----------------------------------------------------------------------------- */ .tabber .tabbertab { border: none; padding: 0; } ul.tabbernav { margin: 0; padding: 3px 0; border: 0; font: bold 14px 'Roboto', sans-serif !important; } ul.tabbernav li a { border-top-left-radius: 4px !important; border-top-right-radius: 4px !important; padding: 3px .5em; margin-left: 3px; border: 1px solid #CCC; /* background: #F2F7FF; */ text-decoration: none; line-height: 1; } ul.tabbernav li.tabberactive a { background-color: #FFF; border: 1px solid #7ec0ee !important; } ul.tabbernav li.tabberactive a:hover { color: #000; background: #FFF; border: 1px solid #7ec0ee !important; } /* Prevents tabber contents from showing up for a few frames before the script executes */ .tabber:not(.tabberlive)>.tabbertab:not(:first-child) { display: none; } /* ----------------------------------------------------------------------------- Tooltip CSS from gbf.wiki ----------------------------------------------------------------------------- */ .tooltip { position: relative; display: inline; border-bottom: 1px dashed black; } .tooltiptext { visibility: hidden; min-width: 250px; padding: 12px 14px; position: absolute; left: 50%; bottom: calc(20px + 100%); z-index: 99999; background: #fff; box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.15); border: 1px solid #a2a9b1; border-radius: 2px; white-space: normal; font-weight: normal; font-style: initial; text-align: center; font-size: 14px; line-height: 1.6; } .tooltiptext:after, .tooltiptext:before { content: ''; position: absolute; left: 50%; border-style: solid; } .tooltiptext:after { top: 100%; bottom: auto; width: 20px; height: 20px; background: #fff; margin-top: -10px; margin-left: -10px; box-shadow: 1px 1px 0px #a2a9b1; transform: rotate(45deg); border-width: 0; } .tooltiptext:before { top: 100%; bottom: auto; border-width: 18px; margin-left: -18px; border-color: rgba(0, 0, 0, 0.15) transparent transparent transparent; pointer-events: none; } .tooltip .tooltip .tooltiptext, .header-fixed-helper .tooltip .tooltiptext { bottom: auto; top: calc(20px + 100%); } .tooltip .tooltip .tooltiptext:after, .header-fixed-helper .tooltip .tooltiptext:after { top: auto; bottom: 100%; border-width: 15px; margin-left: -15px; border-color: transparent transparent white transparent; width: 0; height: 0; box-shadow: none; background: none; transform: none; } .tooltip .tooltip .tooltiptext:before, .header-fixed-helper .tooltip .tooltiptext:before { top: auto; bottom: 100%; border-width: 16px; margin-left: -16px; border-color: transparent transparent #888 transparent; } .tooltiptext span.hr { display: block; height: 1px; background-color: #a2a9b1; } .tooltiptext hr, .tooltiptext span.hr { margin: 10px 0 12px; position: relative; background: none; } .tooltiptext hr:after, .tooltiptext span.hr:after { content: ''; display: block; width: 100%; height: 1px !important; position: absolute; left: -14px; background: #a2a9b1; padding: 0 14px; } .tooltip:hover>.tooltiptext, .tooltip.hover>.tooltiptext { visibility: visible; } .tooltiptext { opacity: 0; transition: opacity 200ms ease, visibility 0s ease 200ms, transform 200ms ease; transform: translate(-50%, 8px); } .tooltip .tooltip .tooltiptext, .header-fixed-helper .tooltip .tooltiptext { transform: translate(-50%, -8px); } .tooltip:hover>.tooltiptext, .tooltip.hover>.tooltiptext { opacity: 1; transition-delay: 0s; transform: translate(-50%, 0); } .tooltiptext a { color: #0645ad; border-bottom: 0; } .tooltiptext a:visited { color: #0b0080; } .tooltiptext a:active { color: #faa700; } .tooltiptext a:hover, a:focus { text-decoration: underline; } .tooltiptext { color: #252525; } .tooltiptext a.new { color: #ba0000; } /* Remove .mw-body-content stacking context so the tooltip can overlap with elements outside content area and be shown properly */ .mw-body-content { z-index: auto; } .flow-post .flow-post-content { overflow: visible; } /* ----------------------------------------------------------------------------- Flex Rules ----------------------------------------------------------------------------- */ .fp-button { border-radius: 4px; background: none; border: 2px solid #2e2d2d; cursor: pointer; padding: 0.5em 0.75em; font-weight: 700; font-size: 14px; color: white; display: inline-block; transition: all 0.3s cubic-bezier(.25, .8, .25, 1); } .fp-button:hover { box-shadow: 0 2px 3px rgba(0, 0, 0, 0.12), 0 1px 5px rgba(0, 0, 0, 0.24); } .fpcontent { width: 100%; display: inline-block; overflow: visible !important; z-index: 1; } .fpbox { background-color: white; box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .12), 0 1px 5px 0 rgba(0, 0, 0, .2); margin: 0px 10px 20px 10px; padding: 2px; border-radius: 4px; } .fpbox .heading { border-bottom: 1px solid rgba(160, 160, 160, .4); margin: 0 0 10px 0; padding: 0 0 5px 0; font-weight: 600; text-align: center; font-size: 22px; } .fpbox .heading .smalllink { font-weight: 500; } .fpbox hr { border: none; border-bottom: 1px solid rgba(160, 160, 160, .4); } .fplinks { margin: -5px; } .fpvideos { margin: 0 auto; overflow: hidden; text-align: center; } .fpvideo { display: inline-block; margin: 0 5px; } .fplinks .linkslabel { background: rgba(0, 0, 0, 0); border-bottom: 2px solid #454545; margin: 15px 5px 5px 5px; padding: 0 0 5px 0; } .fplink { display: inline-block; vertical-align: middle; width: 100%; font-size: 14px; font-weight: 500; } .fplink a { color: black; } .fplink a.external { color: black; } .fplink a.external:visited { color: black; } .fplink a:visited { color: black; } /* Yeah, using display: table makes for a lot of extra markup, but it makes proportionate sizing and vertical centering a lot easier, so going with it */ .fplink .box { border-collapse: separate; border-spacing: 5px; display: table; width: 100%; } .fplink .box .row { display: table-row; } .fplink .box .row .cell { background-color: white; border: 1px solid #1976d2; color: black; border-radius: 4px; display: table-cell; padding: 0 6px; position: relative; text-align: center; vertical-align: middle; } .fplink.wide .box .row .cell { padding: 0 5px; } #fptopsection .fplink.image, #fpflexsection .fplink.image, #fpbottomsection .fplink.image { height: 114px; width: 114px; } .fplink.image .box .row .cell { height: 100px; width: 100px; vertical-align: bottom; } .fplink.image .box .row .cell .image img { height: 100px; width: 100px; } @media (min-width: 470px) { .fplink { width: 50%; } .fplink.wide { width: 100%; } } @media (min-width: 580px) { .fplink { width: 33.333%; } .fplink.wide { width: 66.666%; } } @media (min-width: 690px) { .fplink { width: 25%; } .fplink.wide { width: 50%; } } @media (min-width: 800px) { .fplink { width: 20%; } .fplink.wide { width: 40%; } } @media (min-width: 910px) { .fplink { width: 16.666%; } .fplink.wide { width: 33.333%; } } @media (min-width: 990px) { .fpcontent { padding-right: 520px; width: calc(100% - 530px); } #fptopsection { float: left; width: 100%; } #fpflexsection { float: right; width: 520px; margin-right: -520px; } #fpbottomsection { float: left; width: 100%; margin-top: -5px; } #fptopsection .fplink, #fpbottomsection .fplink { width: 50%; } #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { width: 100%; } #fpflexsection .fplink { width: 25%; } #fpflexsection .fplink.wide { width: 50%; } } @media (min-width: 1100px) { #fptopsection .fplink, #fpbottomsection .fplink { width: 33.333%; } #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { width: 66.666%; } } @media (min-width: 1210px) { #fptopsection .fplink, #fpbottomsection .fplink { width: 25%; } #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { width: 50%; } } @media (min-width: 1320px) { #fptopsection .fplink, #fpbottomsection .fplink { width: 20%; } #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { width: 40%; } } @media (min-width: 1430px) { #fptopsection .fplink, #fpbottomsection .fplink { width: 16.666%; } #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { width: 33.333%; } .fplink a { padding: 3px 5px; color: black; } .fplink a:visited { color: black; } .fplink a.external { color: black; } .fplink a.external:visited { color: black; } } @media (min-width: 1540px) { #fptopsection .fplink, #fpbottomsection .fplink { width: 14.285%; } #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { width: 28.571%; } #fptopsection .fpmaybercol .fpbox, #fpbottomsection .fpmaybercol .fpbox { background-image: none; } .fpmaybelcol { float: left; width: 70.886%; } #fptopsection .fpmaybelcol .fplink, #fpbottomsection .fpmaybelcol .fplink { width: 20%; } #fptopsection .fpmaybelcol .fplink.wide, #fpbottomsection .fpmaybelcol .fplink.wide { width: 40%; } .fpmaybercol { float: right; width: 29.113%; } #fptopsection .fpmaybercol .fplink, #fpbottomsection .fpmaybercol .fplink { width: 50%; } #fptopsection .fpmaybercol .fplink.wide, #fpbottomsection .fpmaybercol .fplink.wide { width: 100%; } } @media (min-width: 1650px) { #fptopsection .fplink, #fpbottomsection .fplink { width: 12.5%; } #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { width: 25%; } } @media (min-width: 1697px) { #fptopsection .fpmaybelcol .fplink, #fpbottomsection .fpmaybelcol .fplink { width: 16.666%; } #fptopsection .fpmaybelcol .fplink.wide, #fpbottomsection .fpmaybelcol .fplink.wide { width: 33.333%; } } @media (min-width: 1760px) { #fptopsection .fplink, #fpbottomsection .fplink { width: 11.111%; } #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { width: 22.222%; } } @media (min-width: 1850px) { #fptopsection .fpmaybelcol .fplink, #fpbottomsection .fpmaybelcol .fplink { width: 14.285%; } #fptopsection .fpmaybelcol .fplink.wide, #fpbottomsection .fpmaybelcol .fplink.wide { width: 28.571%; } } @media (min-width: 1870px) { #fptopsection .fplink, #fpbottomsection .fplink { width: 10%; } #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { width: 20%; } #fptopsection .fplink.image, #fpbottomsection .fplink.image { width: 134px; height: 134px; } #fptopsection .fplink.image .box .row .cell, #fpbottomsection .fplink.image .box .row .cell { width: 120px; height: 120px; } #fptopsection .fplink.image .box .row .cell .image img, #fpbottomsection .fplink.image .box .row .cell .image img { width: 120px; height: 120px; } } @media (min-width: 1918px) { #fptopsection .fpmaybercol .fplink, #fpbottomsection .fpmaybercol .fplink { width: 33.333%; } #fptopsection .fpmaybercol .fplink.wide, #fpbottomsection .fpmaybercol .fplink.wide { width: 66.666%; } } @media (min-width: 1980px) { #fptopsection .fplink, #fpbottomsection .fplink { width: 9.09%; } #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { width: 18.181%; } } @media (min-width: 2006px) { #fptopsection .fpmaybelcol .fplink, #fpbottomsection .fpmaybelcol .fplink { width: 12.5%; } #fptopsection .fpmaybelcol .fplink.wide, #fpbottomsection .fpmaybelcol .fplink.wide { width: 25%; } } @media (min-width: 2090px) { #fptopsection .fplink, #fpbottomsection .fplink { width: 8.33%; } #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { width: 16.666%; } } @media (min-width: 2161px) { #fptopsection .fpmaybelcol .fplink, #fpbottomsection .fpmaybelcol .fplink { width: 11.111%; } #fptopsection .fpmaybelcol .fplink.wide, #fpbottomsection .fpmaybelcol .fplink.wide { width: 22.222%; } } @media (min-width: 2200px) { #fptopsection .fplink, #fpbottomsection .fplink { width: 7.692%; } #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { width: 15.384%; } } @media (min-width: 2296px) { #fptopsection .fpmaybercol .fplink, #fpbottomsection .fpmaybercol .fplink { width: 25%; } #fptopsection .fpmaybercol .fplink.wide, #fpbottomsection .fpmaybercol .fplink.wide { width: 50%; } } @media (min-width: 2310px) { #fptopsection .fplink, #fpbottomsection .fplink { width: 7.142%; } #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { width: 14.285%; } } @media (min-width: 2316px) { #fptopsection .fpmaybelcol .fplink, #fpbottomsection .fpmaybelcol .fplink { width: 10%; } #fptopsection .fpmaybelcol .fplink.wide, #fpbottomsection .fpmaybelcol .fplink.wide { width: 20%; } } @media (min-width: 2420px) { #fptopsection .fplink, #fpbottomsection .fplink { width: 6.666%; } #fptopsection .fplink.wide, #fpbottomsection .fplink.wide { width: 13.333%; } .fplink a { padding: 5px 5px; } #fptopsection .fplink.image, #fpbottomsection .fplink.image { width: 164px; height: 164px; } #fptopsection .fplink.image .box .row .cell, #fpbottomsection .fplink.image .box .row .cell { width: 150px; height: 150px; } #fptopsection .fplink.image .box .row .cell .image img, #fpbottomsection .fplink.image .box .row .cell .image img { width: 150px; height: 150px; } } .fplink.image .image { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1; } .fplink.image a { z-index: 2; } .fplink a { display: block; position: relative; top: 0; right: 0; bottom: 0; left: 0; padding: 1px 5px; } .fplink.image .image a { padding: 0; } .fplink.image .link a { background: #f5f5f5; border-top: 2px solid #454545; } .fplink.wide a { margin: 0 -5px; } /* ----------------------------------------------------------------------------- ColumnList Specific Rules ----------------------------------------------------------------------------- */ .columns2 { -webkit-columns: 16em 2; -moz-columns: 16em 2; columns: 16em 2; } /* ----------------------------------------------------------------------------- MoveData Specific Rules ----------------------------------------------------------------------------- */ div.movedata { border-radius: 4px; border: none; background-color: white; box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .12), 0 1px 5px 0 rgba(0, 0, 0, .2); border-collapse: collapse; margin: 0em; } div.movedata>table.movedata { width: 100%; text-align: center; margin: 0.2em 0; } div.movedata>p { padding-left: 0.5em; padding-right: 0.5em; padding-bottom: 0.5em; } div.movedata>dl { padding-left: 0.5em; padding-right: 0.5em; } div.movedata>.thumb>.thumbinner>.image>.thumbimage { background-color: #f8f9fa; } /* ------------------------- Flex Attack Data styling ------------------------- */ @media (min-width: 990px) { .attack-container { /* margin-right: 220px; */ width: auto; } .attack-gallery { float: left; width: 220px; } .attack-info { margin-left: 220px; margin-top: 0; } } span.input-badge { border: 1px solid #2e2d2d; border-radius: 4px; padding: 1px .35em; background-color: white; } .attack-container { width: 100%; display: inline-block; overflow: visible !important; z-index: 1; border-radius: 4px; border: none; background-color: white; box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .12), 0 1px 5px 0 rgba(0, 0, 0, .2); border-collapse: collapse; } div.attack-gallery ul.gallery { margin: 0; } div.attack-gallery * .gallerytext p { margin: 0; text-align: center; } div.attack-data { border: none; background-color: white; border-collapse: collapse; margin-top: 0; overflow: auto; } div.attack-info>table.attack-data { width: 100%; text-align: center; margin-top: 0; margin-left: 0; margin-bottom: 0.2em; } div.attack-info>p { padding-left: 0.5em; padding-right: 0.5em; padding-bottom: 0.5em; } div.attack-info>dl { padding-left: 0.5em; padding-right: 0.5em; } .attack-info h4 { padding: 0; margin: 0; } /* ----------------------------------------------------------------------------- Character Link Button styling ----------------------------------------------------------------------------- */ .char-btn { background-color: #e85a5a; color: white; border-radius: 4px; text-align: center; text-decoration: none; display: inline-block; padding: 4px 8px 4px; margin: 5px; min-width: 90px; } /* Remove external link icon from external links and adjust their padding Replace this styling with a more localized solution in the future */ a .external .text { background-image: none; padding-right: 0px; } .addShadow { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); } /* ----------------------------------------------------------------------------- Cargo Based Move Boxes Styling ----------------------------------------------------------------------------- */ .grid-container { display: grid; grid-template-columns: 210px auto; grid-template-rows: auto auto; gap: 0px 0px; grid-template-areas: "name data" "gallery description"; } .move-box { box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .12), 0 1px 5px 0 rgba(0, 0, 0, .2); border-radius: 4px; background-color: white; } .name { display: grid; grid-template-columns: auto; grid-template-rows: auto; height: 1em; gap: 0px 0px; grid-template-areas: "."; grid-area: name; text-align: center; } #moveName { font-weight: bold; font-size: 20px; line-height: 1.1em; } .gallery { grid-area: gallery; align-content: center; text-align: center; overflow: hidden; } .description { grid-area: description; padding: 0.25em 1em; } .data { display: grid; grid-template-columns: repeat(8, 1fr); grid-template-rows: repeat(2, 1fr); gap: 0px 0px; grid-template-areas: ". . . . . . . ." ". . . . . . . ."; grid-area: data; text-align: center; border-bottom: 1px solid grey; } .data-cell { font-size: 20px; } #startup { color: #4caf50; } #active { color: #f44336; } #recovery { color: #2196f3; } /* Movelist Toggles */ .movelist-toggles { display: flex; } .movelist-toggle-button { user-select: none; flex-flow: row wrap; padding: 2px 10px; margin: 0 3px; border-radius: 3px; border: 1px solid black; } .movelist-toggle-off { background-color: #aaa; } .movelist-toggle-on { background-color: #eee; }