Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
/* TOC: Table of Contents
You can use CTRL + F to look for the CSS' corresponding snippet (Just make sure to turn on
case sensitive search if available). To find a class when customizing the site's CSS, use inspect element
*/
/* Variable Root Colors */
:root {
--doors-dark-text: rgb(58,58,58); /* #3A3A3A */
--doors-light-text: rgb(230,230,230); /* #E6E6E6 */
--doors-dark-accent: rgb(208,174,130); /* #D0AE82 */
--doors-light-accent: rgb(112,71,56); /* #704738 */
--doors-dark-background: rgb(47,27,21); /* #2F1B15 */
--doors-dark-background-2: rgb(73,50,43); /* #49322B */
--doors-dark-background-3: rgba(0,0,0,.3); /* #0000004D */
--doors-dark-background-4: rgba(47,27,21,.3); /* #2F1B154D */
--doors-light-background: rgb(231,219,200); /* #E7DBC8 *//*
--doors-light-background: rgb(246,238,225); /* #F6EEE1 */
--doors-light-background-2: rgb(234,226,214); /* #EAE2D6 */
--doors-light-background-3: rgba(255,255,255,.3); /* #FFFFFF4D */
--doors-light-background-4: rgba(231,219,200,.3); /* #E7DBC84D */
}
/* Template:Achievement */
/** Mobile Specific Fixes **/
body.skin-fandommobile #Related_achievements-collapsible-section > .article-table-wrapper {
margin-bottom: 14px;
}
body.skin-fandommobile .article-table-wrapper table.doors-achievement.table > tbody > tr > th,
body.skin-fandommobile .article-table-wrapper table.doors-achievement.table > tbody > tr > td {
border-right: none !important;
}
body.skin-fandommobile .hoverimg-achievements .article-media-placeholder {
border: none !important;
}
body.skin-fandommobile .hoverimg-achievements {
min-width: 100px;
max-width: 120px;
min-height: 100px;
max-height: 120px;
}
/** Dark Theme **/
body.theme-fandommobile-dark .article-table-wrapper table.doors-achievement.table > tbody > tr > th {
background: var(--doors-dark-background);
}
body.theme-fandommobile-dark table.doors-achievement.table {
border: .15em solid var(--doors-dark-accent);
background: var(--doors-dark-background-3);
}
/** Light Theme **/
body.theme-fandommobile-light .article-table-wrapper table.doors-achievement.table > tbody > tr > th {
background: var(--doors-light-background);
}
body.theme-fandommobile-light table.doors-achievement-table {
border: .15em solid var(--doors-light-accent);
background: var(--doors-dark-background);
}