No edit summary Tag: Reverted |
m (Text replacement - "radius: 15px" to "radius: 8px") |
||
(428 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
/* All CSS here will be loaded for users of the Timeless skin */ | /* All CSS here will be loaded for users of the Timeless skin */ | ||
/* Fonts */ | |||
@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap"); | @import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap"); | ||
@import url("https://fonts.googleapis.com/css?family=VT323&display=swap"); | @import url("https://fonts.googleapis.com/css?family=VT323&display=swap"); | ||
@import url( | @import url('https://fonts.googleapis.com/css2?family=Reddit+Mono:wght@200..900&display=swap'); | ||
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap'); | |||
/*Variables*/ | |||
:root { | |||
--tmw-pink: hsl(337,99%,50%); | |||
--tmw-purple: rgb(192 14 171 / 75%); | |||
--tmw-blue: hsl(194, 100%, 50%); | |||
--tmw-white: #e8eaed; | |||
--tmw-bg-gradient: radial-gradient(hsl(205, 88%, 12%), black 200%); | |||
--tmw-bg-gradient-dark: radial-gradient(hsl(208, 100%, 12%), black 100%); | |||
--tmw-after-gradient: repeating-linear-gradient(0deg, rgba(0, 128, 255, 0), rgba(0, 128, 255, 0.1) 4px, | |||
rgba(0, 128, 255, 0.1) 4px, rgba(0, 128, 255, 0) 7px); | |||
--tmw-table-gradient: radial-gradient(hsl(205, 100%, 6%), black 200%); | |||
--tmw-blue-shadow: 0 0 5px var(--tmw-blue), | |||
inset 0 0 5px var(--tmw-blue); | |||
--tmw-pink-shadow: 0 0 14px var(--tmw-purple), | |||
inset 0 0 14px var(--tmw-pink); | |||
--tmw-blue-border: 1px solid var(--tmw-blue); | |||
--tmw-pink-border: 1px solid var(--tmw-pink); | |||
--tmw-pink-border-figure: 2px solid var(--tmw-pink); | |||
--tmw-default-radius: 8px; | |||
--cover-size: 15rem; | |||
} | } | ||
/*Generic style templates*/ | |||
.tmw-pink-box { | |||
border: var(--tmw-pink-border); | |||
border-radius: var(--tmw-default-radius); | |||
background: var(--tmw-bg-gradient-dark); | |||
box-shadow: var(--tmw-pink-shadow); | |||
padding: 1em; | |||
} | } | ||
.tmw-blue-box { | |||
border: var(--tmw-blue-border); | |||
border-radius: var(--tmw-default-radius); | |||
background: var(--tmw-bg-gradient-dark); | |||
box-shadow: var(--tmw-blue-shadow); | |||
padding: 1em; | |||
} | } | ||
/* Scrollbar/selection pseudoelement modifications */ | |||
::selection { | ::selection { | ||
background: | background: var(--tmw-pink); | ||
} | } | ||
::-webkit-scrollbar { | ::-webkit-scrollbar { | ||
Line 35: | Line 53: | ||
} | } | ||
::-webkit-scrollbar-thumb { | ::-webkit-scrollbar-thumb { | ||
background-color: | background-color: var(--tmw-pink); | ||
border-radius: | border-radius: var(--tmw-default-radius); | ||
border: 1px solid transparent; | border: 1px solid transparent; | ||
background-clip: content-box; | background-clip: content-box; | ||
Line 43: | Line 61: | ||
margin: 10px; | margin: 10px; | ||
} | } | ||
:: | .mw-mmv-lightbox-open::-webkit-scrollbar { | ||
background: | background: inherit; | ||
} | } | ||
/* | |||
/*General body/interface modifications*/ | |||
html { | |||
background: var(--tmw-bg-gradient-dark); | |||
} | } | ||
#mw-header-container { | |||
background: inherit; | |||
position: relative; | |||
} | } | ||
#mw-header-hack { | |||
display: none; | |||
} | } | ||
#mw-content-container { | |||
background: inherit; | |||
border-bottom: none !important; | |||
margin-top: inherit; | |||
} | } | ||
#mw- | #mw-content { | ||
background: var(--tmw-bg-gradient); | |||
border: var(--tmw-blue-border); | |||
border-radius: var(--tmw-default-radius); | |||
box-shadow: var(--tmw-blue-shadow); | |||
anchor-name: --menu; | |||
} | } | ||
# | #mw-header-nav-hack { | ||
display: none; | display: none; | ||
} | } | ||
# | #personal-inner { | ||
position: fixed; | |||
anchor-default: --menu; | |||
} | } | ||
body { | |||
background: var(--tmw-bg-gradient-dark); | |||
/*font: 0.8125rem/1.25rem monospace;*/ | |||
font-family: "Roboto Mono", monospace; | |||
font-optical-sizing: auto; | |||
font-style: normal; | |||
line-height: 1.25rem; | |||
font-size: 0.75rem; | |||
text-shadow: 0 0 5px var(--tmw-pink); | |||
color: var(--tmw-white) !important; | |||
} | } | ||
body::after { | |||
content: ""; | |||
position: fixed; | |||
top: 0; | |||
left: 0; | |||
margin: 0; | |||
width: 100vw; | |||
height: 100vh; | |||
background: var(--tmw-after-gradient); | |||
pointer-events: none; | |||
} | } | ||
.mw-body { | |||
word-wrap: unset; | |||
} | } | ||
#bodyContentOuter { | |||
z-index: unset; | |||
} | } | ||
p, li, dd { | |||
text-wrap: pretty; | |||
} | } | ||
/* | |||
/* | .mw-body p { | ||
. | text-align: justify; | ||
text-align-last: left; | |||
white-space: pre-line; | |||
} | } | ||
*/ | |||
.poem p { | |||
letter-spacing: -1px; | |||
} | } | ||
p:empty { | |||
display: none; | |||
} | } | ||
/*Buttons styling*/ | |||
.oo-ui-buttonElement-button { | |||
border: 0 !important; | |||
box-shadow: none !important; | |||
background: inherit !important; | |||
color: var(--tmw-pink) !important; | |||
} | } | ||
: | .oo-ui-buttonElement-button:hover { | ||
color: var(--tmw-blue) !important; | |||
} | } | ||
/* | /*Source editor*/ | ||
. | .editOptions { | ||
background: inherit !important; | |||
background | |||
border: 0 !important; | border: 0 !important; | ||
color: | color: inherit; | ||
} | } | ||
.oo-ui-messageDialog-message { | .oo-ui-messageDialog-message { | ||
color: inherit; | color: inherit; | ||
} | } | ||
.oo-ui-messageDialog-title { | |||
color: inherit; | |||
} | } | ||
.oo-ui-messageDialog-content > .oo-ui-window-foot { | |||
outline: var(--tmw-blue-border); | |||
} | } | ||
. | .oo-ui-messageDialog-actions-horizontal .oo-ui-actionWidget { | ||
border-right: var(--tmw-blue-border); | |||
} | } | ||
*/ | /*Popup windows*/ | ||
.oo-ui-window-frame { | |||
background: var(--tmw-bg-gradient) !important; | |||
border-radius: | border-radius: var(--tmw-default-radius) !important; | ||
border: var(--tmw-blue-border) !important; | |||
box-shadow: var(--tmw-blue-shadow) !important; | |||
} | } | ||
.oo-ui-window-frame::after { | |||
content: ""; | content: ""; | ||
position: absolute; | position: absolute; | ||
Line 214: | Line 182: | ||
width: 100%; | width: 100%; | ||
height: 100%; | height: 100%; | ||
background: | background: var(--tmw-after-gradient); | ||
pointer-events: none; | pointer-events: none; | ||
} | } | ||
.oo-ui-icon-close, .mw-ui-icon-close:before { | |||
background-image: url(/images/e/ee/Pink-x.svg); | |||
} | |||
.oo-ui-processDialog-content .oo-ui-window-head, .oo-ui-processDialog-content .oo-ui-window-foot { | |||
outline: none; | |||
} | |||
.oo-ui-processDialog-content .oo-ui-window-head { | |||
border-bottom: var(--tmw-blue-border); | |||
} | |||
.ve-ui-mwTwoPaneTransclusionDialogLayout > .oo-ui-menuLayout-menu { | |||
border-right: var(--tmw-blue-border); | |||
} | |||
.ve-ui-mwTemplatePage-description { | |||
color: var(--tmw-white); | |||
} | |||
.ve-ui-mwTransclusionOutlineTemplateWidget-sticky { | |||
background: inherit; | |||
position: relative; | |||
} | } | ||
.ve-ui-overlay { | |||
font-family: inherit; | |||
} | } | ||
. | .ve-ui-expandableContent-collapsible { | ||
height: unset !important; | |||
} | } | ||
.ve-ui-expandableContent-container { | |||
display: none; | |||
} | |||
.ve-ui-mwParameterPage-doc-required, .ve-ui-mwParameterPage-doc-deprecated, .ve-ui-mwParameterPage-inlineDescription .ve-ui-mwParameterPage-doc-example { | |||
color: inherit; | |||
} | |||
.ve-ui-mwSaveDialog-license { | |||
color: inherit; | |||
} | |||
.ve-ui-mwSaveDialog-options { | |||
background: inherit; | |||
border: 0; | |||
} | |||
/*Messages (such as notices on file upload page)*/ | |||
.oo-ui-messageWidget.oo-ui-messageWidget-block { | |||
background: inherit !important; | |||
border: 0; | |||
} | } | ||
. | /*Drop files here target on file upload*/ | ||
.oo-ui-selectFileWidget-dropTarget { | |||
background: var(--tmw-bg-gradient-dark); | |||
border: var(--tmw-pink-border); | |||
box-shadow: var(--tmw-pink-shadow); | |||
border-radius: var(--tmw-default-radius); | |||
} | } | ||
. | /*Initial prompt on file upload*/ | ||
.oo-ui-selectFileWidget.oo-ui-widget-enabled.oo-ui-selectFileWidget-dropTarget { | |||
background: var(--tmw-bg-gradient-dark); | |||
border: var(--tmw-pink-border) !important; | |||
box-shadow: var(--tmw-pink-shadow); | |||
border-radius: var(--tmw-default-radius); | |||
} | } | ||
/*Thumbnails on copyright attribution page*/ | |||
#mwe-upwiz-deeds-thumbnails { | |||
background: inherit; | |||
} | } | ||
. | .mwe-upwiz-file.odd .mwe-upwiz-visible-file { | ||
background: inherit; | |||
} | |||
/*Search options for Find and Replace*/ | |||
.ext-replacetext-searchoptions { | |||
background: inherit; | |||
} | } | ||
/*Screen effect*/ | |||
@media (min-width: 1100px) { | |||
#mw-content { | |||
height: calc(100vh - 145px); | |||
overflow-y: auto; | |||
} | |||
} | } | ||
@media (850px < width < 1100px) { | |||
#mw-content { | |||
height: calc(100vh - 130px); | |||
overflow-y: auto; | |||
} | |||
} | } | ||
@media (max-width: 850px) { | |||
content: | #mw-content-block { | ||
background: inherit; | |||
} | |||
#bodyContent { | |||
padding: 0 1em; | |||
} | |||
#content-bottom-stuff { | |||
display: none; | |||
} | |||
#mw-content { | |||
height: calc(100dvh - 96px); | |||
overflow-y: auto; | |||
} | |||
} | |||
/*Fix visual editor toolbar with screen effect*/ | |||
.ve-init-mw-desktopArticleTarget { | |||
container-type: inline-size; | |||
} | |||
.ve-init-mw-desktopArticleTarget-toolbar { | |||
position: sticky; | |||
width: 100cqw; | |||
top: 1cqh; | |||
z-index: 2; | |||
} | } | ||
/*Remove Atom RSS link on history pages*/ | |||
#feedlinks { | |||
display: none; | display: none; | ||
} | } | ||
/*Footer/category list modifications*/ | |||
/* Remove footer */ | |||
#mw-footer-container { | |||
display: none; | |||
} | } | ||
/*Always show categories as links below article, never on sidebar*/ | |||
#catlinks { | |||
display: block !important; | |||
} | } | ||
#catlinks-sidebar { | |||
display: none; | |||
} | } | ||
/*Link styling*/ | |||
color: | a { | ||
color: var(--tmw-blue); | |||
} | } | ||
a:hover { | |||
color: var(--tmw-blue) !important; | |||
} | } | ||
a:visited { | |||
color: var(--tmw-blue); | |||
} | } | ||
. | a.external { | ||
word-wrap: break-word; | |||
} | |||
/*Links at top of page - Page, discussion, edit, edit source, history*/ | |||
.tools-inline li.selected a { | |||
color: var(--tmw-blue); | |||
} | } | ||
. | .tools-inline li.selected { | ||
border-bottom: none; | |||
border-bottom | |||
} | } | ||
. | .tools-inline li { | ||
border-bottom: none; | |||
} | } | ||
/*Settings gear icon*/ | |||
.oo-ui-icon-settings, | .oo-ui-icon-settings, | ||
.mw-ui-icon-settings:before { | .mw-ui-icon-settings:before { | ||
background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='% | background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fd184e' d='M20 14.5v-2.9l-1.8-.3c-.1-.4-.3-.8-.6-1.4l1.1-1.5-2.1-2.1-1.5 1.1c-.5-.3-1-.5-1.4-.6L13.5 5h-2.9l-.3 1.8c-.5.1-.9.3-1.4.6L7.4 6.3 5.3 8.4l1 1.5c-.3.5-.4.9-.6 1.4l-1.7.2v2.9l1.8.3c.1.5.3.9.6 1.4l-1 1.5 2.1 2.1 1.5-1c.4.2.9.4 1.4.6l.3 1.8h3l.3-1.8c.5-.1.9-.3 1.4-.6l1.5 1.1 2.1-2.1-1.1-1.5c.3-.5.5-1 .6-1.4l1.5-.3zM12 16c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3z'/%3E%3C/svg%3E") !important; | ||
} | } | ||
.mw-collapsible-toggle-default .mw-collapsible-text, .mw-collapsible-toggle-default:active .mw-collapsible-text { | |||
. | color: var(--tmw-blue); | ||
} | } | ||
. | .mw-collapsible-toggle-default::before, .mw-collapsible-toggle-default::after { | ||
color: var(--tmw-white); | |||
} | } | ||
/*Sidebar/Navigation modifications*/ | |||
} | /*One-sided navigation menu*/ | ||
@media (min-width: 1100px) { | |||
#mw-content-block { | |||
} | display: block; | ||
} | |||
#mw-content, | |||
} | #content-bottom-stuff { | ||
margin-left: 14em; | |||
margin-right: 1em; | |||
} | } | ||
#mw-content { | |||
margin-top: 1em; | |||
} | |||
} | #mw-content-wrapper { | ||
float: right; | |||
margin-left: -14em; | |||
} | width: 100%; | ||
} | |||
#mw-related-navigation { | |||
width: 14em; | |||
} | padding: 0 1em 0 0; | ||
} | |||
/*fixed sidebar*/ | |||
} | #p-banner { | ||
display: none !important; | |||
} | |||
} | #mw-header-container { | ||
z-index: 2; | |||
} | |||
. | #mw-site-navigation { | ||
position: fixed; | |||
top: 0; | |||
z-index: 3; | |||
} | |||
#mw-site-navigation .sidebar-chunk { | |||
margin: 0; | |||
} | |||
#mw-related-navigation { | |||
position: fixed; | |||
top: 29em; | |||
z-index: 3; | |||
} | |||
#site-tools { | |||
margin-top: -25px !important; | |||
} | |||
#page-tools { | |||
margin: 0 !important; | |||
} | |||
#p-templatescript-0-label { | |||
display: none !important; | |||
} | |||
#p-templatescript-0 .mw-portlet-body { | |||
position: fixed; | |||
top: 20.5rem; | |||
} | |||
} | } | ||
. | @media screen and (max-width: 1099px) { | ||
.sidebar-inner { | |||
background: var(--tmw-bg-gradient) !important; | |||
border: var(--tmw-blue-border) !important; | |||
border-radius: var(--tmw-default-radius) !important; | |||
box-shadow: var(--tmw-blue-shadow) !important; | |||
} | |||
.sidebar-inner::after { | |||
content: "" !important; | |||
position: inherit !important; | |||
top: 0 !important; | |||
left: 0 !important; | |||
margin: 0 !important; | |||
width: 100% !important; | |||
height: 100% !important; | |||
background: var(--tmw-after-gradient) !important; | |||
pointer-events: none !important; | |||
border-bottom: none !important; | |||
border-left: none !important; | |||
border-right: none !important; | |||
} | |||
.sidebar-inner::before { | |||
content: none !important; | |||
} | |||
#mw-site-navigation .sidebar-chunk h2 span:before, | |||
#mw-site-navigation .sidebar-chunk h2 span:after { | |||
content: none !important; | |||
} | |||
#p-banner { | |||
position: relative; | |||
} | |||
} | } | ||
@media (850px < width < 1100px) { | |||
#p-banner { | |||
left: -0.8em; | |||
} | |||
#mw-content-container { | |||
margin-top: -2.7em; | |||
} | |||
.sidebar-inner { | |||
top: 2.5em !important; | |||
} | |||
#content-bottom-stuff { | |||
display: none; | |||
} | |||
} | } | ||
@media screen and (max-width: 850px) { | |||
#user-tools h2, | |||
} | .sidebar-chunk h2 { | ||
top: 0.5em; | |||
} | |||
} | #site-navigation h2 { | ||
right: 3em; | |||
left: initial; | |||
background-size: 85%; | |||
} | |||
#site-tools { | |||
display: none; | |||
} | |||
#p-logo-text { | |||
left: initial; | |||
} | |||
#site-navigation .sidebar-inner { | |||
right: 0; | |||
left: initial; | |||
} | |||
} | |||
#t-cite { | |||
display: none; | |||
} | |||
#p-pagemisc { | |||
display: none; | |||
} | |||
#p-Quick_links span { | |||
white-space: nowrap; | |||
} | } | ||
. | .sidebar-chunk { | ||
background: inherit !important; | |||
border: 0 !important; | |||
box-shadow: none !important; | |||
} | } | ||
#mw-site-navigation h3, #mw-related-navigation h3 { | |||
text-shadow: 2px 0 var(--tmw-purple); | |||
} | } | ||
. | .sidebar-chunk h3 { | ||
content: ""; | font-size: 0.9em !important; | ||
position: | border-bottom: var(--tmw-blue-border) !important; | ||
top: 0; | } | ||
left: 0; | |||
/*Logo top left modifications*/ | |||
/*Make entire header logo linkable*/ | |||
#p-logo-text { | |||
max-width: 18em !important; | |||
} | |||
#p-logo img, #p-banner img { | |||
filter: drop-shadow(0px 3px 1px var(--tmw-purple)); | |||
} | |||
/* Search modifications*/ | |||
#simpleSearch { | |||
border: var(--tmw-blue-border); | |||
border-radius: var(--tmw-default-radius); | |||
box-shadow: var(--tmw-blue-shadow); | |||
background: var(--tmw-bg-gradient); | |||
} | |||
#simpleSearch::after { | |||
content: ""; | |||
position: absolute; | |||
top: 0; | |||
left: 0; | |||
margin: 0; | margin: 0; | ||
width: 100%; | width: 100%; | ||
height: 100%; | height: 100%; | ||
background: | background: var(--tmw-after-gradient); | ||
pointer-events: none; | pointer-events: none; | ||
} | } | ||
#searchInput { | |||
color: var(--tmw-white); | |||
border-radius: var(--tmw-default-radius); | |||
} | |||
::placeholder { | |||
color: var(--tmw-white); | |||
} | } | ||
. | .suggestions { | ||
border-radius: var(--tmw-default-radius); | |||
border: var(--tmw-blue-border); | |||
box-shadow: var(--tmw-blue-shadow); | |||
border: | } | ||
@media (min-width: 1100px) { | |||
.suggestions { | |||
margin-top: 12px; | |||
} | |||
} | } | ||
. | .suggestions:after { | ||
content: ""; | |||
position: absolute; | |||
top: 0; | |||
left: 0; | |||
margin: 0; | |||
width: 100%; | |||
height: 100%; | |||
background: var(--tmw-after-gradient); | |||
pointer-events: none; | |||
} | } | ||
. | .suggestions-results { | ||
background-image: var(--tmw-bg-gradient); | |||
border | border: 0; | ||
} | } | ||
#searchInput:focus { | |||
outline: none; | |||
border: 3px solid var(--tmw-pink); | |||
border-radius: var(--tmw-default-radius); | |||
box-shadow: var(--tmw-pink-shadow); | |||
} | |||
.suggestions .suggestions-result { | |||
color: var(--tmw-white); | |||
} | } | ||
. | .suggestions .suggestions-results { | ||
border: 0; | |||
. | |||
border: | |||
} | } | ||
. | .suggestions-special { | ||
background-image: var(--tmw-bg-gradient); | |||
border-left: 0 !important; | |||
border-right: 0 !important; | |||
border-bottom: 0 !important; | |||
border-top: var(--tmw-blue-border) !important; | |||
box-shadow: var(--tmw-blue-shadow); | |||
border: | |||
} | } | ||
.suggestions-special .special-label, | |||
. | .suggestions-special .special-query { | ||
color: var(--tmw-white); | |||
} | } | ||
.suggestions .suggestions-result-current { | |||
. | background-image: var(--tmw-bg-gradient-dark); | ||
} | } | ||
#searchButton, #mw-searchButton { | |||
background-size: 25px; | |||
} | } | ||
. | /*Search page search bar*/ | ||
border- | .mw-search-form-wrapper input { | ||
border: var(--tmw-blue-border) !important; | |||
border-radius: var(--tmw-default-radius) !important; | |||
box-shadow: var(--tmw-blue-shadow) !important; | |||
background: var(--tmw-bg-gradient) !important; | |||
color: var(--tmw-white) !important; | |||
} | } | ||
.mw-search-form-wrapper input::after { | |||
. | content: ""; | ||
margin- | position: absolute; | ||
top: 0; | |||
left: 0; | |||
margin: 0; | |||
width: 100%; | |||
height: 100%; | |||
background: var(--tmw-after-gradient); | |||
pointer-events: none; | |||
} | } | ||
. | .search-types .current a { | ||
color: var(--tmw-pink); | |||
} | } | ||
. | .oo-ui-icon-search, .mw-ui-icon-search:before { | ||
background-image: url(/skins/Timeless/resources/images/search-ltr.svg?bb2cf); | |||
} | } | ||
. | .oo-ui-icon-search { | ||
opacity: 1 !important; | |||
} | } | ||
#mw-indicator-mw-helplink a { | |||
background-image: url(/images/c/cc/HelpNotice.svg); | |||
} | } | ||
. | .oo-ui-indicator-clear { | ||
background-image: url(/images/1/10/Clear.svg); | |||
} | } | ||
. | .oo-ui-actionFieldLayout .oo-ui-actionFieldLayout-button .oo-ui-buttonElement-framed > .oo-ui-buttonElement-button { | ||
margin-left: 1em; | |||
} | } | ||
*/ | |||
/*Username dropdown modifications*/ | |||
background- | #personal .dropdown, | ||
.mw-mmv-dialog { | |||
background: var(--tmw-bg-gradient); | |||
border: var(--tmw-blue-border); | |||
) | border-radius: var(--tmw-default-radius); | ||
box-shadow: var(--tmw-blue-shadow); | |||
} | } | ||
#personal .dropdown::after { | |||
background- | content: ""; | ||
position: inherit; | |||
top: 0; | |||
left: 0; | |||
margin: 0; | |||
width: 100%; | |||
height: 100%; | |||
background: var(--tmw-after-gradient); | |||
pointer-events: none; | |||
border-bottom: none; | |||
border-left: none; | |||
border-right: none; | |||
} | } | ||
. | #personal .dropdown::before { | ||
content: ""; | |||
border-bottom: none; | |||
border-left: none; | |||
border-right: none; | |||
border: | |||
} | } | ||
#personal h2 { | |||
background-size: 25px; | |||
} | } | ||
. | @media screen and (min-width: 1100px) { | ||
#personal-inner { | |||
margin-top: 12px !important; | |||
right: -0.6em !important; | |||
} | |||
#user-tools { | |||
min-width: 16em; | |||
} | |||
} | } | ||
@media screen and (min-width: 851px) { | |||
#personal { | |||
bottom: 0.5em; | |||
} | |||
#mw-header-container { | |||
padding: 1em 0 0; | |||
} | |||
} | } | ||
.mw- | /*Template doc pages*/ | ||
.mw-parser-output .template-documentation { | |||
background: inherit !important; | |||
border: 0 !important; | |||
} | } | ||
.mw-parser-output .ombox { | |||
background: inherit !important; | |||
} | } | ||
/*Images/Captions modifications*/ | |||
.thumbcaption { | |||
font-weight: bold; | |||
text-wrap: balance; | |||
text-align: center !important; | |||
} | } | ||
.thumbinner > a { | |||
display: flex; | |||
justify-content: center; | |||
} | } | ||
. | .figure > a { | ||
display: | display: flex; | ||
justify-content: center; | |||
} | } | ||
. | .thumbimage { | ||
color: | border: var(--tmw-pink-border) !important; | ||
border-radius: var(--tmw-default-radius); | |||
box-shadow: var(--tmw-pink-shadow); | |||
padding: 1px; | |||
} | |||
figcaption { | |||
font-weight: bold !important; | |||
text-wrap: balance; | |||
text-align: center !important; | |||
border: 0 !important; | |||
border-top: 0 !important; | |||
border-width: 0 !important; | |||
box-shadow: none !important; | |||
background-color: revert !important; | |||
padding: 0.75em !important; | |||
} | |||
figure { | |||
border: 0 !important; | |||
background-color: revert !important; | |||
border-collapse: separate !important; | |||
} | } | ||
.mw- | figure[typeof~='mw:File/Thumb'] > :not(figcaption) .mw-file-element, | ||
.mw- | figure[typeof~='mw:File/Frame'] > :not(figcaption) .mw-file-element { | ||
margin: 0 !important; | |||
border: var(--tmw-pink-border-figure) !important; | |||
border-radius: var(--tmw-default-radius); | |||
box-shadow: var(--tmw-pink-shadow); | |||
} | } | ||
.mw- | .mw-content-ltr figure[typeof~='mw:File/Thumb'] > .mw-file-description::after, | ||
.mw- | .mw-content-ltr figure[typeof~='mw:File/Thumb'] > .mw-file-magnify::after { | ||
display: none; | |||
} | } | ||
.mw- | .mw-content-ltr figure[typeof~='mw:File/Thumb'] > figcaption::before { | ||
display: none; | |||
} | } | ||
. | .borderless-img-with-caption .thumbimage { | ||
. | border: 0 !important; | ||
box-shadow: none; | |||
} | } | ||
.thumbinner { | |||
position: relative; | |||
background- | z-index: 95; | ||
background: none; | |||
border: 0; | |||
border-width: 0; | |||
} | } | ||
. | .mw-content-ltr .magnify { | ||
display: none; | |||
} | } | ||
@media screen and (max-width: 850px) { | |||
.thumbinner { | |||
max-width: 325px; | |||
} | |||
} | .thumb { | ||
margin: initial; | |||
} | |||
figure[typeof~='mw:File/Thumb'] > :not(figcaption) .mw-file-element, figure[typeof~='mw:File/Frame'] > :not(figcaption) .mw-file-element { | |||
margin: 0 auto !important; | |||
} | |||
} | } | ||
/*File pages modifications*/ | |||
kbd { | |||
background: transparent !important; | |||
font-family: inherit !important; | |||
} | } | ||
ul#filetoc { | |||
background: transparent; | |||
border: none; | |||
padding: 0; | |||
display: inline; | |||
} | } | ||
.imbox-license { | |||
border: 0 !important; | |||
background-color: transparent !important; | |||
} | } | ||
. | .cp-wrapper { | ||
border: var(--tmw-pink-border); | |||
border-radius: var(--tmw-default-radius); | |||
padding: 1em; | |||
box-shadow: var(--tmw-pink-shadow); | |||
background-image: var(--tmw-bg-gradient-dark); | |||
} | } | ||
. | .filehistory td[dir="ltr"] { | ||
overflow-wrap: anywhere; | |||
} | } | ||
/*Infobox modifications*/ | |||
.infobox { | |||
box-shadow: var(--tmw-pink-shadow); | |||
border: var(--tmw-pink-border); | |||
border-spacing: 3px; | |||
background-image: var(--tmw-bg-gradient-dark); | |||
border-radius: var(--tmw-default-radius); | |||
margin: 0.5em 0 0.5em 1.5em; | |||
padding: 0.5em; | |||
float: right; | |||
clear: both; | |||
font-size: 88%; | |||
width: 19rem !important; | |||
/*width: min-content;*/ | |||
line-height: 1.5em; | |||
& th { | |||
background: initial !important; | |||
} | |||
& .nowrap { | |||
white-space: nowrap; | |||
padding-right: 10px; | |||
} | |||
& :is(.infobox-above, .infobox-title, caption) { | |||
font-size: 125%; | |||
font-weight: bold; | |||
text-align: center; | |||
text-wrap: balance; | |||
} | |||
& :is(.infobox-header,.infobox-subheader, .infobox-image, .infobox-full-data, .infobox-below) { | |||
text-align: center; | |||
} | |||
& :is(#youtube-outer, .video-outer) { | |||
width: 300px !important; | |||
height: 273px !important; | |||
} | |||
& .infobox-navbar { | |||
text-align: right; | |||
} | |||
& .mw-collapsible-toggle { | |||
float: none; | |||
} | |||
& tbody { | |||
position: relative; | |||
z-index: 1; | |||
} | |||
} | |||
@media (width <= 850px) { | |||
.infobox { | |||
float: none; | |||
margin: 0 auto !important; | |||
} | |||
} | } | ||
. | .infobox-header, .infobox-label, .infobox-above, .infobox-full-data, .infobox-data, .infobox-below, .infobox-subheader, .infobox-image, .infobox-navbar, .infobox th, .infobox td { | ||
vertical-align: top; | |||
} | } | ||
.infobox-label, .infobox-data, .infobox th, .infobox td { | |||
text-align: left; | |||
} | } | ||
. | .infobox-below { | ||
text-align: left !important; | |||
} | } | ||
. | .infobox-title, .infobox caption { | ||
padding: 0.2em; | |||
} | } | ||
.hidden-content.mw-collapsible-content p { | |||
.mw-content | |||
display: none; | display: none; | ||
} | } | ||
.infobox-caption { | |||
text-wrap: balance; | |||
} | } | ||
a | .mw-body-content table .infobox-image a > img { | ||
max-width: 100% !important; | |||
} | } | ||
/*Navbox modifications - used at the bottom of content pages*/ | |||
.navbox-inner { | |||
box-shadow: var(--tmw-pink-shadow); | |||
} | } | ||
.navbox-inner .fn.org { | |||
font-size: 100% !important; | |||
margin: 0 !important; | |||
} | } | ||
/* | /*Headings modifications*/ | ||
h1, h2, h3, h4, h5, h6 { | |||
color: var(--tmw-pink); | |||
font-family: "Press Start 2P", monospace !important; | |||
text-shadow: 0.2rem 0 var(--tmw-purple); | |||
letter-spacing: -0.06rem; | |||
} | } | ||
.mw-body h2, .mw-body h3 { | |||
clear: left; | |||
} | } | ||
.mw-body :is(h2, h3, h4) { | |||
text-wrap: balance; | |||
text-wrap: pretty; | |||
} | } | ||
.mw-body .home-page :is(h2, h3, h4) { | |||
text-wrap: balance; | |||
} | } | ||
.mw-body .mw-parser-output h1:after, .mw-body .mw-parser-output h2:after { | |||
border-bottom: var(--tmw-blue-border) !important; | |||
} | } | ||
. | .firstHeading { | ||
overflow-wrap: break-word; | |||
border-bottom: var(--tmw-blue-border) !important; | |||
} | } | ||
.mw-body { | .mw-body h2 { | ||
border-bottom: var(--tmw-blue-border); | |||
} | } | ||
. | @media screen and (max-width: 850px) { | ||
.firstHeading { | |||
text-align: center; | |||
overflow-wrap: anywhere; | |||
} | |||
h1 {font-size: 1.8rem !important;} | |||
h2 {font-size: 1.5rem !important;} | |||
h3 { font-size: 1.2rem !important;} | |||
h4, h5, h6 {font-size: 100% !important;} | |||
} | } | ||
. | |||
/*Reference tooltips modifications - when hovering over a citation/Other reference stuff*/ | |||
.rt-settingsLink { | |||
background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fd184e' d='M20 14.5v-2.9l-1.8-.3c-.1-.4-.3-.8-.6-1.4l1.1-1.5-2.1-2.1-1.5 1.1c-.5-.3-1-.5-1.4-.6L13.5 5h-2.9l-.3 1.8c-.5.1-.9.3-1.4.6L7.4 6.3 5.3 8.4l1 1.5c-.3.5-.4.9-.6 1.4l-1.7.2v2.9l1.8.3c.1.5.3.9.6 1.4l-1 1.5 2.1 2.1 1.5-1c.4.2.9.4 1.4.6l.3 1.8h3l.3-1.8c.5-.1.9-.3 1.4-.6l1.5 1.1 2.1-2.1-1.1-1.5c.3-.5.5-1 .6-1.4l1.5-.3zM12 16c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3z'/%3E%3C/svg%3E"); | |||
} | } | ||
. | .rt-tooltip { | ||
background: var(--tmw-bg-gradient); | |||
border: var(--tmw-blue-border); | |||
border-radius: var(--tmw-default-radius); | |||
font-size: 14px; | |||
box-shadow: var(--tmw-blue-shadow); | |||
color: inherit; | |||
} | } | ||
. | .rt-tooltip::after { | ||
content: ""; | |||
position: inherit; | |||
top: 0; | |||
left: 0; | |||
margin: 0; | |||
width: 100%; | |||
height: 100%; | |||
background: var(--tmw-after-gradient); | |||
pointer-events: none; | |||
} | } | ||
. | .rt-tooltipTail { | ||
display: none; | |||
} | } | ||
ol.references li:target, | |||
sup.reference:target { | |||
background-color: var(--tmw-pink); | |||
color: | |||
} | } | ||
ol.references > li { | |||
word-wrap: break-word; | |||
} | } | ||
.mw- | cite > a, | ||
.mw- | .mw-parser-output a.extiw, | ||
.mw-parser-output a.extiw:active, | |||
.mw-parser-output a.external { | |||
color: var(--tmw-blue) !important; | |||
} | } | ||
/*References section does not wrap around page content*/ | |||
h2:has(> #References) { | |||
clear: both; | |||
} | } | ||
.mw- | |||
/*Editing page/other editing stuff modifications*/ | |||
/*Style "edit/edit source" next to headings in pages*/ | |||
.mw-editsection { | |||
font: 13px/20px monospace !important; | |||
background-image: none; | |||
padding-left: 0; | |||
text-shadow: none; | |||
} | } | ||
/*Editing comparison page*/ | |||
background- | .diff-addedline .diffchange { | ||
background: var(--tmw-pink); | |||
} | } | ||
. | .diff-context { | ||
border- | background: var(--tmw-pink); | ||
border-color: var(--tmw-blue); | |||
color: inherit; | |||
} | } | ||
.mw-code { | |||
color: inherit; | |||
background: var(--tmw-bg-gradient-dark); | |||
box-shadow: var(--tmw-pink-shadow); | |||
border: var(--tmw-pink-border); | |||
border-radius: var(--tmw-default-radius); | |||
overflow-wrap: anywhere; | |||
} | } | ||
# | /*Source edit text box*/ | ||
background | #wpTextbox1 { | ||
background: black; | |||
color: white; | |||
} | } | ||
/*MWE popups modifications - when hovering over a link to another article*/ | |||
background | .mwe-popups { | ||
border: | background: transparent; | ||
border-radius: | border: var(--tmw-blue-border); | ||
border-radius: var(--tmw-default-radius); | |||
} | } | ||
. | .mwe-popups-container { | ||
background- | background: var(--tmw-bg-gradient-dark) !important; | ||
border: var(--tmw-blue-border); | |||
border: | border-radius: var(--tmw-default-radius); | ||
border-radius: | box-shadow: var(--tmw-blue-shadow); | ||
box-shadow: | |||
} | } | ||
. | .mwe-popups-container::after { | ||
content: ""; | |||
position: absolute; | |||
top: 0; | |||
content: ""; | |||
position: | |||
top: 0; | |||
left: 0; | left: 0; | ||
margin: 0; | margin: 0; | ||
width: | width: 100%; | ||
height: | height: 100%; | ||
background: | background: var(--tmw-after-gradient); | ||
pointer-events: none; | pointer-events: none; | ||
} | } | ||
.mwe-popups-extract:hover { | |||
color: var(--tmw-blue) !important; | |||
} | |||
.mwe-popups .mwe-popups-extract[dir="ltr"]:after { | |||
background-image: none !important; | |||
} | } | ||
.mwe-popups .mwe-popups-container { | |||
clip-path: none; | |||
} | |||
.mwe-popups.mwe-popups-is-not-tall .mwe-popups-thumbnail { | |||
border-top-left-radius: var(--tmw-default-radius); | |||
border-top-right-radius: var(--tmw-default-radius); | |||
width: 318px; | |||
z-index: 1; | |||
position: relative; | |||
} | |||
.mwe-popups.mwe-popups-is-tall .mwe-popups-discreet .mwe-popups-thumbnail { | |||
border-top-right-radius: var(--tmw-default-radius); | |||
border-bottom-right-radius: var(--tmw-default-radius); | |||
z-index: 1; | |||
position: relative; | |||
} | |||
.mwe-popups .mwe-popups-extract { | |||
color: var(--tmw-white); | |||
font-size: 0.75rem; | |||
} | } | ||
/* | /*Table of Contents (TOC) modifications*/ | ||
.toc { | |||
background: var(--tmw-bg-gradient) !important; | |||
border: var(--tmw-blue-border) !important; | |||
border-radius: var(--tmw-default-radius) !important; | |||
box-shadow: var(--tmw-blue-shadow) !important; | |||
} | |||
.mw-body .toctitle { | |||
border-bottom: var(--tmw-blue-border); | |||
} | } | ||
/*Tables modifications*/ | |||
th { | |||
background: var(--tmw-table-gradient) !important; | |||
} | } | ||
td { | |||
background-color: initial !important; | |||
} | } | ||
.mw-body .mw-rcfilters-ui-changesListWrapperWidget .mw-changeslist-legend, | |||
.mw-changeslist-legend, | |||
.mw-body .mw-search-profile-tabs, | |||
.mw-body fieldset#mw-searchoptions, | |||
.mw_metadata, | |||
.wikitable, | |||
} | .mw-datatable { | ||
color: inherit !important; | |||
background: inherit !important; | |||
border: initial; | |||
} | |||
:is(.mw_metadata, .mw-datatable, .wikitable) > tr > th, | |||
:is(.mw_metadata, .mw-datatable, .wikitable) > tr > td, | |||
:is(.mw_metadata, .mw-datatable, .wikitable) > * > tr > th, | |||
:is(.mw_metadata, .mw-datatable, .wikitable) > * > tr > td { | |||
border: 1px solid hsl(335deg 89.24% 35.86%) !important; | |||
background: var(--tmw-table-gradient) !important; | |||
} | } | ||
.wikitable { | |||
background: unset; | |||
background-color: unset; | |||
color: unset; | |||
border: var(--tmw-pink-border); | |||
background-image: var(--tmw-table-gradient) !important; | |||
} | |||
.wikitable td :is(ul, ol, dl) { | |||
text-align: left; | |||
} | |||
.curved-table .wikitable { | |||
border-collapse: inherit !important; | |||
border-spacing: 0; | |||
border-radius: var(--tmw-default-radius); | |||
padding: 0; | |||
width: -webkit-fill-available; | |||
width: -moz-available; | |||
background: inherit !important; | |||
} | |||
.curved-table .wikitable ol { | |||
margin: 0.3em 0 0 2.2em; | |||
} | } | ||
.curved-table .wikitable li { | |||
margin-bottom: 0.1em; | |||
} | } | ||
.curved-table tbody { | |||
box-shadow: var(--tmw-pink-shadow) !important; | |||
border-radius: var(--tmw-default-radius) !important; | |||
} | } | ||
.scroll-left.overflowed .content-table-left, | |||
.scroll-right.overflowed .content-table-right { | |||
border-left: 0; | |||
} | |||
.toccolours th, | |||
.toccolours td { | |||
width: auto !important; | |||
vertical-align: middle !important; | |||
padding-right: 0 !important; | |||
border: var(--tmw-pink-border) !important; | |||
} | |||
.toccolours th { | |||
text-align: center !important; | |||
} | |||
.toccolours td { | |||
padding-left: 1em; | |||
} | |||
.toccolours { | |||
border: none !important; | |||
background: inherit !important; | |||
border-collapse: separate; | |||
background-image: var(--tmw-table-gradient) !important; | |||
border-radius: var(--tmw-default-radius); | |||
border-spacing: 0; | |||
padding: 0 !important; | |||
} | |||
.toccolours tbody{ | |||
} | box-shadow: var(--tmw-pink-shadow); | ||
border-radius: var(--tmw-default-radius); | |||
} | |||
#fileinfotpl_desc { | |||
border-top-left-radius: var(--tmw-default-radius); | |||
} | |||
#fileinfotpl_desc + td { | |||
border-top-right-radius: var(--tmw-default-radius); | |||
} | |||
.toccolours th:has(small) { | |||
border-bottom-left-radius: var(--tmw-default-radius); | |||
} | |||
.toccolours th:has(small) + td { | |||
border-bottom-right-radius: var(--tmw-default-radius); | |||
} | |||
.mw-body-content a > img, | |||
.mw-body-content .floatnone > img { | |||
position: relative; | |||
z-index: 1; | |||
} | } | ||
.chart-table tr:first-of-type th:first-of-type { | |||
border-top-left-radius: var(--tmw-default-radius); | |||
border-top-right-radius: var(--tmw-default-radius); | |||
} | } | ||
.chart-table tr:last-of-type td:first-of-type { | |||
border-bottom-left-radius: 10px; | |||
} | } | ||
.chart-table tr:last-of-type td:last-of-type { | |||
border-bottom-right-radius: 10px; | |||
} | } | ||
.filehistory { | |||
border-collapse: separate; | |||
border-radius: var(--tmw-default-radius); | |||
border-spacing: 0; | |||
padding: 0; | |||
& tbody { | |||
border-radius: var(--tmw-default-radius); | |||
box-shadow: var(--tmw-pink-shadow); | |||
} | |||
& th:first-of-type { | |||
border-top-left-radius: var(--tmw-default-radius); | |||
} | } | ||
& th:last-of-type { | |||
border-top-right-radius: var(--tmw-default-radius); | |||
} | } | ||
& tr:last-of-type td:first-of-type { | |||
border-bottom-left-radius: var(--tmw-default-radius); | |||
} | |||
& tr:last-of-type td:last-of-type { | |||
border-bottom-right-radius: var(--tmw-default-radius); | |||
} | |||
} | |||
/*Image viewer modifications*/ | |||
.mw-mmv-post-image, | |||
.mw-mmv-image-metadata { | |||
color: inherit; | |||
background: var(--tmw-bg-gradient); | |||
border-top: var(--tmw-blue-border); | |||
} | } | ||
. | .mw-mmv-image-metadata-desc-column { | ||
width: 100%; | width: 100%; | ||
} | } | ||
. | .mw-mmv-above-fold { | ||
border-top: var(--tmw-blue-border); | |||
} | |||
.mw-mmv-image-metadata-links-column { | |||
float: none; | |||
} | |||
.mw-mmv-credit, .mw-mmv-image-desc { | |||
color: inherit; | |||
} | |||
.mw-ui-button.mw-ui-progressive:not(:disabled) { | |||
background-color: var(--tmw-pink); | |||
} | |||
.mw-mmv-post-image::after { | |||
content: ""; | |||
position: inherit; | |||
top: 0; | top: 0; | ||
left: 0; | left: 0; | ||
margin: 0; | |||
width: 100%; | width: 100%; | ||
height: 100%; | height: 100%; | ||
background: var(--tmw-after-gradient); | |||
pointer-events: none; | |||
} | |||
.mw-mmv-dialog-down-arrow { | |||
display: none; | |||
} | |||
.mw-mmv-options-dialog-header { | |||
color: var(--tmw-pink); | |||
} | |||
.mw-mmv-options-text-header, | |||
.mw-mmv-options-text-body, | |||
.mw-ui-button.mw-ui-quiet { | |||
color: inherit; | |||
} | |||
.mw-mmv-dialog .mw-mmv-dialog-warning, | |||
.mw-mmv-download-pane .mw-mmv-download-attribution { | |||
background-color: unset !important; | |||
} | |||
.mw-mmv-download-pane .mw-mmv-download-area { | |||
padding-bottom: 0; | |||
} | } | ||
. | .mw-mmv-options-dialog::after, | ||
.mw-mmv-reuse-dialog::after, | |||
.mw-mmv-download-dialog::after { | |||
content: ""; | content: ""; | ||
position: absolute; | position: absolute; | ||
top: 0; | top: 0; | ||
left: 0; | |||
margin: 0; | |||
width: 100%; | width: 100%; | ||
height: | height: 100%; | ||
background: var(--tmw-after-gradient); | |||
background: - | pointer-events: none; | ||
} | } | ||
/*Tabber modifications*/ | |||
.tabber__tab, | |||
.tabber__tab:visited { | |||
color: var(--tmw-pink); | |||
} | } | ||
. | .tabber__tab[aria-selected="true"], | ||
.tabber__tab[aria-selected="true"]:visited { | |||
color: var(--tmw-blue); | |||
} | } | ||
. | .tabber__indicator { | ||
background: none; | |||
} | |||
border- | .tabber__header { | ||
box-shadow: none; | |||
/*border-bottom: var(--tmw-blue-border);*/ | |||
} | |||
@media (width > 850px) { | |||
.page-List_of_The_Midnight_merchandise .tabber__header { | |||
align-items: flex-end; | |||
} | } | ||
} | } | ||
. | .tabber__header__next:after { | ||
background-image: linear-gradient(transparent, transparent), | |||
url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='utf-8'?%3e%3csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M7 1L5.6 2.5 13 10l-7.4 7.5L7 19l9-9z' style='fill: rgb(248, 20, 114);'/%3e%3c/svg%3e") !important; | |||
background-image: url(/ | |||
} | } | ||
.tabber__header__prev:after { | |||
background-image: linear-gradient(transparent, transparent), | |||
url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='utf-8'?%3e%3csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M4 10l9 9 1.4-1.5L7 10l7.4-7.5L13 1z' style='fill: rgb(248, 20, 114);'/%3e%3c/svg%3e") !important; | |||
} | |||
.infobox-tabber .tabber__header { | |||
border-bottom: 0; | |||
} | } | ||
/* | |||
.infobox-tabber .infobox { | |||
width: -webkit-fill-available; | |||
width: -moz-available; | |||
} | |||
*/ | |||
.infobox-tabber .tabber { | |||
width: 19rem; | |||
float: right; | |||
padding-left: 1em; | |||
} | |||
@media (width <= 850px) { | |||
.infobox-tabber .tabber { | |||
float: none; | |||
padding-left: 0; | |||
margin: 0 auto; | |||
} | |||
} | |||
/*Bandcamp/Soundcloud/Youtube modifications*/ | |||
#bandcamp, | |||
#bandcamp-album { | |||
position: relative; | |||
z-index: 1; | |||
max-width: 300px; | |||
} | |||
.infobox-image #bandcamp iframe { | |||
width: 17.5rem !important; | |||
height: auto !important; | |||
aspect-ratio: 1 / 1; | |||
} | |||
.infobox-image #bandcamp { | |||
max-width: none; | |||
} | |||
.sc-wrapper { | |||
display: flex; | |||
justify-content: center; | |||
z-index: 1; | |||
position: relative; | |||
} | |||
#youtube-outer { | |||
background-position: center; | |||
background-size: contain; | |||
background-repeat: no-repeat; | |||
border-radius: 1%; | |||
background-image: url(/images/7/75/Television.png); | |||
width: 448px; | |||
75 | height: 408px; | ||
position: relative; | |||
float: none; | |||
margin: 0 auto; | |||
margin-bottom: 1em; | |||
clear: both; | |||
z-index: 1; | |||
} | |||
@media screen and (max-width: 1400px) { | |||
#youtube-outer { | |||
width: 329px; | |||
height: 300px; | |||
} | } | ||
} | } | ||
.youtube-middle { | |||
border-radius: 3%; | |||
position: absolute; | |||
} | z-index: -1; | ||
top: 10%; | |||
left: 9%; | |||
} | background-color: transparent !important; | ||
width: 82%; | |||
height: 75%; | |||
} | } | ||
/*Tracklists modifications*/ | |||
.tracklist { | |||
border-collapse: collapse; | |||
} | |||
.tracklist-number-header { | |||
border-top-left-radius: var(--tmw-default-radius); | |||
} | |||
.tracklist-length-header { | |||
border-top-right-radius: var(--tmw-default-radius); | |||
} | |||
.tracklist-total-length th { | |||
border-bottom-left-radius: var(--tmw-default-radius); | |||
} | |||
.tracklist-total-length td { | |||
border-bottom-right-radius: var(--tmw-default-radius); | |||
} | |||
.tracklist caption { | |||
padding-bottom: 5px; | |||
} | |||
.tracklist th { | |||
background-color: inherit !important; | |||
background-image: inherit !important; | |||
} | |||
.tracklist tr { | |||
background-color: transparent !important; | |||
} | } | ||
.tracklist tr:nth-child(2n-1) { | |||
background-color: #052540 !important; | |||
} | } | ||
.tracklist tr.tracklist-total-length { | |||
background-image: none; | |||
} | } | ||
.tracklist-total-length th > span { | |||
background-color: transparent !important; | |||
} | } | ||
.tracklist tr:first-of-type, | |||
.tracklist tr:last-of-type, | |||
.tracklist-total-length td { | |||
background-color: #00000029 !important; | |||
} | |||
.tracklist tbody { | |||
border-radius: var(--tmw-default-radius); | |||
box-shadow: 0 0 0 2px #00000029; | |||
} | } | ||
/* Tour | |||
/*Tour listing element - used on Live Performances page and a few other places*/ | |||
.tour-listing { | |||
display: flex; | display: flex; | ||
align-items: center; | align-items: center; | ||
gap: 1em; | |||
padding: 1em; | |||
} | |||
@media screen and (max-width: 500px) { | |||
.tour-listing { | |||
flex-direction: column; | |||
} | |||
} | } | ||
. | |||
display: flex; | /*Tour gallery/Poster gallery - used on tour/show pages*/ | ||
/* Tour gallery code */ | |||
#tour-gallery ul, .column-gallery { | |||
/*display: flex; | |||
flex-wrap: wrap; | flex-wrap: wrap; | ||
flex-direction: row; | flex-direction: row; | ||
align-items: center; | align-items: center; | ||
justify-content: center; | justify-content: center; | ||
gap: 35px; | gap: 35px;*/ | ||
columns: 20rem; | |||
margin: 0; | |||
list-style-type: none; | list-style-type: none; | ||
} | } | ||
/*Media group modifications - used for grouping song versions and media associated with song (videos)*/ | |||
.grid-sizer { | |||
width: 19em; | |||
} | } | ||
. | .masonry-group { | ||
display: grid; | |||
grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); | |||
justify-items: center; | |||
gap: 1em; | |||
text-align: center; | text-align: center; | ||
text-wrap: balance; | |||
& > * { | |||
align-self: start | |||
} | |||
} | } | ||
. | .media-group { | ||
display: grid; | |||
grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); | |||
justify-items: center; | |||
gap: 1em; | |||
text-align: center; | text-align: center; | ||
text-wrap: balance; | |||
} | } | ||
. | .media-group .thumb { | ||
margin: 0; | |||
padding: 0; | |||
} | } | ||
. | .center-group { | ||
align-items: center; | |||
} | } | ||
. | .media-group #bandcamp { | ||
max-width: none; | |||
} | } | ||
. | .media-group #bandcamp iframe { | ||
border: var(--tmw-pink-border) !important; | |||
border-radius: var(--tmw-default-radius); | |||
box-shadow: var(--tmw-pink-shadow); | |||
padding: 1px; | |||
} | } | ||
. | /* | ||
.media-group { | |||
& .video-wrapper { | |||
width: 330px; | |||
} | |||
& .video-outer { | |||
padding-bottom: 3em; | |||
} | |||
& video { | |||
width: 83% !important; | |||
top: 6% !important; | |||
} | |||
& > div { | |||
margin: 0; | |||
padding: 0; | |||
} | |||
} | } | ||
*/ | |||
.music-wrapper { | |||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
} | |||
.music-wrapper p { | |||
margin: 0; | |||
} | |||
.music-wrapper .caption { | |||
font-weight: bold; | |||
} | |||
/*Merch gallery - styling and layout for gallery on Merchandise page*/ | |||
.merch-gallery { | |||
display: grid; | |||
grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); | |||
justify-items: center; | |||
overflow: hidden; | |||
/*align-items: start;*/ | |||
} | |||
.merch-gallery .thumbcaption { | |||
width: 160px; | |||
} | |||
.merch-gallery .thumb { | |||
margin: 0 !important; | |||
padding: 0 !important; | |||
} | |||
.merch-gallery .thumbimage { | |||
box-shadow: var(--tmw-pink-shadow); | |||
max-height: 170px; | |||
aspect-ratio: 1 / 1; | |||
padding: 1em; | |||
margin: 0; | |||
object-fit: contain; | |||
} | |||
/* | |||
.merch-gallery img { | |||
aspect-ratio: 1 / 1; | |||
} | padding: 1em; | ||
object-fit: contain; | |||
} | |||
*/ | |||
@media screen and (max-width: 850px) { | |||
figure[typeof~='mw:File/Thumb'] > :not(figcaption) .mw-file-element, figure[typeof~='mw:File/Frame'] > :not(figcaption) .mw-file-element { | |||
max-width: 100% !important; | |||
} | |||
.merch-gallery figure[typeof~='mw:File/Thumb'], .merch-gallery figure[typeof~='mw:File/Frame'] { | |||
width: inherit !important; | |||
} | |||
} | |||
.merch-gallery .thumbinner { | |||
width: auto !important; | |||
z-index: initial; | |||
} | |||
.merch-gallery a { | |||
width: 160px; | |||
height: 160px; | |||
background: var(--tmw-bg-gradient-dark); | |||
border-radius: var(--tmw-default-radius); | |||
} | } | ||
. | |||
/*Video element modifications*/ | |||
.embedvideo video { | |||
border-radius: var(--tmw-default-radius); | |||
object-fit: cover; | |||
} | |||
.embedvideo { | |||
z-index: 1; | |||
display: block; | |||
position: relative; | |||
} | } | ||
. | @media screen and (max-width: 850px) { | ||
.embedvideo { | |||
float: none !important; | |||
margin: 0 auto !important; | |||
} | |||
} | } | ||
. | .thumbinner:has(> .embedvideo) { | ||
. | max-width: none !important; | ||
} | } | ||
. | .media-group .thumb:has(.embedvideo) { | ||
. | margin: 0; | ||
padding: 0; | |||
} | } | ||
. | .embedvideo figcaption { | ||
text-align: center; | |||
/*font-size: initial;*/ | |||
font-weight: bold; | |||
} | } | ||
. | .embedvideo-wrapper { | ||
border: var(--tmw-pink-border-figure); | |||
border-radius: var(--tmw-default-radius); | |||
box-shadow: var(--tmw-pink-shadow); | |||
} | } | ||
. | .embedvideo-player, .embedvideo-consent { | ||
border-radius: var(--tmw-default-radius); | |||
z-index: 1; | |||
} | } | ||
. | .mw-tmh-media-dialog .oo-ui-dialog-content > .oo-ui-window-body { | ||
border-bottom-left-radius: var(--tmw-default-radius); | |||
border-bottom-right-radius: var(--tmw-default-radius); | |||
} | } | ||
. | *:not(.thumbinner) > .video-js.video-js:not(.vjs-fullscreen) { | ||
border: 0 !important; | |||
} | } | ||
. | .video-wrapper { | ||
display: flex; | |||
flex-direction: column; | |||
align-items: center; | |||
} | } | ||
.video-outer { | |||
background-position: center; | |||
background-size: contain; | |||
background-repeat: no-repeat; | |||
border-radius: 1%; | |||
background-image: url(/images/7/75/Television.png); | |||
width: 100%; | |||
max-width: 500px; | |||
.video-outer { | |||
background-position: center; | |||
background-size: contain; | |||
background-repeat: no-repeat; | |||
border-radius: 1%; | |||
background-image: url(/images/7/75/Television.png); | |||
width: 100%; | |||
max-width: 500px; | |||
position: relative; | position: relative; | ||
float: none; | float: none; | ||
Line 1,706: | Line 1,595: | ||
align-items: center; | align-items: center; | ||
} | } | ||
.video-outer video { | .video-outer video { | ||
position: relative; | position: relative; | ||
Line 1,720: | Line 1,604: | ||
aspect-ratio: 4 / 3; | aspect-ratio: 4 / 3; | ||
} | } | ||
.video-outer video:fullscreen, | .video-outer video:fullscreen, | ||
.video-outer video:-webkit-full-screen { | .video-outer video:-webkit-full-screen { | ||
Line 1,726: | Line 1,609: | ||
border-radius: 0; | border-radius: 0; | ||
} | } | ||
.video-wrapper .caption { | .video-wrapper .caption { | ||
margin: 0; | margin: 0; | ||
Line 1,732: | Line 1,614: | ||
} | } | ||
/*Semantic modifications*/ | |||
.smwb-theme-light .smwb-title, .smwb-theme-light .smwb-center, .smwb-theme-light .smwb-actions, | |||
.smwb-theme-light .smwb-prophead, .smwb-propvalue, .smwb-theme-light .smwb-propval, .smwb-ipropvalue { | |||
background-color: inherit; | |||
} | } | ||
. | .smwb-datasheet { | ||
border: var(--tmw-pink-border); | |||
border-radius: | border-radius: var(--tmw-default-radius); | ||
background: var(--tmw-bg-gradient-dark); | |||
box-shadow: var(--tmw-pink-shadow); | |||
padding: 1em; | padding: 1em; | ||
} | } | ||
.smwb-factbox { | |||
border-left: 0 !important; | |||
} | } | ||
.smwb-ifactbox { | |||
. | border-right: 0 !important; | ||
} | } | ||
.smwb-factbox .smwb-cell, .smwb-ifactbox .smwb-cell { | |||
border-top: var(--tmw-blue-border); | |||
} | } | ||
. | .smwb-bottom { | ||
border-bottom: var(--tmw-blue-border); | |||
} | } | ||
. | |||
/*Data tables*/ | |||
:focus-visible { | |||
outline: none; | |||
} | |||
table.dataTable { | |||
width: -webkit-fill-available !important; | |||
width: -moz-available !important; | |||
} | } | ||
.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate { | |||
color: inherit; | |||
} | } | ||
. | .datatable-loaded tr:last-of-type td:first-of-type { | ||
border-bottom-left-radius: var(--tmw-default-radius); | |||
} | } | ||
. | .datatable-loaded tr:last-of-type td:last-of-type { | ||
border: | border-bottom-right-radius: var(--tmw-default-radius); | ||
} | } | ||
. | .dataTables_wrapper .dataTables_length { | ||
padding-bottom: 1em; | |||
} | } | ||
. | .dataTables_wrapper .dataTables_filter { | ||
padding-bottom: 1em; | |||
} | } | ||
. | .dt-length option { | ||
color: black; | |||
} | } | ||
. | table.dataTable thead > tr > th.sorting, table.dataTable thead > tr > th.sorting_asc, | ||
table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting_asc_disabled, | |||
table.dataTable thead > tr > th.sorting_desc_disabled, table.dataTable thead > tr > td.sorting, | |||
table.dataTable thead > tr > td.sorting_asc, table.dataTable thead > tr > td.sorting_desc, | |||
table.dataTable thead > tr > td.sorting_asc_disabled, table.dataTable thead > tr > td.sorting_desc_disabled { | |||
padding: 0 0.3rem !important; | |||
font-size: clamp(10px, 12px, 14px); | |||
} | } | ||
table.dataTable thead th, table.dataTable thead td, table.dataTable tfoot th, table.dataTable tfoot td { | |||
. | text-align: center !important; | ||
} | } | ||
. | table.dataTable tbody th, table.dataTable tbody td { | ||
padding: 0 0.3rem !important; | |||
font-size: clamp(10px, 12px, 14px); | |||
} | } | ||
table.dataTable>thead>tr>th, table.dataTable>thead>tr>td { | |||
. | padding: 0 0.3rem !important; | ||
font-size: clamp(10px, 12px, 14px); | |||
} | } | ||
table.dataTable th.dt-type-numeric, | |||
. | table.dataTable th.dt-type-date, table.dataTable td.dt-type-numeric, | ||
table.dataTable td.dt-type-date { | |||
text-align: center !important; | |||
} | } | ||
table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before, | |||
. | table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before { | ||
margin-right: 0 !important; | |||
border-left: 0 !important; | |||
} | } | ||
table.dataTable thead>tr>th.dt-orderable-asc span.dt-column-order, | |||
. | table.dataTable thead>tr>th.dt-orderable-desc span.dt-column-order, | ||
table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order, | |||
table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order, | |||
table.dataTable thead>tr>td.dt-orderable-asc span.dt-column-order, | |||
table.dataTable thead>tr>td.dt-orderable-desc span.dt-column-order, | |||
table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order, | |||
table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order { | |||
right: 0.5rem !important; | |||
} | } | ||
.curved-table div.dtsp-searchPane div.dt-container div.dt-scroll-body, | |||
. | .curved-table div.dtsp-searchPane div.dt-container div.dataTables_scrollBody, | ||
.curved-table div.dtsp-searchPane div.dataTables_wrapper div.dt-scroll-body, | |||
.curved-table div.dtsp-searchPane div.dataTables_wrapper div.dataTables_scrollBody { | |||
background: var(--tmw-bg-gradient-dark) !important; | |||
padding: 0.5rem; | |||
max-height: 140px !important; | |||
height: 140px !important; | |||
} | } | ||
.dt-scroll-body tbody { | |||
. | box-shadow: none !important; | ||
} | } | ||
div.dtsp-searchPane div.dt-container, div.dtsp-searchPane div.dataTables_wrapper { | |||
border: var(--tmw-pink-border) !important; | |||
border-radius: var(--tmw-default-radius) !important; | |||
box-shadow: var(--tmw-pink-shadow); | |||
} | } | ||
div.dtsp-panesContainer button.dtsp-clearAll, div.dtsp-panesContainer button.dtsp-collapseAll, | |||
div.dtsp-panesContainer button.dtsp-showAll { | |||
font: inherit; | |||
color: inherit; | |||
} | |||
div.dtsp-searchPane div.dtsp-topRow div.dtsp-searchCont input.dtsp-search { | |||
font: inherit; | |||
color: inherit; | |||
} | |||
div.dtsp-searchPane input.dtsp-paneInputButton, div.dtsp-searchPane button.dtsp-paneButton { | |||
padding: unset; | |||
} | } | ||
div.dt-container .dt-paging .dt-paging-button { | |||
font-family: inherit; | |||
} | } | ||
div.dtsp-searchPane div.dt-container div.dt-scroll-body div.dtsp-nameCont span.dtsp-pill, | |||
. | div.dtsp-searchPane div.dt-container div.dataTables_scrollBody div.dtsp-nameCont span.dtsp-pill, | ||
div.dtsp-searchPane div.dataTables_wrapper div.dt-scroll-body div.dtsp-nameCont span.dtsp-pill, | |||
div.dtsp-searchPane div.dataTables_wrapper div.dataTables_scrollBody div.dtsp-nameCont span.dtsp-pill { | |||
background-color: inherit !important; | |||
color: inherit !important; | |||
} | } | ||
div.dt-container .dt-length, div.dt-container .dt-search, div.dt-container .dt-info, | |||
div.dt-container .dt-processing, div.dt-container .dt-paging { | |||
padding-bottom: 1rem; | |||
} | |||
div.dt-container .dt-input { | |||
background: var(--tmw-bg-gradient-dark); | |||
border: var(--tmw-pink-border) !important; | |||
border-radius: var(--tmw-default-radius) !important; | |||
box-shadow: 0 0 14px var(--tmw-purple); | |||
padding-left: 0.6rem !important; | |||
font: inherit; | |||
} | } | ||
div.dt-container .dt-search input:focus { | |||
. | border: var(--tmw-pink-border) !important; | ||
} | } | ||
div.dtsp-topRow div.dtsp-subRow1 { | |||
. | padding-bottom: 0.6rem; | ||
} | } | ||
div.dt-container div.dt-layout-row.dt-layout-table { | |||
. | container-type: inline-size; | ||
} | } | ||
.dtsp-nameCont { | |||
. | width: calc(100cqw - 35px) !important; | ||
width: - | |||
} | } | ||
.dtsp-searchPane div.dt-container div.dt-layout-row.dt-layout-table { | |||
. | height: 150px; | ||
} | |||
.curved-table div.dtsp-topRow div.dtsp-subRow1 button.dtsp-searchIcon span { | |||
background-image: url(/skins/Timeless/resources/images/search-ltr.svg?bb2cf) !important; | |||
} | |||
.curved-table div.dtsp-topRow button.dtsp-nameButton span { | |||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAAtXpUWHRSYXcgcHJvZmlsZSB0eXBlIGV4aWYAAHjaXVDbEcMgDPtnio6AH7zGoRd61w06foUxaVLlMLbESZAwPu9XeExQ1aCp1NxyjoA2bdzR1LjQrFJUqwYW1+jOh1NgULP3uXQ/v3k6DdbW0aWL0Q6n512oLnD9M/IgmTdiNIcbta3zEkj9VSPeUX+Liz1qhq8wzOFKaMFfOhL8hHkISUQV0RUkc6l02/uccY7wdbAcTCi42hcJtkzvaybE6QAAAXBpQ0NQaWNjAAB4nHWRzUsCQRjGH7Uw0vBQh5AOe7DooCAF0TEM8mId1CCry+64q8HuusyuiHQNunQQOkRd+jr0H9Q16FoQBEUQEfQf9HUJ2d5xBSV0htn3x7PzvMw8A/gzOjPsgSRgmA7PplPSWmFdCr4jTDOEKBIys63l3FIefcfPI3yiPiREr/77eo5QUbUZ4BsinmMWd4gXiDM1xxK8RzzGynKR+IQ4zumAxLdCVzx+E1zy+Eswz2cXAb/oKZW6WOliVuYG8TRxzNCrrH0ecZOwaq7mqEZpTcBGFmmkIEFBFVvQ4SBB1aTMevuSLd8KKuRh9LVQBydHCWXyxkmtUleVqka6SlNHXeT+P09bm53xuodTwOCr635OAsF9oNlw3d9T122eAYEX4Nrs+CuU0/w36Y2OFjsGIjvA5U1HUw6Aq11g/NmSudySArT8mgZ8XAAjBWD0Hhje8LJq/8f5E5Dfpie6Aw6PgCnaH9n8AwgUaA5l6qHxAAANdmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNC40LjAtRXhpdjIiPgogPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iCiAgICB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIgogICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgeG1sbnM6R0lNUD0iaHR0cDovL3d3dy5naW1wLm9yZy94bXAvIgogICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iCiAgIHhtcE1NOkRvY3VtZW50SUQ9ImdpbXA6ZG9jaWQ6Z2ltcDpmY2FlNzkzOC0yZDc0LTRjMmItODZlZi0zYzg1MWY1NmUwMGQiCiAgIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6ODZlN2EwNGMtMTJiZC00YjA4LTg4ODItMzljNTk5NzFjNDI2IgogICB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6ZGZiMWIzYjYtN2YwYy00ZGM1LWE4YzctZDJiNTk4MmI4OTA3IgogICBkYzpGb3JtYXQ9ImltYWdlL3BuZyIKICAgR0lNUDpBUEk9IjIuMCIKICAgR0lNUDpQbGF0Zm9ybT0iV2luZG93cyIKICAgR0lNUDpUaW1lU3RhbXA9IjE3MDg0NDczMjcxMDAyNDMiCiAgIEdJTVA6VmVyc2lvbj0iMi4xMC4zNCIKICAgdGlmZjpPcmllbnRhdGlvbj0iMSIKICAgeG1wOkNyZWF0b3JUb29sPSJHSU1QIDIuMTAiCiAgIHhtcDpNZXRhZGF0YURhdGU9IjIwMjQ6MDI6MjBUMTE6NDI6MDctMDU6MDAiCiAgIHhtcDpNb2RpZnlEYXRlPSIyMDI0OjAyOjIwVDExOjQyOjA3LTA1OjAwIj4KICAgPHhtcE1NOkhpc3Rvcnk+CiAgICA8cmRmOlNlcT4KICAgICA8cmRmOmxpCiAgICAgIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiCiAgICAgIHN0RXZ0OmNoYW5nZWQ9Ii8iCiAgICAgIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6NGJjNWQ4NDQtODY1MC00YzhhLTlhMWItN2U3YjczMGViYjVkIgogICAgICBzdEV2dDpzb2Z0d2FyZUFnZW50PSJHaW1wIDIuMTAgKFdpbmRvd3MpIgogICAgICBzdEV2dDp3aGVuPSIyMDI0LTAyLTIwVDExOjQyOjA3Ii8+CiAgICA8L3JkZjpTZXE+CiAgIDwveG1wTU06SGlzdG9yeT4KICA8L3JkZjpEZXNjcmlwdGlvbj4KIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAKPD94cGFja2V0IGVuZD0idyI/PvHAB+oAAAAGYktHRAAAAAAAAPlDu38AAAAJcEhZcwAAD2EAAA9hAag/p2kAAAAHdElNRQfoAhQQKgd+UVocAAAA00lEQVRYw+2WwQ3FIAiGhXhwACd1ECd1AG/2ZNI0VqFF+vLCf2pLlQ9E1DmTyfSHgpmxxtT6cygZpJzezYuUAaN3CZCr8OulOcMhl35HVvr3ZWbOa/oGcjW2xtS8dLSjQu//dNuogGtMDZ9EwLWHkmG1G0PJgJQluptIurZQe/uSYTjOKLUiBnOdfOZMqjv7XR23xtS4kP7LGlE9DriQntq4njS515mRvCpwwZAbxRWWMn7UCkZ2cEqiQKvBrIBCyaAKMztIf+KmR7oDazg3mUy7dADIt4z7dQwIuQAAAABJRU5ErkJggg==) !important; | |||
} | |||
.curved-table div.dtsp-topRow button.dtsp-countButton span { | |||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAs3pUWHRSYXcgcHJvZmlsZSB0eXBlIGV4aWYAAHjaXVBbDgMhCPznFD2CAr6OY7M26Q16/I6idi0JrxnCiNQ+7xc9uvmspCHlWGJ0MC1auKLIzqyM6J2OaM3i/InTJhiQIIu1qc75hfu9wFJFFW6LtsDzJPIkOP8tmkLSX8QorrmoLJ6N8Dqvau60/HNO46gubmLo6Q5owi9dAfuEuYkXhyiiJiTdVerIFY6r+8xAEg0Iz6IvE5VM/CUYaAYAAAFwaUNDUGljYwAAeJx1kc1LAkEYxh+1MNLwUIeQDnuw6KAgBdExDPJiHdQgq8vuuKvB7rrMroh0Dbp0EDpEXfo69B/UNehaEARFEBH0H/R1CdnecQUldIbZ98ez87zMPAP4Mzoz7IEkYJgOz6ZT0lphXQq+I0wzhCgSMrOt5dxSHn3HzyN8oj4kRK/++3qOUFG1GeAbIp5jFneIF4gzNccSvEc8xspykfiEOM7pgMS3Qlc8fhNc8vhLMM9nFwG/6CmVuljpYlbmBvE0cczQq6x9HnGTsGqu5qhGaU3ARhZppCBBQRVb0OEgQdWkzHr7ki3fCirkYfS1UAcnRwll8sZJrVJXlapGukpTR13k/j9PW5ud8bqHU8Dgq+t+TgLBfaDZcN3fU9dtngGBF+Da7PgrlNP8N+mNjhY7BiI7wOVNR1MOgKtdYPzZkrnckgK0/JoGfFwAIwVg9B4Y3vCyav/H+ROQ36YnugMOj4Ap2h/Z/AMIFGgOZeqh8QAADXZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+Cjx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDQuNC4wLUV4aXYyIj4KIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIgogICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgIHhtbG5zOkdJTVA9Imh0dHA6Ly93d3cuZ2ltcC5vcmcveG1wLyIKICAgIHhtbG5zOnRpZmY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vdGlmZi8xLjAvIgogICAgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIgogICB4bXBNTTpEb2N1bWVudElEPSJnaW1wOmRvY2lkOmdpbXA6OGViYTQzNGYtODMyMi00MzdlLWIyMDAtZDkxZDkwZmQxMDM5IgogICB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjY1Zjk0OWU5LTkyMWMtNGY0Zi04OGVkLTAwNmNkYjk0NzAyYyIKICAgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjM4ZmZiMTcwLTkyZTAtNDU1Zi1iMTE0LTQ1NjcxYTlkMzBhNSIKICAgZGM6Rm9ybWF0PSJpbWFnZS9wbmciCiAgIEdJTVA6QVBJPSIyLjAiCiAgIEdJTVA6UGxhdGZvcm09IldpbmRvd3MiCiAgIEdJTVA6VGltZVN0YW1wPSIxNzA4NTI4MDQ5NDU5OTE2IgogICBHSU1QOlZlcnNpb249IjIuMTAuMzQiCiAgIHRpZmY6T3JpZW50YXRpb249IjEiCiAgIHhtcDpDcmVhdG9yVG9vbD0iR0lNUCAyLjEwIgogICB4bXA6TWV0YWRhdGFEYXRlPSIyMDI0OjAyOjIxVDEwOjA3OjI5LTA1OjAwIgogICB4bXA6TW9kaWZ5RGF0ZT0iMjAyNDowMjoyMVQxMDowNzoyOS0wNTowMCI+CiAgIDx4bXBNTTpIaXN0b3J5PgogICAgPHJkZjpTZXE+CiAgICAgPHJkZjpsaQogICAgICBzdEV2dDphY3Rpb249InNhdmVkIgogICAgICBzdEV2dDpjaGFuZ2VkPSIvIgogICAgICBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmMyNjFjYTQ4LTBhMGYtNDE2NS05MmI2LWY4NjM1NTdjYmFhMiIKICAgICAgc3RFdnQ6c29mdHdhcmVBZ2VudD0iR2ltcCAyLjEwIChXaW5kb3dzKSIKICAgICAgc3RFdnQ6d2hlbj0iMjAyNC0wMi0yMVQxMDowNzoyOSIvPgogICAgPC9yZGY6U2VxPgogICA8L3htcE1NOkhpc3Rvcnk+CiAgPC9yZGY6RGVzY3JpcHRpb24+CiA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgCjw/eHBhY2tldCBlbmQ9InciPz5VMaOoAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAA9hAAAPYQGoP6dpAAAAB3RJTUUH6AIVDwcdDN96oQAAAItJREFUSMdjYBjqgBFd4IdI0X8Ym+NNHyMuMUJ6YICJ1j6g2AJk12PjM1HTcGziTIQ0EGMIPnlGQgqxAfSIHNBIZkG2kZwkSvNURLQFpEQwSTl5+EQyLSKYfpFMK9dT5IMfIkX/8RUj8KKC2gUdempjpCR88VkCC1ZGSiMRmyXIccZIjZQyoBmN5gAAbnJqBKaDOJ4AAAAASUVORK5CYII=) !important; | |||
} | |||
div.dtsp-topRow button.dtsp-collapseButton span.dtsp-caret, div.dtsp-topRow button.clearButton { | |||
color: var(--tmw-pink) !important; | |||
font-weight: 900; | |||
} | |||
table.dataTable thead>tr>th.dt-orderable-desc span.dt-column-order:after, | |||
table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order:after, | |||
table.dataTable thead>tr>td.dt-orderable-desc span.dt-column-order:after, | |||
table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order:after, | |||
table.dataTable thead>tr>th.dt-orderable-asc span.dt-column-order:before, | |||
table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order:before, | |||
table.dataTable thead>tr>td.dt-orderable-asc span.dt-column-order:before, | |||
table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order:before { | |||
color: var(--tmw-blue); | |||
left: 7px !important; | |||
} | |||
div.dtsp-topRow div.dtsp-subRow1 input { | |||
padding-right: 3em !important; | |||
} | |||
div.dtsp-panesContainer button.dtsp-clearAll:hover, div.dtsp-panesContainer button.dtsp-collapseAll:hover, div.dtsp-panesContainer button.dtsp-showAll:hover { | |||
background-color: inherit !important; | |||
} | } | ||
div.dtsp-searchPane input.dtsp-paneInputButton:hover, div.dtsp-searchPane button.dtsp-paneButton:hover { | |||
. | background-color: inherit !important; | ||
border-radius: none !important; | |||
} | } | ||
div.dtsp-searchPane div.dtsp-topRow.dtsp-bordered:hover { | |||
. | background: var(--tmw-bg-gradient-dark) !important; | ||
} | } | ||
div.dtsp-searchPane div.dtsp-topRow.dtsp-bordered { | |||
. | border: var(--tmw-pink-border) !important; | ||
border-radius: var(--tmw-default-radius) !important; | |||
box-shadow: var(--tmw-pink-shadow); | |||
background: var(--tmw-bg-gradient-dark); | |||
} | } | ||
div.dtsp-searchPane div.dtsp-topRow div.dtsp-searchCont input.dtsp-search { | |||
. | padding-left: 0.7em !important; | ||
} | } | ||
/*Page specific modifications*/ | |||
.page- | /*Fade in animation for home page*/ | ||
/* | |||
.page-Home #content { | |||
animation: fadeInAnimation cubic-bezier(0.4, 0, 1, 1) 5s; | |||
animation-iteration-count: 1; | |||
animation-fill-mode: forwards; | |||
} | } | ||
*/ | |||
.page-Home .firstHeading { | |||
display: none !important; | |||
} | } | ||
@keyframes fadeInAnimation { | |||
0% { | |||
opacity: 0; | |||
} | |||
100% { | |||
opacity: 1; | |||
} | |||
} | |||
/*Hide categories on home page*/ | |||
.page-Home #catlinks { | |||
display: none !important; | |||
} | |||
/*Home page logo modifications*/ | |||
.wrapper { | |||
height: 150px; | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
} | |||
.wrapper img { | |||
aspect-ratio: 347 / 145; | |||
max-width: 347px; | |||
width: 88% !important; | |||
height: revert !important; | |||
} | |||
.glow-logo { | |||
opacity: 0. | position: absolute; | ||
animation: imageBlinker 10s ease-in-out; | |||
/*opacity: 0.6;*/ | |||
filter: drop-shadow(0px 3px 20px rgb(192 14 170 / 85%)); | |||
} | |||
.sign-logo { | |||
position: absolute; | |||
filter: brightness(0.5); | |||
} | |||
@keyframes imageBlinker { | |||
0% { | |||
opacity: 0; | |||
} | |||
10% { | |||
opacity: 0.6; | |||
} | |||
15% { | |||
opacity: 0; | |||
} | |||
20% { | |||
opacity: 0.6; | |||
} | |||
25% { | |||
opacity: 0; | |||
} | |||
30% { | |||
opacity: 0.6; | |||
} | |||
35% { | |||
opacity: 0.6; | |||
} | |||
40% { | |||
opacity: 0.6; | |||
} | |||
45% { | |||
opacity: 0; | |||
} | |||
50% { | |||
opacity: 0.6; | |||
} | |||
55% { | |||
opacity: 0.6; | |||
} | |||
60% { | |||
opacity: 0; | |||
} | |||
65% { | |||
opacity: 0.6; | |||
} | |||
70% { | |||
opacity: 0; | |||
} | |||
75% { | |||
opacity: 0.6; | |||
} | |||
80% { | |||
opacity: 0.6; | |||
} | |||
85% { | |||
opacity: 0.6; | |||
} | |||
90% { | |||
opacity: 0; | |||
} | |||
92% { | |||
opacity: 0.6; | |||
} | |||
96% { | |||
opacity: 0; | |||
} | |||
100% { | |||
opacity: 0.4; | |||
} | |||
} | |||
/* Front page logo animation - templatestyles rejected some of the rules, so placing here */ | |||
#monitor-out { | |||
position: relative; | |||
z-index: 1; | |||
width: 45%; | |||
float: left; | |||
margin: 0 0.5em 0.5em 0; | |||
padding: 0 1.5em 1em 0; | |||
} | |||
#monitor { | |||
position: relative; | |||
width: 100%; | |||
max-width: 400px; | |||
aspect-ratio: 450 / 440; | |||
border-radius: 1%; | |||
background: url(/images/b/bf/Monitor.png); | |||
background-size: contain; | |||
background-repeat: no-repeat; | |||
margin: 0 auto; | |||
} | |||
@media screen and (max-width: 850px) { | |||
#monitor-out { | |||
width: 100%; | |||
margin: 0; | |||
padding-bottom: 1em; | |||
} | |||
} | |||
text- | .inner { | ||
display: flex; | |||
container-type: inline-size; | |||
position: relative; | |||
background-image: radial-gradient(hsl(223, 100%, 55%), black 120%); | |||
width: 100%; | |||
aspect-ratio: 450 / 440; | |||
border-radius: 3%; | |||
z-index: -1; | |||
} | |||
.inner::after { | |||
content: " "; | |||
display: block; | |||
position: absolute; | |||
top: 0; | |||
left: 0; | |||
bottom: 0; | |||
right: 0; | |||
background: var(--tmw-after-gradient); | |||
opacity: 0; | |||
z-index: 2; | |||
animation: flicker 0.15s infinite; | |||
} | |||
.scan-line { | |||
display: none; | |||
top: -100px; | |||
left: 0; | |||
right: 0; | |||
width: 100%; | |||
height: 100px; | |||
z-index: 8; | |||
background: linear-gradient( | |||
0deg, | |||
rgba(0, 0, 0, 0) 0%, | |||
rgba(255, 255, 255, 0.2) 10%, | |||
rgba(0, 0, 0, 0.1) 100% | |||
); | |||
opacity: 0.1; | |||
position: absolute; | |||
animation: scan-line 8s linear infinite; | |||
} | |||
.vline { | |||
top: 0; | |||
left: 0; | |||
right: 0; | |||
width: 100%; | |||
height: 100%; | |||
position: absolute; | |||
z-index: 4100; | |||
} | |||
.vline::before { | |||
content: ""; | |||
position: absolute; | |||
top: 0; | |||
width: 100%; | |||
height: 4px; | |||
background: hsl(0, 0%, 100%); | |||
background: -webkit-linear-gradient( | |||
to bottom, | |||
rgba(255, 0, 0, 0) 0%, | |||
rgba(255, 250, 250, 1) 50%, | |||
rgba(255, 255, 255, 0.98) 51%, | |||
rgba(255, 0, 0, 0) 100% | |||
); | |||
background: linear-gradient( | |||
to bottom, | |||
rgba(255, 0, 0, 0) 0%, | |||
rgba(255, 250, 250, 1) 50%, | |||
rgba(255, 255, 255, 0.98) 51%, | |||
rgba(255, 0, 0, 0) 100% | |||
); | |||
opacity: 0.2; | |||
animation: vline 8s linear infinite; | |||
} | |||
.vline::after { | |||
content: ""; | |||
top: 0; | |||
left: 0; | |||
right: 0; | |||
width: 100%; | |||
height: 4px; | |||
position: absolute; | |||
box-shadow: 0 2px 6px rgba(25, 25, 25, 0.2), | |||
inset 0 1px rgba(50, 50, 50, 0.1), inset 0 3px rgba(50, 50, 50, 0.05), | |||
inset 0 3px 8px rgba(64, 64, 64, 0.05), | |||
inset 0 -5px 10px rgba(25, 25, 25, 0.1); | |||
} | |||
.terminal { | |||
font-family: "VT323"; | |||
text-align: left; | |||
position: relative; | |||
margin: 0 auto; | |||
} | |||
.terminal h1 { | |||
font-family: "VT323" !important; | |||
font-size: 7cqi !important; | |||
top: 10%; | |||
border-right: 3px solid var(--tmw-pink); | |||
border-bottom: none; | |||
position: relative; | |||
overflow: hidden; | |||
white-space: nowrap; | |||
letter-spacing: 2px; | |||
box-sizing: border-box; | |||
animation: typing 8s steps(12, end) forwards, | |||
blink-cursor 0.8s step-end infinite; | |||
margin: 1.25em 0 0.5em !important; | |||
} | |||
.terminal h1::before, | |||
.terminal h1::after { | |||
content: attr(title); | |||
position: absolute; | |||
left: 0; | |||
} | |||
.computer-logo { | |||
position: absolute; | |||
left: 17%; | |||
top: 38%; | |||
width: 65%; | |||
height: 100%; | |||
background-image: url(/logo.svg); | |||
background-repeat: no-repeat; | |||
background-size: contain; | |||
animation: logo 8s linear; | |||
} | |||
@keyframes vline { | |||
0% { | |||
top: 0; | |||
opacity: 0; | |||
} | |||
79% { | |||
top: 0; | |||
opacity: 0; | |||
} | |||
80% { | |||
top: 0; | |||
opacity: 0.2; | |||
} | |||
99% { | |||
top: 100%; | |||
opacity: 0.2; | |||
} | |||
100% { | |||
top: 100%; | |||
opacity: 0; | |||
} | |||
} | |||
@keyframes flicker { | |||
0% { | |||
opacity: 0.27861; | |||
} | |||
5% { | |||
opacity: 0.34769; | |||
} | |||
10% { | |||
opacity: 0.23604; | |||
} | |||
15% { | |||
opacity: 0.90626; | |||
} | |||
20% { | |||
opacity: 0.18128; | |||
} | |||
25% { | |||
opacity: 0.83891; | |||
} | |||
30% { | |||
opacity: 0.65583; | |||
} | |||
35% { | |||
opacity: 0.67807; | |||
} | |||
40% { | |||
opacity: 0.26559; | |||
} | |||
45% { | |||
opacity: 0.84693; | |||
} | |||
50% { | |||
opacity: 0.96019; | |||
} | |||
55% { | |||
opacity: 0.08594; | |||
} | |||
60% { | |||
opacity: 0.20313; | |||
} | |||
65% { | |||
opacity: 0.71988; | |||
} | |||
70% { | |||
opacity: 0.53455; | |||
} | |||
75% { | |||
opacity: 0.37288; | |||
} | |||
80% { | |||
opacity: 0.71428; | |||
} | |||
85% { | |||
opacity: 0.70419; | |||
} | |||
90% { | |||
opacity: 0.7003; | |||
} | |||
95% { | |||
opacity: 0.36108; | |||
} | |||
100% { | |||
opacity: 0.24387; | |||
} | |||
} | |||
@keyframes scan-line { | |||
0% { | |||
top: -100px; | |||
} | |||
80% { | |||
top: -100px; | |||
} | |||
100% { | |||
top: calc(100% - 50px); | |||
} | |||
} | |||
@keyframes blink-cursor { | |||
0% { | |||
border-color: transparent; | |||
} | |||
50% { | |||
border-color: var(--tmw-pink); | |||
} | |||
} | |||
@keyframes typing { | |||
0% { | |||
width: 0; | |||
} | |||
20% { | |||
width: 100%; | |||
content: attr(title); | |||
} | |||
100% { | |||
width: 100%; | |||
content: attr(title); | |||
} | |||
} | |||
@keyframes logo { | |||
0% { | |||
opacity: 0; | |||
} | |||
99% { | |||
opacity: 0; | |||
} | |||
100% { | |||
opacity: 1; | |||
} | |||
} | |||
/*Description lists like one on news section on home page*/ | |||
.mw-body dt { | |||
font-family: inherit; | |||
} | |||
/*Hidden image used for Floppy Disk articles on home page*/ | |||
.hidden-image { | |||
display: none; | |||
} | |||
/*Prevent excess space between words and image in floppy section*/ | |||
.floppy-outer { | |||
container: floppy / inline-size; | |||
} | |||
#floppy1 .thumb { | |||
float: right; | |||
} | |||
@container floppy (max-width: 450px) { | |||
#floppy1 .thumb { | |||
float: none; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
} | |||
/*Used in conjuction with templatestyles for Did You Know section to make list always fill container*/ | |||
.factlist { | |||
height: -webkit-fill-available; | |||
height: -moz-available; | |||
} | |||
/*Polaroid gallery modifications - used on Lost Boy's Polaroids poge and home page*/ | |||
#polaroid-gallery .thumbimage { | |||
border: solid 1px #eaecf0 !important; | |||
border-radius: 0; | |||
box-shadow: none; | |||
padding: 0; | |||
aspect-ratio: 1 / 1; | |||
object-fit: cover; | |||
width: 100%; | |||
} | |||
#polaroid-gallery .thumbinner { | |||
background-color: hsl(0, 0%, 90%); | |||
border-top: 1px solid hsl(0, 0%, 100%); | |||
border-left: 1px solid hsl(0, 0%, 100%); | |||
border-right: 1px solid hsl(0, 0%, 47%); | |||
border-bottom: 1px solid hsl(0, 0%, 47%); | |||
box-shadow: 0 4px 15px 4px rgb(0 0 0 / 30%); | |||
transform-origin: center center; | |||
width: 250px !important; | |||
padding: 0.75em; | |||
} | |||
.page-Helvetica { | |||
font-family: Helvetica !important; | |||
} | |||
.page-Helvetica :is(h1, h2, h3, h4, h5, h6) { | |||
font-family: Helvetica !important; | |||
} | |||
/*Reduce margin on discography sublists*/ | |||
.page-The_Midnight_discography ul ul { | |||
margin-top: 0; | |||
} | |||
/*Used for gallery on List of The Midnight people page*/ | |||
#people-gallery { | |||
display: flex; | |||
justify-content: center; | |||
align-items: center; | |||
gap: 1em; | |||
flex-wrap: wrap; | |||
} | |||
/*Extra hacks*/ | |||
/*Center object in space available to it*/ | |||
.center-avail-space { | |||
width: -webkit-fill-available; | |||
width: -moz-available; | |||
display: flex; | |||
justify-content: center; | |||
} | |||
/*extra spacing to grid container*/ | |||
.extra-grid-spacing { | |||
grid-column-gap: 1em; | |||
} | |||
/*Forms*/ | |||
.ci_form { | |||
border: var(--tmw-pink-border) !important; | |||
border-radius: var(--tmw-default-radius); | |||
box-shadow: var(--tmw-pink-shadow); | |||
background: var(--tmw-bg-gradient-dark) !important; | |||
max-width: none !important; | |||
margin: auto; | |||
} | |||
.ci_form_section_inputs_row input, .ci_form_section_inputs_row select, .ci_form_section_inputs_row textarea, | |||
.ci_form_section_inputs_row .input, .select2-container--default .select2-selection--single { | |||
border: var(--tmw-blue-border) !important; | |||
border-radius: var(--tmw-default-radius) !important; | |||
box-shadow: var(--tmw-blue-shadow); | |||
background: var(--tmw-bg-gradient) !important; | |||
color: var(--tmw-white); | |||
padding-left: 1em !important; | |||
} | |||
/*Cover flow*/ | |||
.cards { | |||
list-style: none; | |||
white-space: nowrap; | |||
overflow: scroll; | |||
margin: 0 !important; | |||
min-height: calc(var(--cover-size)* 2); | |||
position: relative; | |||
/* max-width: 90vw; */ | |||
padding: calc(var(--cover-size) / 3* 2) 0 !important; | |||
} | |||
.cards:not(.active) { | |||
scroll-snap-type: x mandatory; | |||
} | |||
.cards li { | |||
display: inline-block; | |||
width: var(--cover-size); | |||
aspect-ratio: 1; | |||
scroll-snap-align: center; | |||
view-timeline-name: --li-in-and-out-of-view; | |||
view-timeline-axis: inline; | |||
animation: linear adjust-z-index both; | |||
animation-timeline: --li-in-and-out-of-view; | |||
perspective: 40em; | |||
position: relative; | |||
z-index: 1; | |||
will-change: z-index; | |||
user-select: none; | |||
} | |||
.cards li:first-of-type { | |||
margin-left: calc(50% - (var(--cover-size) / 2)); | |||
} | |||
.cards li:last-of-type { | |||
margin-right: calc(50% - (var(--cover-size) / 2)); | |||
} | |||
.cards li figure { | |||
animation: linear rotate-cover both; | |||
animation-timeline: --li-in-and-out-of-view; | |||
-webkit-box-reflect: below 0.5em linear-gradient(rgb(0 0 0 / 0), rgb(0 0 0 / 0.25)); | |||
} | |||
.cards li img { | |||
width: 100%; | |||
height: auto; | |||
} | |||
/* | |||
.cards li > img { | |||
/*Link an animation to the established view-timeline (of the parent li) and have it run during the contain phase | |||
animation: linear rotate-cover both; | |||
animation-timeline: --li-in-and-out-of-view; | |||
}*/ | |||
.skin-timeless #cover-flow { | |||
display: none; | |||
} | } | ||
@keyframes adjust-z-index { | |||
0% { | |||
z-index: 1; | |||
} | |||
50% { | |||
z-index: 100; /* When at the center, be on top */ | |||
} | |||
100% { | |||
z-index: 1; | |||
} | |||
} | } | ||
@keyframes rotate-cover { | |||
0% { | |||
transform: translateX(-100%) rotateY(-45deg); | |||
} | |||
35% { | |||
transform: translateX(0) rotateY(-45deg); | |||
} | |||
50% { | |||
transform: rotateY(0deg) translateZ(1em) scale(1.5); | |||
} | |||
65% { | |||
transform: translateX(0) rotateY(45deg); | |||
} | |||
100% { | |||
transform: translateX(100%) rotateY(45deg); | |||
} | |||
} | } | ||
::-webkit-scrollbar-corner { | |||
background: rgba(0,0,0,0); | |||
} | } |
Latest revision as of 00:21, 13 April 2024
/* All CSS here will be loaded for users of the Timeless skin */ /* Fonts */ @import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap"); @import url("https://fonts.googleapis.com/css?family=VT323&display=swap"); @import url('https://fonts.googleapis.com/css2?family=Reddit+Mono:wght@200..900&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap'); /*Variables*/ :root { --tmw-pink: hsl(337,99%,50%); --tmw-purple: rgb(192 14 171 / 75%); --tmw-blue: hsl(194, 100%, 50%); --tmw-white: #e8eaed; --tmw-bg-gradient: radial-gradient(hsl(205, 88%, 12%), black 200%); --tmw-bg-gradient-dark: radial-gradient(hsl(208, 100%, 12%), black 100%); --tmw-after-gradient: repeating-linear-gradient(0deg, rgba(0, 128, 255, 0), rgba(0, 128, 255, 0.1) 4px, rgba(0, 128, 255, 0.1) 4px, rgba(0, 128, 255, 0) 7px); --tmw-table-gradient: radial-gradient(hsl(205, 100%, 6%), black 200%); --tmw-blue-shadow: 0 0 5px var(--tmw-blue), inset 0 0 5px var(--tmw-blue); --tmw-pink-shadow: 0 0 14px var(--tmw-purple), inset 0 0 14px var(--tmw-pink); --tmw-blue-border: 1px solid var(--tmw-blue); --tmw-pink-border: 1px solid var(--tmw-pink); --tmw-pink-border-figure: 2px solid var(--tmw-pink); --tmw-default-radius: 8px; --cover-size: 15rem; } /*Generic style templates*/ .tmw-pink-box { border: var(--tmw-pink-border); border-radius: var(--tmw-default-radius); background: var(--tmw-bg-gradient-dark); box-shadow: var(--tmw-pink-shadow); padding: 1em; } .tmw-blue-box { border: var(--tmw-blue-border); border-radius: var(--tmw-default-radius); background: var(--tmw-bg-gradient-dark); box-shadow: var(--tmw-blue-shadow); padding: 1em; } /* Scrollbar/selection pseudoelement modifications */ ::selection { background: var(--tmw-pink); } ::-webkit-scrollbar { width: 7px; height: 7px; } ::-webkit-scrollbar-thumb { background-color: var(--tmw-pink); border-radius: var(--tmw-default-radius); border: 1px solid transparent; background-clip: content-box; } ::-webkit-scrollbar-track { margin: 10px; } .mw-mmv-lightbox-open::-webkit-scrollbar { background: inherit; } /*General body/interface modifications*/ html { background: var(--tmw-bg-gradient-dark); } #mw-header-container { background: inherit; position: relative; } #mw-header-hack { display: none; } #mw-content-container { background: inherit; border-bottom: none !important; margin-top: inherit; } #mw-content { background: var(--tmw-bg-gradient); border: var(--tmw-blue-border); border-radius: var(--tmw-default-radius); box-shadow: var(--tmw-blue-shadow); anchor-name: --menu; } #mw-header-nav-hack { display: none; } #personal-inner { position: fixed; anchor-default: --menu; } body { background: var(--tmw-bg-gradient-dark); /*font: 0.8125rem/1.25rem monospace;*/ font-family: "Roboto Mono", monospace; font-optical-sizing: auto; font-style: normal; line-height: 1.25rem; font-size: 0.75rem; text-shadow: 0 0 5px var(--tmw-pink); color: var(--tmw-white) !important; } body::after { content: ""; position: fixed; top: 0; left: 0; margin: 0; width: 100vw; height: 100vh; background: var(--tmw-after-gradient); pointer-events: none; } .mw-body { word-wrap: unset; } #bodyContentOuter { z-index: unset; } p, li, dd { text-wrap: pretty; } /* .mw-body p { text-align: justify; text-align-last: left; white-space: pre-line; } */ .poem p { letter-spacing: -1px; } p:empty { display: none; } /*Buttons styling*/ .oo-ui-buttonElement-button { border: 0 !important; box-shadow: none !important; background: inherit !important; color: var(--tmw-pink) !important; } .oo-ui-buttonElement-button:hover { color: var(--tmw-blue) !important; } /*Source editor*/ .editOptions { background: inherit !important; border: 0 !important; color: inherit; } .oo-ui-messageDialog-message { color: inherit; } .oo-ui-messageDialog-title { color: inherit; } .oo-ui-messageDialog-content > .oo-ui-window-foot { outline: var(--tmw-blue-border); } .oo-ui-messageDialog-actions-horizontal .oo-ui-actionWidget { border-right: var(--tmw-blue-border); } /*Popup windows*/ .oo-ui-window-frame { background: var(--tmw-bg-gradient) !important; border-radius: var(--tmw-default-radius) !important; border: var(--tmw-blue-border) !important; box-shadow: var(--tmw-blue-shadow) !important; } .oo-ui-window-frame::after { content: ""; position: absolute; top: 0; left: 0; margin: 0; width: 100%; height: 100%; background: var(--tmw-after-gradient); pointer-events: none; } .oo-ui-icon-close, .mw-ui-icon-close:before { background-image: url(/images/e/ee/Pink-x.svg); } .oo-ui-processDialog-content .oo-ui-window-head, .oo-ui-processDialog-content .oo-ui-window-foot { outline: none; } .oo-ui-processDialog-content .oo-ui-window-head { border-bottom: var(--tmw-blue-border); } .ve-ui-mwTwoPaneTransclusionDialogLayout > .oo-ui-menuLayout-menu { border-right: var(--tmw-blue-border); } .ve-ui-mwTemplatePage-description { color: var(--tmw-white); } .ve-ui-mwTransclusionOutlineTemplateWidget-sticky { background: inherit; position: relative; } .ve-ui-overlay { font-family: inherit; } .ve-ui-expandableContent-collapsible { height: unset !important; } .ve-ui-expandableContent-container { display: none; } .ve-ui-mwParameterPage-doc-required, .ve-ui-mwParameterPage-doc-deprecated, .ve-ui-mwParameterPage-inlineDescription .ve-ui-mwParameterPage-doc-example { color: inherit; } .ve-ui-mwSaveDialog-license { color: inherit; } .ve-ui-mwSaveDialog-options { background: inherit; border: 0; } /*Messages (such as notices on file upload page)*/ .oo-ui-messageWidget.oo-ui-messageWidget-block { background: inherit !important; border: 0; } /*Drop files here target on file upload*/ .oo-ui-selectFileWidget-dropTarget { background: var(--tmw-bg-gradient-dark); border: var(--tmw-pink-border); box-shadow: var(--tmw-pink-shadow); border-radius: var(--tmw-default-radius); } /*Initial prompt on file upload*/ .oo-ui-selectFileWidget.oo-ui-widget-enabled.oo-ui-selectFileWidget-dropTarget { background: var(--tmw-bg-gradient-dark); border: var(--tmw-pink-border) !important; box-shadow: var(--tmw-pink-shadow); border-radius: var(--tmw-default-radius); } /*Thumbnails on copyright attribution page*/ #mwe-upwiz-deeds-thumbnails { background: inherit; } .mwe-upwiz-file.odd .mwe-upwiz-visible-file { background: inherit; } /*Search options for Find and Replace*/ .ext-replacetext-searchoptions { background: inherit; } /*Screen effect*/ @media (min-width: 1100px) { #mw-content { height: calc(100vh - 145px); overflow-y: auto; } } @media (850px < width < 1100px) { #mw-content { height: calc(100vh - 130px); overflow-y: auto; } } @media (max-width: 850px) { #mw-content-block { background: inherit; } #bodyContent { padding: 0 1em; } #content-bottom-stuff { display: none; } #mw-content { height: calc(100dvh - 96px); overflow-y: auto; } } /*Fix visual editor toolbar with screen effect*/ .ve-init-mw-desktopArticleTarget { container-type: inline-size; } .ve-init-mw-desktopArticleTarget-toolbar { position: sticky; width: 100cqw; top: 1cqh; z-index: 2; } /*Remove Atom RSS link on history pages*/ #feedlinks { display: none; } /*Footer/category list modifications*/ /* Remove footer */ #mw-footer-container { display: none; } /*Always show categories as links below article, never on sidebar*/ #catlinks { display: block !important; } #catlinks-sidebar { display: none; } /*Link styling*/ a { color: var(--tmw-blue); } a:hover { color: var(--tmw-blue) !important; } a:visited { color: var(--tmw-blue); } a.external { word-wrap: break-word; } /*Links at top of page - Page, discussion, edit, edit source, history*/ .tools-inline li.selected a { color: var(--tmw-blue); } .tools-inline li.selected { border-bottom: none; } .tools-inline li { border-bottom: none; } /*Settings gear icon*/ .oo-ui-icon-settings, .mw-ui-icon-settings:before { background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fd184e' d='M20 14.5v-2.9l-1.8-.3c-.1-.4-.3-.8-.6-1.4l1.1-1.5-2.1-2.1-1.5 1.1c-.5-.3-1-.5-1.4-.6L13.5 5h-2.9l-.3 1.8c-.5.1-.9.3-1.4.6L7.4 6.3 5.3 8.4l1 1.5c-.3.5-.4.9-.6 1.4l-1.7.2v2.9l1.8.3c.1.5.3.9.6 1.4l-1 1.5 2.1 2.1 1.5-1c.4.2.9.4 1.4.6l.3 1.8h3l.3-1.8c.5-.1.9-.3 1.4-.6l1.5 1.1 2.1-2.1-1.1-1.5c.3-.5.5-1 .6-1.4l1.5-.3zM12 16c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3z'/%3E%3C/svg%3E") !important; } .mw-collapsible-toggle-default .mw-collapsible-text, .mw-collapsible-toggle-default:active .mw-collapsible-text { color: var(--tmw-blue); } .mw-collapsible-toggle-default::before, .mw-collapsible-toggle-default::after { color: var(--tmw-white); } /*Sidebar/Navigation modifications*/ /*One-sided navigation menu*/ @media (min-width: 1100px) { #mw-content-block { display: block; } #mw-content, #content-bottom-stuff { margin-left: 14em; margin-right: 1em; } #mw-content { margin-top: 1em; } #mw-content-wrapper { float: right; margin-left: -14em; width: 100%; } #mw-related-navigation { width: 14em; padding: 0 1em 0 0; } /*fixed sidebar*/ #p-banner { display: none !important; } #mw-header-container { z-index: 2; } #mw-site-navigation { position: fixed; top: 0; z-index: 3; } #mw-site-navigation .sidebar-chunk { margin: 0; } #mw-related-navigation { position: fixed; top: 29em; z-index: 3; } #site-tools { margin-top: -25px !important; } #page-tools { margin: 0 !important; } #p-templatescript-0-label { display: none !important; } #p-templatescript-0 .mw-portlet-body { position: fixed; top: 20.5rem; } } @media screen and (max-width: 1099px) { .sidebar-inner { background: var(--tmw-bg-gradient) !important; border: var(--tmw-blue-border) !important; border-radius: var(--tmw-default-radius) !important; box-shadow: var(--tmw-blue-shadow) !important; } .sidebar-inner::after { content: "" !important; position: inherit !important; top: 0 !important; left: 0 !important; margin: 0 !important; width: 100% !important; height: 100% !important; background: var(--tmw-after-gradient) !important; pointer-events: none !important; border-bottom: none !important; border-left: none !important; border-right: none !important; } .sidebar-inner::before { content: none !important; } #mw-site-navigation .sidebar-chunk h2 span:before, #mw-site-navigation .sidebar-chunk h2 span:after { content: none !important; } #p-banner { position: relative; } } @media (850px < width < 1100px) { #p-banner { left: -0.8em; } #mw-content-container { margin-top: -2.7em; } .sidebar-inner { top: 2.5em !important; } #content-bottom-stuff { display: none; } } @media screen and (max-width: 850px) { #user-tools h2, .sidebar-chunk h2 { top: 0.5em; } #site-navigation h2 { right: 3em; left: initial; background-size: 85%; } #site-tools { display: none; } #p-logo-text { left: initial; } #site-navigation .sidebar-inner { right: 0; left: initial; } } #t-cite { display: none; } #p-pagemisc { display: none; } #p-Quick_links span { white-space: nowrap; } .sidebar-chunk { background: inherit !important; border: 0 !important; box-shadow: none !important; } #mw-site-navigation h3, #mw-related-navigation h3 { text-shadow: 2px 0 var(--tmw-purple); } .sidebar-chunk h3 { font-size: 0.9em !important; border-bottom: var(--tmw-blue-border) !important; } /*Logo top left modifications*/ /*Make entire header logo linkable*/ #p-logo-text { max-width: 18em !important; } #p-logo img, #p-banner img { filter: drop-shadow(0px 3px 1px var(--tmw-purple)); } /* Search modifications*/ #simpleSearch { border: var(--tmw-blue-border); border-radius: var(--tmw-default-radius); box-shadow: var(--tmw-blue-shadow); background: var(--tmw-bg-gradient); } #simpleSearch::after { content: ""; position: absolute; top: 0; left: 0; margin: 0; width: 100%; height: 100%; background: var(--tmw-after-gradient); pointer-events: none; } #searchInput { color: var(--tmw-white); border-radius: var(--tmw-default-radius); } ::placeholder { color: var(--tmw-white); } .suggestions { border-radius: var(--tmw-default-radius); border: var(--tmw-blue-border); box-shadow: var(--tmw-blue-shadow); } @media (min-width: 1100px) { .suggestions { margin-top: 12px; } } .suggestions:after { content: ""; position: absolute; top: 0; left: 0; margin: 0; width: 100%; height: 100%; background: var(--tmw-after-gradient); pointer-events: none; } .suggestions-results { background-image: var(--tmw-bg-gradient); border: 0; } #searchInput:focus { outline: none; border: 3px solid var(--tmw-pink); border-radius: var(--tmw-default-radius); box-shadow: var(--tmw-pink-shadow); } .suggestions .suggestions-result { color: var(--tmw-white); } .suggestions .suggestions-results { border: 0; } .suggestions-special { background-image: var(--tmw-bg-gradient); border-left: 0 !important; border-right: 0 !important; border-bottom: 0 !important; border-top: var(--tmw-blue-border) !important; box-shadow: var(--tmw-blue-shadow); } .suggestions-special .special-label, .suggestions-special .special-query { color: var(--tmw-white); } .suggestions .suggestions-result-current { background-image: var(--tmw-bg-gradient-dark); } #searchButton, #mw-searchButton { background-size: 25px; } /*Search page search bar*/ .mw-search-form-wrapper input { border: var(--tmw-blue-border) !important; border-radius: var(--tmw-default-radius) !important; box-shadow: var(--tmw-blue-shadow) !important; background: var(--tmw-bg-gradient) !important; color: var(--tmw-white) !important; } .mw-search-form-wrapper input::after { content: ""; position: absolute; top: 0; left: 0; margin: 0; width: 100%; height: 100%; background: var(--tmw-after-gradient); pointer-events: none; } .search-types .current a { color: var(--tmw-pink); } .oo-ui-icon-search, .mw-ui-icon-search:before { background-image: url(/skins/Timeless/resources/images/search-ltr.svg?bb2cf); } .oo-ui-icon-search { opacity: 1 !important; } #mw-indicator-mw-helplink a { background-image: url(/images/c/cc/HelpNotice.svg); } .oo-ui-indicator-clear { background-image: url(/images/1/10/Clear.svg); } .oo-ui-actionFieldLayout .oo-ui-actionFieldLayout-button .oo-ui-buttonElement-framed > .oo-ui-buttonElement-button { margin-left: 1em; } /*Username dropdown modifications*/ #personal .dropdown, .mw-mmv-dialog { background: var(--tmw-bg-gradient); border: var(--tmw-blue-border); border-radius: var(--tmw-default-radius); box-shadow: var(--tmw-blue-shadow); } #personal .dropdown::after { content: ""; position: inherit; top: 0; left: 0; margin: 0; width: 100%; height: 100%; background: var(--tmw-after-gradient); pointer-events: none; border-bottom: none; border-left: none; border-right: none; } #personal .dropdown::before { content: ""; border-bottom: none; border-left: none; border-right: none; } #personal h2 { background-size: 25px; } @media screen and (min-width: 1100px) { #personal-inner { margin-top: 12px !important; right: -0.6em !important; } #user-tools { min-width: 16em; } } @media screen and (min-width: 851px) { #personal { bottom: 0.5em; } #mw-header-container { padding: 1em 0 0; } } /*Template doc pages*/ .mw-parser-output .template-documentation { background: inherit !important; border: 0 !important; } .mw-parser-output .ombox { background: inherit !important; } /*Images/Captions modifications*/ .thumbcaption { font-weight: bold; text-wrap: balance; text-align: center !important; } .thumbinner > a { display: flex; justify-content: center; } .figure > a { display: flex; justify-content: center; } .thumbimage { border: var(--tmw-pink-border) !important; border-radius: var(--tmw-default-radius); box-shadow: var(--tmw-pink-shadow); padding: 1px; } figcaption { font-weight: bold !important; text-wrap: balance; text-align: center !important; border: 0 !important; border-top: 0 !important; border-width: 0 !important; box-shadow: none !important; background-color: revert !important; padding: 0.75em !important; } figure { border: 0 !important; background-color: revert !important; border-collapse: separate !important; } figure[typeof~='mw:File/Thumb'] > :not(figcaption) .mw-file-element, figure[typeof~='mw:File/Frame'] > :not(figcaption) .mw-file-element { margin: 0 !important; border: var(--tmw-pink-border-figure) !important; border-radius: var(--tmw-default-radius); box-shadow: var(--tmw-pink-shadow); } .mw-content-ltr figure[typeof~='mw:File/Thumb'] > .mw-file-description::after, .mw-content-ltr figure[typeof~='mw:File/Thumb'] > .mw-file-magnify::after { display: none; } .mw-content-ltr figure[typeof~='mw:File/Thumb'] > figcaption::before { display: none; } .borderless-img-with-caption .thumbimage { border: 0 !important; box-shadow: none; } .thumbinner { position: relative; z-index: 95; background: none; border: 0; border-width: 0; } .mw-content-ltr .magnify { display: none; } @media screen and (max-width: 850px) { .thumbinner { max-width: 325px; } .thumb { margin: initial; } figure[typeof~='mw:File/Thumb'] > :not(figcaption) .mw-file-element, figure[typeof~='mw:File/Frame'] > :not(figcaption) .mw-file-element { margin: 0 auto !important; } } /*File pages modifications*/ kbd { background: transparent !important; font-family: inherit !important; } ul#filetoc { background: transparent; border: none; padding: 0; display: inline; } .imbox-license { border: 0 !important; background-color: transparent !important; } .cp-wrapper { border: var(--tmw-pink-border); border-radius: var(--tmw-default-radius); padding: 1em; box-shadow: var(--tmw-pink-shadow); background-image: var(--tmw-bg-gradient-dark); } .filehistory td[dir="ltr"] { overflow-wrap: anywhere; } /*Infobox modifications*/ .infobox { box-shadow: var(--tmw-pink-shadow); border: var(--tmw-pink-border); border-spacing: 3px; background-image: var(--tmw-bg-gradient-dark); border-radius: var(--tmw-default-radius); margin: 0.5em 0 0.5em 1.5em; padding: 0.5em; float: right; clear: both; font-size: 88%; width: 19rem !important; /*width: min-content;*/ line-height: 1.5em; & th { background: initial !important; } & .nowrap { white-space: nowrap; padding-right: 10px; } & :is(.infobox-above, .infobox-title, caption) { font-size: 125%; font-weight: bold; text-align: center; text-wrap: balance; } & :is(.infobox-header,.infobox-subheader, .infobox-image, .infobox-full-data, .infobox-below) { text-align: center; } & :is(#youtube-outer, .video-outer) { width: 300px !important; height: 273px !important; } & .infobox-navbar { text-align: right; } & .mw-collapsible-toggle { float: none; } & tbody { position: relative; z-index: 1; } } @media (width <= 850px) { .infobox { float: none; margin: 0 auto !important; } } .infobox-header, .infobox-label, .infobox-above, .infobox-full-data, .infobox-data, .infobox-below, .infobox-subheader, .infobox-image, .infobox-navbar, .infobox th, .infobox td { vertical-align: top; } .infobox-label, .infobox-data, .infobox th, .infobox td { text-align: left; } .infobox-below { text-align: left !important; } .infobox-title, .infobox caption { padding: 0.2em; } .hidden-content.mw-collapsible-content p { display: none; } .infobox-caption { text-wrap: balance; } .mw-body-content table .infobox-image a > img { max-width: 100% !important; } /*Navbox modifications - used at the bottom of content pages*/ .navbox-inner { box-shadow: var(--tmw-pink-shadow); } .navbox-inner .fn.org { font-size: 100% !important; margin: 0 !important; } /*Headings modifications*/ h1, h2, h3, h4, h5, h6 { color: var(--tmw-pink); font-family: "Press Start 2P", monospace !important; text-shadow: 0.2rem 0 var(--tmw-purple); letter-spacing: -0.06rem; } .mw-body h2, .mw-body h3 { clear: left; } .mw-body :is(h2, h3, h4) { text-wrap: balance; text-wrap: pretty; } .mw-body .home-page :is(h2, h3, h4) { text-wrap: balance; } .mw-body .mw-parser-output h1:after, .mw-body .mw-parser-output h2:after { border-bottom: var(--tmw-blue-border) !important; } .firstHeading { overflow-wrap: break-word; border-bottom: var(--tmw-blue-border) !important; } .mw-body h2 { border-bottom: var(--tmw-blue-border); } @media screen and (max-width: 850px) { .firstHeading { text-align: center; overflow-wrap: anywhere; } h1 {font-size: 1.8rem !important;} h2 {font-size: 1.5rem !important;} h3 { font-size: 1.2rem !important;} h4, h5, h6 {font-size: 100% !important;} } /*Reference tooltips modifications - when hovering over a citation/Other reference stuff*/ .rt-settingsLink { background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fd184e' d='M20 14.5v-2.9l-1.8-.3c-.1-.4-.3-.8-.6-1.4l1.1-1.5-2.1-2.1-1.5 1.1c-.5-.3-1-.5-1.4-.6L13.5 5h-2.9l-.3 1.8c-.5.1-.9.3-1.4.6L7.4 6.3 5.3 8.4l1 1.5c-.3.5-.4.9-.6 1.4l-1.7.2v2.9l1.8.3c.1.5.3.9.6 1.4l-1 1.5 2.1 2.1 1.5-1c.4.2.9.4 1.4.6l.3 1.8h3l.3-1.8c.5-.1.9-.3 1.4-.6l1.5 1.1 2.1-2.1-1.1-1.5c.3-.5.5-1 .6-1.4l1.5-.3zM12 16c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3z'/%3E%3C/svg%3E"); } .rt-tooltip { background: var(--tmw-bg-gradient); border: var(--tmw-blue-border); border-radius: var(--tmw-default-radius); font-size: 14px; box-shadow: var(--tmw-blue-shadow); color: inherit; } .rt-tooltip::after { content: ""; position: inherit; top: 0; left: 0; margin: 0; width: 100%; height: 100%; background: var(--tmw-after-gradient); pointer-events: none; } .rt-tooltipTail { display: none; } ol.references li:target, sup.reference:target { background-color: var(--tmw-pink); } ol.references > li { word-wrap: break-word; } cite > a, .mw-parser-output a.extiw, .mw-parser-output a.extiw:active, .mw-parser-output a.external { color: var(--tmw-blue) !important; } /*References section does not wrap around page content*/ h2:has(> #References) { clear: both; } /*Editing page/other editing stuff modifications*/ /*Style "edit/edit source" next to headings in pages*/ .mw-editsection { font: 13px/20px monospace !important; background-image: none; padding-left: 0; text-shadow: none; } /*Editing comparison page*/ .diff-addedline .diffchange { background: var(--tmw-pink); } .diff-context { background: var(--tmw-pink); border-color: var(--tmw-blue); color: inherit; } .mw-code { color: inherit; background: var(--tmw-bg-gradient-dark); box-shadow: var(--tmw-pink-shadow); border: var(--tmw-pink-border); border-radius: var(--tmw-default-radius); overflow-wrap: anywhere; } /*Source edit text box*/ #wpTextbox1 { background: black; color: white; } /*MWE popups modifications - when hovering over a link to another article*/ .mwe-popups { background: transparent; border: var(--tmw-blue-border); border-radius: var(--tmw-default-radius); } .mwe-popups-container { background: var(--tmw-bg-gradient-dark) !important; border: var(--tmw-blue-border); border-radius: var(--tmw-default-radius); box-shadow: var(--tmw-blue-shadow); } .mwe-popups-container::after { content: ""; position: absolute; top: 0; left: 0; margin: 0; width: 100%; height: 100%; background: var(--tmw-after-gradient); pointer-events: none; } .mwe-popups-extract:hover { color: var(--tmw-blue) !important; } .mwe-popups .mwe-popups-extract[dir="ltr"]:after { background-image: none !important; } .mwe-popups .mwe-popups-container { clip-path: none; } .mwe-popups.mwe-popups-is-not-tall .mwe-popups-thumbnail { border-top-left-radius: var(--tmw-default-radius); border-top-right-radius: var(--tmw-default-radius); width: 318px; z-index: 1; position: relative; } .mwe-popups.mwe-popups-is-tall .mwe-popups-discreet .mwe-popups-thumbnail { border-top-right-radius: var(--tmw-default-radius); border-bottom-right-radius: var(--tmw-default-radius); z-index: 1; position: relative; } .mwe-popups .mwe-popups-extract { color: var(--tmw-white); font-size: 0.75rem; } /*Table of Contents (TOC) modifications*/ .toc { background: var(--tmw-bg-gradient) !important; border: var(--tmw-blue-border) !important; border-radius: var(--tmw-default-radius) !important; box-shadow: var(--tmw-blue-shadow) !important; } .mw-body .toctitle { border-bottom: var(--tmw-blue-border); } /*Tables modifications*/ th { background: var(--tmw-table-gradient) !important; } td { background-color: initial !important; } .mw-body .mw-rcfilters-ui-changesListWrapperWidget .mw-changeslist-legend, .mw-changeslist-legend, .mw-body .mw-search-profile-tabs, .mw-body fieldset#mw-searchoptions, .mw_metadata, .wikitable, .mw-datatable { color: inherit !important; background: inherit !important; border: initial; } :is(.mw_metadata, .mw-datatable, .wikitable) > tr > th, :is(.mw_metadata, .mw-datatable, .wikitable) > tr > td, :is(.mw_metadata, .mw-datatable, .wikitable) > * > tr > th, :is(.mw_metadata, .mw-datatable, .wikitable) > * > tr > td { border: 1px solid hsl(335deg 89.24% 35.86%) !important; background: var(--tmw-table-gradient) !important; } .wikitable { background: unset; background-color: unset; color: unset; border: var(--tmw-pink-border); background-image: var(--tmw-table-gradient) !important; } .wikitable td :is(ul, ol, dl) { text-align: left; } .curved-table .wikitable { border-collapse: inherit !important; border-spacing: 0; border-radius: var(--tmw-default-radius); padding: 0; width: -webkit-fill-available; width: -moz-available; background: inherit !important; } .curved-table .wikitable ol { margin: 0.3em 0 0 2.2em; } .curved-table .wikitable li { margin-bottom: 0.1em; } .curved-table tbody { box-shadow: var(--tmw-pink-shadow) !important; border-radius: var(--tmw-default-radius) !important; } .scroll-left.overflowed .content-table-left, .scroll-right.overflowed .content-table-right { border-left: 0; } .toccolours th, .toccolours td { width: auto !important; vertical-align: middle !important; padding-right: 0 !important; border: var(--tmw-pink-border) !important; } .toccolours th { text-align: center !important; } .toccolours td { padding-left: 1em; } .toccolours { border: none !important; background: inherit !important; border-collapse: separate; background-image: var(--tmw-table-gradient) !important; border-radius: var(--tmw-default-radius); border-spacing: 0; padding: 0 !important; } .toccolours tbody{ box-shadow: var(--tmw-pink-shadow); border-radius: var(--tmw-default-radius); } #fileinfotpl_desc { border-top-left-radius: var(--tmw-default-radius); } #fileinfotpl_desc + td { border-top-right-radius: var(--tmw-default-radius); } .toccolours th:has(small) { border-bottom-left-radius: var(--tmw-default-radius); } .toccolours th:has(small) + td { border-bottom-right-radius: var(--tmw-default-radius); } .mw-body-content a > img, .mw-body-content .floatnone > img { position: relative; z-index: 1; } .chart-table tr:first-of-type th:first-of-type { border-top-left-radius: var(--tmw-default-radius); border-top-right-radius: var(--tmw-default-radius); } .chart-table tr:last-of-type td:first-of-type { border-bottom-left-radius: 10px; } .chart-table tr:last-of-type td:last-of-type { border-bottom-right-radius: 10px; } .filehistory { border-collapse: separate; border-radius: var(--tmw-default-radius); border-spacing: 0; padding: 0; & tbody { border-radius: var(--tmw-default-radius); box-shadow: var(--tmw-pink-shadow); } & th:first-of-type { border-top-left-radius: var(--tmw-default-radius); } & th:last-of-type { border-top-right-radius: var(--tmw-default-radius); } & tr:last-of-type td:first-of-type { border-bottom-left-radius: var(--tmw-default-radius); } & tr:last-of-type td:last-of-type { border-bottom-right-radius: var(--tmw-default-radius); } } /*Image viewer modifications*/ .mw-mmv-post-image, .mw-mmv-image-metadata { color: inherit; background: var(--tmw-bg-gradient); border-top: var(--tmw-blue-border); } .mw-mmv-image-metadata-desc-column { width: 100%; } .mw-mmv-above-fold { border-top: var(--tmw-blue-border); } .mw-mmv-image-metadata-links-column { float: none; } .mw-mmv-credit, .mw-mmv-image-desc { color: inherit; } .mw-ui-button.mw-ui-progressive:not(:disabled) { background-color: var(--tmw-pink); } .mw-mmv-post-image::after { content: ""; position: inherit; top: 0; left: 0; margin: 0; width: 100%; height: 100%; background: var(--tmw-after-gradient); pointer-events: none; } .mw-mmv-dialog-down-arrow { display: none; } .mw-mmv-options-dialog-header { color: var(--tmw-pink); } .mw-mmv-options-text-header, .mw-mmv-options-text-body, .mw-ui-button.mw-ui-quiet { color: inherit; } .mw-mmv-dialog .mw-mmv-dialog-warning, .mw-mmv-download-pane .mw-mmv-download-attribution { background-color: unset !important; } .mw-mmv-download-pane .mw-mmv-download-area { padding-bottom: 0; } .mw-mmv-options-dialog::after, .mw-mmv-reuse-dialog::after, .mw-mmv-download-dialog::after { content: ""; position: absolute; top: 0; left: 0; margin: 0; width: 100%; height: 100%; background: var(--tmw-after-gradient); pointer-events: none; } /*Tabber modifications*/ .tabber__tab, .tabber__tab:visited { color: var(--tmw-pink); } .tabber__tab[aria-selected="true"], .tabber__tab[aria-selected="true"]:visited { color: var(--tmw-blue); } .tabber__indicator { background: none; } .tabber__header { box-shadow: none; /*border-bottom: var(--tmw-blue-border);*/ } @media (width > 850px) { .page-List_of_The_Midnight_merchandise .tabber__header { align-items: flex-end; } } .tabber__header__next:after { background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='utf-8'?%3e%3csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M7 1L5.6 2.5 13 10l-7.4 7.5L7 19l9-9z' style='fill: rgb(248, 20, 114);'/%3e%3c/svg%3e") !important; } .tabber__header__prev:after { background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='utf-8'?%3e%3csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M4 10l9 9 1.4-1.5L7 10l7.4-7.5L13 1z' style='fill: rgb(248, 20, 114);'/%3e%3c/svg%3e") !important; } .infobox-tabber .tabber__header { border-bottom: 0; } /* .infobox-tabber .infobox { width: -webkit-fill-available; width: -moz-available; } */ .infobox-tabber .tabber { width: 19rem; float: right; padding-left: 1em; } @media (width <= 850px) { .infobox-tabber .tabber { float: none; padding-left: 0; margin: 0 auto; } } /*Bandcamp/Soundcloud/Youtube modifications*/ #bandcamp, #bandcamp-album { position: relative; z-index: 1; max-width: 300px; } .infobox-image #bandcamp iframe { width: 17.5rem !important; height: auto !important; aspect-ratio: 1 / 1; } .infobox-image #bandcamp { max-width: none; } .sc-wrapper { display: flex; justify-content: center; z-index: 1; position: relative; } #youtube-outer { background-position: center; background-size: contain; background-repeat: no-repeat; border-radius: 1%; background-image: url(/images/7/75/Television.png); width: 448px; height: 408px; position: relative; float: none; margin: 0 auto; margin-bottom: 1em; clear: both; z-index: 1; } @media screen and (max-width: 1400px) { #youtube-outer { width: 329px; height: 300px; } } .youtube-middle { border-radius: 3%; position: absolute; z-index: -1; top: 10%; left: 9%; background-color: transparent !important; width: 82%; height: 75%; } /*Tracklists modifications*/ .tracklist { border-collapse: collapse; } .tracklist-number-header { border-top-left-radius: var(--tmw-default-radius); } .tracklist-length-header { border-top-right-radius: var(--tmw-default-radius); } .tracklist-total-length th { border-bottom-left-radius: var(--tmw-default-radius); } .tracklist-total-length td { border-bottom-right-radius: var(--tmw-default-radius); } .tracklist caption { padding-bottom: 5px; } .tracklist th { background-color: inherit !important; background-image: inherit !important; } .tracklist tr { background-color: transparent !important; } .tracklist tr:nth-child(2n-1) { background-color: #052540 !important; } .tracklist tr.tracklist-total-length { background-image: none; } .tracklist-total-length th > span { background-color: transparent !important; } .tracklist tr:first-of-type, .tracklist tr:last-of-type, .tracklist-total-length td { background-color: #00000029 !important; } .tracklist tbody { border-radius: var(--tmw-default-radius); box-shadow: 0 0 0 2px #00000029; } /*Tour listing element - used on Live Performances page and a few other places*/ .tour-listing { display: flex; align-items: center; gap: 1em; padding: 1em; } @media screen and (max-width: 500px) { .tour-listing { flex-direction: column; } } /*Tour gallery/Poster gallery - used on tour/show pages*/ /* Tour gallery code */ #tour-gallery ul, .column-gallery { /*display: flex; flex-wrap: wrap; flex-direction: row; align-items: center; justify-content: center; gap: 35px;*/ columns: 20rem; margin: 0; list-style-type: none; } /*Media group modifications - used for grouping song versions and media associated with song (videos)*/ .grid-sizer { width: 19em; } .masonry-group { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); justify-items: center; gap: 1em; text-align: center; text-wrap: balance; & > * { align-self: start } } .media-group { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); justify-items: center; gap: 1em; text-align: center; text-wrap: balance; } .media-group .thumb { margin: 0; padding: 0; } .center-group { align-items: center; } .media-group #bandcamp { max-width: none; } .media-group #bandcamp iframe { border: var(--tmw-pink-border) !important; border-radius: var(--tmw-default-radius); box-shadow: var(--tmw-pink-shadow); padding: 1px; } /* .media-group { & .video-wrapper { width: 330px; } & .video-outer { padding-bottom: 3em; } & video { width: 83% !important; top: 6% !important; } & > div { margin: 0; padding: 0; } } */ .music-wrapper { display: flex; flex-direction: column; align-items: center; } .music-wrapper p { margin: 0; } .music-wrapper .caption { font-weight: bold; } /*Merch gallery - styling and layout for gallery on Merchandise page*/ .merch-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); justify-items: center; overflow: hidden; /*align-items: start;*/ } .merch-gallery .thumbcaption { width: 160px; } .merch-gallery .thumb { margin: 0 !important; padding: 0 !important; } .merch-gallery .thumbimage { box-shadow: var(--tmw-pink-shadow); max-height: 170px; aspect-ratio: 1 / 1; padding: 1em; margin: 0; object-fit: contain; } /* .merch-gallery img { aspect-ratio: 1 / 1; padding: 1em; object-fit: contain; } */ @media screen and (max-width: 850px) { figure[typeof~='mw:File/Thumb'] > :not(figcaption) .mw-file-element, figure[typeof~='mw:File/Frame'] > :not(figcaption) .mw-file-element { max-width: 100% !important; } .merch-gallery figure[typeof~='mw:File/Thumb'], .merch-gallery figure[typeof~='mw:File/Frame'] { width: inherit !important; } } .merch-gallery .thumbinner { width: auto !important; z-index: initial; } .merch-gallery a { width: 160px; height: 160px; background: var(--tmw-bg-gradient-dark); border-radius: var(--tmw-default-radius); } /*Video element modifications*/ .embedvideo video { border-radius: var(--tmw-default-radius); object-fit: cover; } .embedvideo { z-index: 1; display: block; position: relative; } @media screen and (max-width: 850px) { .embedvideo { float: none !important; margin: 0 auto !important; } } .thumbinner:has(> .embedvideo) { max-width: none !important; } .media-group .thumb:has(.embedvideo) { margin: 0; padding: 0; } .embedvideo figcaption { text-align: center; /*font-size: initial;*/ font-weight: bold; } .embedvideo-wrapper { border: var(--tmw-pink-border-figure); border-radius: var(--tmw-default-radius); box-shadow: var(--tmw-pink-shadow); } .embedvideo-player, .embedvideo-consent { border-radius: var(--tmw-default-radius); z-index: 1; } .mw-tmh-media-dialog .oo-ui-dialog-content > .oo-ui-window-body { border-bottom-left-radius: var(--tmw-default-radius); border-bottom-right-radius: var(--tmw-default-radius); } *:not(.thumbinner) > .video-js.video-js:not(.vjs-fullscreen) { border: 0 !important; } .video-wrapper { display: flex; flex-direction: column; align-items: center; } .video-outer { background-position: center; background-size: contain; background-repeat: no-repeat; border-radius: 1%; background-image: url(/images/7/75/Television.png); width: 100%; max-width: 500px; position: relative; float: none; clear: both; z-index: 1; aspect-ratio: 4 / 3; display: flex; justify-content: center; flex-wrap: wrap; align-items: center; } .video-outer video { position: relative; width: 74%; background: black; top: -2%; border-radius: 3%; object-fit: fill; aspect-ratio: 4 / 3; } .video-outer video:fullscreen, .video-outer video:-webkit-full-screen { object-fit: contain !important; border-radius: 0; } .video-wrapper .caption { margin: 0; font-weight: bold } /*Semantic modifications*/ .smwb-theme-light .smwb-title, .smwb-theme-light .smwb-center, .smwb-theme-light .smwb-actions, .smwb-theme-light .smwb-prophead, .smwb-propvalue, .smwb-theme-light .smwb-propval, .smwb-ipropvalue { background-color: inherit; } .smwb-datasheet { border: var(--tmw-pink-border); border-radius: var(--tmw-default-radius); background: var(--tmw-bg-gradient-dark); box-shadow: var(--tmw-pink-shadow); padding: 1em; } .smwb-factbox { border-left: 0 !important; } .smwb-ifactbox { border-right: 0 !important; } .smwb-factbox .smwb-cell, .smwb-ifactbox .smwb-cell { border-top: var(--tmw-blue-border); } .smwb-bottom { border-bottom: var(--tmw-blue-border); } /*Data tables*/ :focus-visible { outline: none; } table.dataTable { width: -webkit-fill-available !important; width: -moz-available !important; } .dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate { color: inherit; } .datatable-loaded tr:last-of-type td:first-of-type { border-bottom-left-radius: var(--tmw-default-radius); } .datatable-loaded tr:last-of-type td:last-of-type { border-bottom-right-radius: var(--tmw-default-radius); } .dataTables_wrapper .dataTables_length { padding-bottom: 1em; } .dataTables_wrapper .dataTables_filter { padding-bottom: 1em; } .dt-length option { color: black; } table.dataTable thead > tr > th.sorting, table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting_asc_disabled, table.dataTable thead > tr > th.sorting_desc_disabled, table.dataTable thead > tr > td.sorting, table.dataTable thead > tr > td.sorting_asc, table.dataTable thead > tr > td.sorting_desc, table.dataTable thead > tr > td.sorting_asc_disabled, table.dataTable thead > tr > td.sorting_desc_disabled { padding: 0 0.3rem !important; font-size: clamp(10px, 12px, 14px); } table.dataTable thead th, table.dataTable thead td, table.dataTable tfoot th, table.dataTable tfoot td { text-align: center !important; } table.dataTable tbody th, table.dataTable tbody td { padding: 0 0.3rem !important; font-size: clamp(10px, 12px, 14px); } table.dataTable>thead>tr>th, table.dataTable>thead>tr>td { padding: 0 0.3rem !important; font-size: clamp(10px, 12px, 14px); } table.dataTable th.dt-type-numeric, table.dataTable th.dt-type-date, table.dataTable td.dt-type-numeric, table.dataTable td.dt-type-date { text-align: center !important; } table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before, table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before { margin-right: 0 !important; border-left: 0 !important; } table.dataTable thead>tr>th.dt-orderable-asc span.dt-column-order, table.dataTable thead>tr>th.dt-orderable-desc span.dt-column-order, table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order, table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order, table.dataTable thead>tr>td.dt-orderable-asc span.dt-column-order, table.dataTable thead>tr>td.dt-orderable-desc span.dt-column-order, table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order, table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order { right: 0.5rem !important; } .curved-table div.dtsp-searchPane div.dt-container div.dt-scroll-body, .curved-table div.dtsp-searchPane div.dt-container div.dataTables_scrollBody, .curved-table div.dtsp-searchPane div.dataTables_wrapper div.dt-scroll-body, .curved-table div.dtsp-searchPane div.dataTables_wrapper div.dataTables_scrollBody { background: var(--tmw-bg-gradient-dark) !important; padding: 0.5rem; max-height: 140px !important; height: 140px !important; } .dt-scroll-body tbody { box-shadow: none !important; } div.dtsp-searchPane div.dt-container, div.dtsp-searchPane div.dataTables_wrapper { border: var(--tmw-pink-border) !important; border-radius: var(--tmw-default-radius) !important; box-shadow: var(--tmw-pink-shadow); } div.dtsp-panesContainer button.dtsp-clearAll, div.dtsp-panesContainer button.dtsp-collapseAll, div.dtsp-panesContainer button.dtsp-showAll { font: inherit; color: inherit; } div.dtsp-searchPane div.dtsp-topRow div.dtsp-searchCont input.dtsp-search { font: inherit; color: inherit; } div.dtsp-searchPane input.dtsp-paneInputButton, div.dtsp-searchPane button.dtsp-paneButton { padding: unset; } div.dt-container .dt-paging .dt-paging-button { font-family: inherit; } div.dtsp-searchPane div.dt-container div.dt-scroll-body div.dtsp-nameCont span.dtsp-pill, div.dtsp-searchPane div.dt-container div.dataTables_scrollBody div.dtsp-nameCont span.dtsp-pill, div.dtsp-searchPane div.dataTables_wrapper div.dt-scroll-body div.dtsp-nameCont span.dtsp-pill, div.dtsp-searchPane div.dataTables_wrapper div.dataTables_scrollBody div.dtsp-nameCont span.dtsp-pill { background-color: inherit !important; color: inherit !important; } div.dt-container .dt-length, div.dt-container .dt-search, div.dt-container .dt-info, div.dt-container .dt-processing, div.dt-container .dt-paging { padding-bottom: 1rem; } div.dt-container .dt-input { background: var(--tmw-bg-gradient-dark); border: var(--tmw-pink-border) !important; border-radius: var(--tmw-default-radius) !important; box-shadow: 0 0 14px var(--tmw-purple); padding-left: 0.6rem !important; font: inherit; } div.dt-container .dt-search input:focus { border: var(--tmw-pink-border) !important; } div.dtsp-topRow div.dtsp-subRow1 { padding-bottom: 0.6rem; } div.dt-container div.dt-layout-row.dt-layout-table { container-type: inline-size; } .dtsp-nameCont { width: calc(100cqw - 35px) !important; } .dtsp-searchPane div.dt-container div.dt-layout-row.dt-layout-table { height: 150px; } .curved-table div.dtsp-topRow div.dtsp-subRow1 button.dtsp-searchIcon span { background-image: url(/skins/Timeless/resources/images/search-ltr.svg?bb2cf) !important; } .curved-table div.dtsp-topRow button.dtsp-nameButton span { background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAAtXpUWHRSYXcgcHJvZmlsZSB0eXBlIGV4aWYAAHjaXVDbEcMgDPtnio6AH7zGoRd61w06foUxaVLlMLbESZAwPu9XeExQ1aCp1NxyjoA2bdzR1LjQrFJUqwYW1+jOh1NgULP3uXQ/v3k6DdbW0aWL0Q6n512oLnD9M/IgmTdiNIcbta3zEkj9VSPeUX+Liz1qhq8wzOFKaMFfOhL8hHkISUQV0RUkc6l02/uccY7wdbAcTCi42hcJtkzvaybE6QAAAXBpQ0NQaWNjAAB4nHWRzUsCQRjGH7Uw0vBQh5AOe7DooCAF0TEM8mId1CCry+64q8HuusyuiHQNunQQOkRd+jr0H9Q16FoQBEUQEfQf9HUJ2d5xBSV0htn3x7PzvMw8A/gzOjPsgSRgmA7PplPSWmFdCr4jTDOEKBIys63l3FIefcfPI3yiPiREr/77eo5QUbUZ4BsinmMWd4gXiDM1xxK8RzzGynKR+IQ4zumAxLdCVzx+E1zy+Eswz2cXAb/oKZW6WOliVuYG8TRxzNCrrH0ecZOwaq7mqEZpTcBGFmmkIEFBFVvQ4SBB1aTMevuSLd8KKuRh9LVQBydHCWXyxkmtUleVqka6SlNHXeT+P09bm53xuodTwOCr635OAsF9oNlw3d9T122eAYEX4Nrs+CuU0/w36Y2OFjsGIjvA5U1HUw6Aq11g/NmSudySArT8mgZ8XAAjBWD0Hhje8LJq/8f5E5Dfpie6Aw6PgCnaH9n8AwgUaA5l6qHxAAANdmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNC40LjAtRXhpdjIiPgogPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iCiAgICB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIgogICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgeG1sbnM6R0lNUD0iaHR0cDovL3d3dy5naW1wLm9yZy94bXAvIgogICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iCiAgIHhtcE1NOkRvY3VtZW50SUQ9ImdpbXA6ZG9jaWQ6Z2ltcDpmY2FlNzkzOC0yZDc0LTRjMmItODZlZi0zYzg1MWY1NmUwMGQiCiAgIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6ODZlN2EwNGMtMTJiZC00YjA4LTg4ODItMzljNTk5NzFjNDI2IgogICB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6ZGZiMWIzYjYtN2YwYy00ZGM1LWE4YzctZDJiNTk4MmI4OTA3IgogICBkYzpGb3JtYXQ9ImltYWdlL3BuZyIKICAgR0lNUDpBUEk9IjIuMCIKICAgR0lNUDpQbGF0Zm9ybT0iV2luZG93cyIKICAgR0lNUDpUaW1lU3RhbXA9IjE3MDg0NDczMjcxMDAyNDMiCiAgIEdJTVA6VmVyc2lvbj0iMi4xMC4zNCIKICAgdGlmZjpPcmllbnRhdGlvbj0iMSIKICAgeG1wOkNyZWF0b3JUb29sPSJHSU1QIDIuMTAiCiAgIHhtcDpNZXRhZGF0YURhdGU9IjIwMjQ6MDI6MjBUMTE6NDI6MDctMDU6MDAiCiAgIHhtcDpNb2RpZnlEYXRlPSIyMDI0OjAyOjIwVDExOjQyOjA3LTA1OjAwIj4KICAgPHhtcE1NOkhpc3Rvcnk+CiAgICA8cmRmOlNlcT4KICAgICA8cmRmOmxpCiAgICAgIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiCiAgICAgIHN0RXZ0OmNoYW5nZWQ9Ii8iCiAgICAgIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6NGJjNWQ4NDQtODY1MC00YzhhLTlhMWItN2U3YjczMGViYjVkIgogICAgICBzdEV2dDpzb2Z0d2FyZUFnZW50PSJHaW1wIDIuMTAgKFdpbmRvd3MpIgogICAgICBzdEV2dDp3aGVuPSIyMDI0LTAyLTIwVDExOjQyOjA3Ii8+CiAgICA8L3JkZjpTZXE+CiAgIDwveG1wTU06SGlzdG9yeT4KICA8L3JkZjpEZXNjcmlwdGlvbj4KIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAKPD94cGFja2V0IGVuZD0idyI/PvHAB+oAAAAGYktHRAAAAAAAAPlDu38AAAAJcEhZcwAAD2EAAA9hAag/p2kAAAAHdElNRQfoAhQQKgd+UVocAAAA00lEQVRYw+2WwQ3FIAiGhXhwACd1ECd1AG/2ZNI0VqFF+vLCf2pLlQ9E1DmTyfSHgpmxxtT6cygZpJzezYuUAaN3CZCr8OulOcMhl35HVvr3ZWbOa/oGcjW2xtS8dLSjQu//dNuogGtMDZ9EwLWHkmG1G0PJgJQluptIurZQe/uSYTjOKLUiBnOdfOZMqjv7XR23xtS4kP7LGlE9DriQntq4njS515mRvCpwwZAbxRWWMn7UCkZ2cEqiQKvBrIBCyaAKMztIf+KmR7oDazg3mUy7dADIt4z7dQwIuQAAAABJRU5ErkJggg==) !important; } .curved-table div.dtsp-topRow button.dtsp-countButton span { background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAs3pUWHRSYXcgcHJvZmlsZSB0eXBlIGV4aWYAAHjaXVBbDgMhCPznFD2CAr6OY7M26Q16/I6idi0JrxnCiNQ+7xc9uvmspCHlWGJ0MC1auKLIzqyM6J2OaM3i/InTJhiQIIu1qc75hfu9wFJFFW6LtsDzJPIkOP8tmkLSX8QorrmoLJ6N8Dqvau60/HNO46gubmLo6Q5owi9dAfuEuYkXhyiiJiTdVerIFY6r+8xAEg0Iz6IvE5VM/CUYaAYAAAFwaUNDUGljYwAAeJx1kc1LAkEYxh+1MNLwUIeQDnuw6KAgBdExDPJiHdQgq8vuuKvB7rrMroh0Dbp0EDpEXfo69B/UNehaEARFEBH0H/R1CdnecQUldIbZ98ez87zMPAP4Mzoz7IEkYJgOz6ZT0lphXQq+I0wzhCgSMrOt5dxSHn3HzyN8oj4kRK/++3qOUFG1GeAbIp5jFneIF4gzNccSvEc8xspykfiEOM7pgMS3Qlc8fhNc8vhLMM9nFwG/6CmVuljpYlbmBvE0cczQq6x9HnGTsGqu5qhGaU3ARhZppCBBQRVb0OEgQdWkzHr7ki3fCirkYfS1UAcnRwll8sZJrVJXlapGukpTR13k/j9PW5ud8bqHU8Dgq+t+TgLBfaDZcN3fU9dtngGBF+Da7PgrlNP8N+mNjhY7BiI7wOVNR1MOgKtdYPzZkrnckgK0/JoGfFwAIwVg9B4Y3vCyav/H+ROQ36YnugMOj4Ap2h/Z/AMIFGgOZeqh8QAADXZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+Cjx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDQuNC4wLUV4aXYyIj4KIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIgogICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgIHhtbG5zOkdJTVA9Imh0dHA6Ly93d3cuZ2ltcC5vcmcveG1wLyIKICAgIHhtbG5zOnRpZmY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vdGlmZi8xLjAvIgogICAgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIgogICB4bXBNTTpEb2N1bWVudElEPSJnaW1wOmRvY2lkOmdpbXA6OGViYTQzNGYtODMyMi00MzdlLWIyMDAtZDkxZDkwZmQxMDM5IgogICB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjY1Zjk0OWU5LTkyMWMtNGY0Zi04OGVkLTAwNmNkYjk0NzAyYyIKICAgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjM4ZmZiMTcwLTkyZTAtNDU1Zi1iMTE0LTQ1NjcxYTlkMzBhNSIKICAgZGM6Rm9ybWF0PSJpbWFnZS9wbmciCiAgIEdJTVA6QVBJPSIyLjAiCiAgIEdJTVA6UGxhdGZvcm09IldpbmRvd3MiCiAgIEdJTVA6VGltZVN0YW1wPSIxNzA4NTI4MDQ5NDU5OTE2IgogICBHSU1QOlZlcnNpb249IjIuMTAuMzQiCiAgIHRpZmY6T3JpZW50YXRpb249IjEiCiAgIHhtcDpDcmVhdG9yVG9vbD0iR0lNUCAyLjEwIgogICB4bXA6TWV0YWRhdGFEYXRlPSIyMDI0OjAyOjIxVDEwOjA3OjI5LTA1OjAwIgogICB4bXA6TW9kaWZ5RGF0ZT0iMjAyNDowMjoyMVQxMDowNzoyOS0wNTowMCI+CiAgIDx4bXBNTTpIaXN0b3J5PgogICAgPHJkZjpTZXE+CiAgICAgPHJkZjpsaQogICAgICBzdEV2dDphY3Rpb249InNhdmVkIgogICAgICBzdEV2dDpjaGFuZ2VkPSIvIgogICAgICBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmMyNjFjYTQ4LTBhMGYtNDE2NS05MmI2LWY4NjM1NTdjYmFhMiIKICAgICAgc3RFdnQ6c29mdHdhcmVBZ2VudD0iR2ltcCAyLjEwIChXaW5kb3dzKSIKICAgICAgc3RFdnQ6d2hlbj0iMjAyNC0wMi0yMVQxMDowNzoyOSIvPgogICAgPC9yZGY6U2VxPgogICA8L3htcE1NOkhpc3Rvcnk+CiAgPC9yZGY6RGVzY3JpcHRpb24+CiA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgCjw/eHBhY2tldCBlbmQ9InciPz5VMaOoAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAA9hAAAPYQGoP6dpAAAAB3RJTUUH6AIVDwcdDN96oQAAAItJREFUSMdjYBjqgBFd4IdI0X8Ym+NNHyMuMUJ6YICJ1j6g2AJk12PjM1HTcGziTIQ0EGMIPnlGQgqxAfSIHNBIZkG2kZwkSvNURLQFpEQwSTl5+EQyLSKYfpFMK9dT5IMfIkX/8RUj8KKC2gUdempjpCR88VkCC1ZGSiMRmyXIccZIjZQyoBmN5gAAbnJqBKaDOJ4AAAAASUVORK5CYII=) !important; } div.dtsp-topRow button.dtsp-collapseButton span.dtsp-caret, div.dtsp-topRow button.clearButton { color: var(--tmw-pink) !important; font-weight: 900; } table.dataTable thead>tr>th.dt-orderable-desc span.dt-column-order:after, table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order:after, table.dataTable thead>tr>td.dt-orderable-desc span.dt-column-order:after, table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order:after, table.dataTable thead>tr>th.dt-orderable-asc span.dt-column-order:before, table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order:before, table.dataTable thead>tr>td.dt-orderable-asc span.dt-column-order:before, table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order:before { color: var(--tmw-blue); left: 7px !important; } div.dtsp-topRow div.dtsp-subRow1 input { padding-right: 3em !important; } div.dtsp-panesContainer button.dtsp-clearAll:hover, div.dtsp-panesContainer button.dtsp-collapseAll:hover, div.dtsp-panesContainer button.dtsp-showAll:hover { background-color: inherit !important; } div.dtsp-searchPane input.dtsp-paneInputButton:hover, div.dtsp-searchPane button.dtsp-paneButton:hover { background-color: inherit !important; border-radius: none !important; } div.dtsp-searchPane div.dtsp-topRow.dtsp-bordered:hover { background: var(--tmw-bg-gradient-dark) !important; } div.dtsp-searchPane div.dtsp-topRow.dtsp-bordered { border: var(--tmw-pink-border) !important; border-radius: var(--tmw-default-radius) !important; box-shadow: var(--tmw-pink-shadow); background: var(--tmw-bg-gradient-dark); } div.dtsp-searchPane div.dtsp-topRow div.dtsp-searchCont input.dtsp-search { padding-left: 0.7em !important; } /*Page specific modifications*/ /*Fade in animation for home page*/ /* .page-Home #content { animation: fadeInAnimation cubic-bezier(0.4, 0, 1, 1) 5s; animation-iteration-count: 1; animation-fill-mode: forwards; } */ .page-Home .firstHeading { display: none !important; } @keyframes fadeInAnimation { 0% { opacity: 0; } 100% { opacity: 1; } } /*Hide categories on home page*/ .page-Home #catlinks { display: none !important; } /*Home page logo modifications*/ .wrapper { height: 150px; display: flex; align-items: center; justify-content: center; } .wrapper img { aspect-ratio: 347 / 145; max-width: 347px; width: 88% !important; height: revert !important; } .glow-logo { position: absolute; animation: imageBlinker 10s ease-in-out; /*opacity: 0.6;*/ filter: drop-shadow(0px 3px 20px rgb(192 14 170 / 85%)); } .sign-logo { position: absolute; filter: brightness(0.5); } @keyframes imageBlinker { 0% { opacity: 0; } 10% { opacity: 0.6; } 15% { opacity: 0; } 20% { opacity: 0.6; } 25% { opacity: 0; } 30% { opacity: 0.6; } 35% { opacity: 0.6; } 40% { opacity: 0.6; } 45% { opacity: 0; } 50% { opacity: 0.6; } 55% { opacity: 0.6; } 60% { opacity: 0; } 65% { opacity: 0.6; } 70% { opacity: 0; } 75% { opacity: 0.6; } 80% { opacity: 0.6; } 85% { opacity: 0.6; } 90% { opacity: 0; } 92% { opacity: 0.6; } 96% { opacity: 0; } 100% { opacity: 0.4; } } /* Front page logo animation - templatestyles rejected some of the rules, so placing here */ #monitor-out { position: relative; z-index: 1; width: 45%; float: left; margin: 0 0.5em 0.5em 0; padding: 0 1.5em 1em 0; } #monitor { position: relative; width: 100%; max-width: 400px; aspect-ratio: 450 / 440; border-radius: 1%; background: url(/images/b/bf/Monitor.png); background-size: contain; background-repeat: no-repeat; margin: 0 auto; } @media screen and (max-width: 850px) { #monitor-out { width: 100%; margin: 0; padding-bottom: 1em; } } .inner { display: flex; container-type: inline-size; position: relative; background-image: radial-gradient(hsl(223, 100%, 55%), black 120%); width: 100%; aspect-ratio: 450 / 440; border-radius: 3%; z-index: -1; } .inner::after { content: " "; display: block; position: absolute; top: 0; left: 0; bottom: 0; right: 0; background: var(--tmw-after-gradient); opacity: 0; z-index: 2; animation: flicker 0.15s infinite; } .scan-line { display: none; top: -100px; left: 0; right: 0; width: 100%; height: 100px; z-index: 8; background: linear-gradient( 0deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.2) 10%, rgba(0, 0, 0, 0.1) 100% ); opacity: 0.1; position: absolute; animation: scan-line 8s linear infinite; } .vline { top: 0; left: 0; right: 0; width: 100%; height: 100%; position: absolute; z-index: 4100; } .vline::before { content: ""; position: absolute; top: 0; width: 100%; height: 4px; background: hsl(0, 0%, 100%); background: -webkit-linear-gradient( to bottom, rgba(255, 0, 0, 0) 0%, rgba(255, 250, 250, 1) 50%, rgba(255, 255, 255, 0.98) 51%, rgba(255, 0, 0, 0) 100% ); background: linear-gradient( to bottom, rgba(255, 0, 0, 0) 0%, rgba(255, 250, 250, 1) 50%, rgba(255, 255, 255, 0.98) 51%, rgba(255, 0, 0, 0) 100% ); opacity: 0.2; animation: vline 8s linear infinite; } .vline::after { content: ""; top: 0; left: 0; right: 0; width: 100%; height: 4px; position: absolute; box-shadow: 0 2px 6px rgba(25, 25, 25, 0.2), inset 0 1px rgba(50, 50, 50, 0.1), inset 0 3px rgba(50, 50, 50, 0.05), inset 0 3px 8px rgba(64, 64, 64, 0.05), inset 0 -5px 10px rgba(25, 25, 25, 0.1); } .terminal { font-family: "VT323"; text-align: left; position: relative; margin: 0 auto; } .terminal h1 { font-family: "VT323" !important; font-size: 7cqi !important; top: 10%; border-right: 3px solid var(--tmw-pink); border-bottom: none; position: relative; overflow: hidden; white-space: nowrap; letter-spacing: 2px; box-sizing: border-box; animation: typing 8s steps(12, end) forwards, blink-cursor 0.8s step-end infinite; margin: 1.25em 0 0.5em !important; } .terminal h1::before, .terminal h1::after { content: attr(title); position: absolute; left: 0; } .computer-logo { position: absolute; left: 17%; top: 38%; width: 65%; height: 100%; background-image: url(/logo.svg); background-repeat: no-repeat; background-size: contain; animation: logo 8s linear; } @keyframes vline { 0% { top: 0; opacity: 0; } 79% { top: 0; opacity: 0; } 80% { top: 0; opacity: 0.2; } 99% { top: 100%; opacity: 0.2; } 100% { top: 100%; opacity: 0; } } @keyframes flicker { 0% { opacity: 0.27861; } 5% { opacity: 0.34769; } 10% { opacity: 0.23604; } 15% { opacity: 0.90626; } 20% { opacity: 0.18128; } 25% { opacity: 0.83891; } 30% { opacity: 0.65583; } 35% { opacity: 0.67807; } 40% { opacity: 0.26559; } 45% { opacity: 0.84693; } 50% { opacity: 0.96019; } 55% { opacity: 0.08594; } 60% { opacity: 0.20313; } 65% { opacity: 0.71988; } 70% { opacity: 0.53455; } 75% { opacity: 0.37288; } 80% { opacity: 0.71428; } 85% { opacity: 0.70419; } 90% { opacity: 0.7003; } 95% { opacity: 0.36108; } 100% { opacity: 0.24387; } } @keyframes scan-line { 0% { top: -100px; } 80% { top: -100px; } 100% { top: calc(100% - 50px); } } @keyframes blink-cursor { 0% { border-color: transparent; } 50% { border-color: var(--tmw-pink); } } @keyframes typing { 0% { width: 0; } 20% { width: 100%; content: attr(title); } 100% { width: 100%; content: attr(title); } } @keyframes logo { 0% { opacity: 0; } 99% { opacity: 0; } 100% { opacity: 1; } } /*Description lists like one on news section on home page*/ .mw-body dt { font-family: inherit; } /*Hidden image used for Floppy Disk articles on home page*/ .hidden-image { display: none; } /*Prevent excess space between words and image in floppy section*/ .floppy-outer { container: floppy / inline-size; } #floppy1 .thumb { float: right; } @container floppy (max-width: 450px) { #floppy1 .thumb { float: none; margin: 0; padding: 0; } } /*Used in conjuction with templatestyles for Did You Know section to make list always fill container*/ .factlist { height: -webkit-fill-available; height: -moz-available; } /*Polaroid gallery modifications - used on Lost Boy's Polaroids poge and home page*/ #polaroid-gallery .thumbimage { border: solid 1px #eaecf0 !important; border-radius: 0; box-shadow: none; padding: 0; aspect-ratio: 1 / 1; object-fit: cover; width: 100%; } #polaroid-gallery .thumbinner { background-color: hsl(0, 0%, 90%); border-top: 1px solid hsl(0, 0%, 100%); border-left: 1px solid hsl(0, 0%, 100%); border-right: 1px solid hsl(0, 0%, 47%); border-bottom: 1px solid hsl(0, 0%, 47%); box-shadow: 0 4px 15px 4px rgb(0 0 0 / 30%); transform-origin: center center; width: 250px !important; padding: 0.75em; } .page-Helvetica { font-family: Helvetica !important; } .page-Helvetica :is(h1, h2, h3, h4, h5, h6) { font-family: Helvetica !important; } /*Reduce margin on discography sublists*/ .page-The_Midnight_discography ul ul { margin-top: 0; } /*Used for gallery on List of The Midnight people page*/ #people-gallery { display: flex; justify-content: center; align-items: center; gap: 1em; flex-wrap: wrap; } /*Extra hacks*/ /*Center object in space available to it*/ .center-avail-space { width: -webkit-fill-available; width: -moz-available; display: flex; justify-content: center; } /*extra spacing to grid container*/ .extra-grid-spacing { grid-column-gap: 1em; } /*Forms*/ .ci_form { border: var(--tmw-pink-border) !important; border-radius: var(--tmw-default-radius); box-shadow: var(--tmw-pink-shadow); background: var(--tmw-bg-gradient-dark) !important; max-width: none !important; margin: auto; } .ci_form_section_inputs_row input, .ci_form_section_inputs_row select, .ci_form_section_inputs_row textarea, .ci_form_section_inputs_row .input, .select2-container--default .select2-selection--single { border: var(--tmw-blue-border) !important; border-radius: var(--tmw-default-radius) !important; box-shadow: var(--tmw-blue-shadow); background: var(--tmw-bg-gradient) !important; color: var(--tmw-white); padding-left: 1em !important; } /*Cover flow*/ .cards { list-style: none; white-space: nowrap; overflow: scroll; margin: 0 !important; min-height: calc(var(--cover-size)* 2); position: relative; /* max-width: 90vw; */ padding: calc(var(--cover-size) / 3* 2) 0 !important; } .cards:not(.active) { scroll-snap-type: x mandatory; } .cards li { display: inline-block; width: var(--cover-size); aspect-ratio: 1; scroll-snap-align: center; view-timeline-name: --li-in-and-out-of-view; view-timeline-axis: inline; animation: linear adjust-z-index both; animation-timeline: --li-in-and-out-of-view; perspective: 40em; position: relative; z-index: 1; will-change: z-index; user-select: none; } .cards li:first-of-type { margin-left: calc(50% - (var(--cover-size) / 2)); } .cards li:last-of-type { margin-right: calc(50% - (var(--cover-size) / 2)); } .cards li figure { animation: linear rotate-cover both; animation-timeline: --li-in-and-out-of-view; -webkit-box-reflect: below 0.5em linear-gradient(rgb(0 0 0 / 0), rgb(0 0 0 / 0.25)); } .cards li img { width: 100%; height: auto; } /* .cards li > img { /*Link an animation to the established view-timeline (of the parent li) and have it run during the contain phase animation: linear rotate-cover both; animation-timeline: --li-in-and-out-of-view; }*/ .skin-timeless #cover-flow { display: none; } @keyframes adjust-z-index { 0% { z-index: 1; } 50% { z-index: 100; /* When at the center, be on top */ } 100% { z-index: 1; } } @keyframes rotate-cover { 0% { transform: translateX(-100%) rotateY(-45deg); } 35% { transform: translateX(0) rotateY(-45deg); } 50% { transform: rotateY(0deg) translateZ(1em) scale(1.5); } 65% { transform: translateX(0) rotateY(45deg); } 100% { transform: translateX(100%) rotateY(45deg); } } ::-webkit-scrollbar-corner { background: rgba(0,0,0,0); }