MediaWiki:Mobile.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 20: | Line 20: | ||
padding: 0 0.5em 0 0.5em; | padding: 0 0.5em 0 0.5em; | ||
border-radius: 10px; | border-radius: 10px; | ||
} | |||
.bg3wiki-tooltip-box { | |||
background: #1B1A19; | |||
box-shadow: | |||
rgba(0, 0, 0, 0.14) 3px 3px 6px 0px inset, | |||
rgba(0, 0, 0, 0.14) -3px -3px 6px 1px inset; | |||
border: 0.15rem solid #785000; | |||
border-radius: 10px; | |||
padding: 15px; | |||
} | |||
.bg3wiki-tooltip-gradient-common { | |||
background: linear-gradient(to bottom, #1B1A19, #1B1A19, #1B1A19, #402951); | |||
} | |||
.bg3wiki-tooltip-gradient-uncommon { | |||
background: linear-gradient(to bottom, #004915, #1B1A19, #1B1A19, #402951); | |||
} | |||
.bg3wiki-tooltip-gradient-rare { | |||
background: linear-gradient(to bottom, #003749, #1B1A19, #1B1A19, #402951); | |||
} | |||
.bg3wiki-tooltip-gradient-veryrare { | |||
background: linear-gradient(to bottom, #540032, #1B1A19, #1B1A19, #402951); | |||
} | |||
.bg3wiki-tooltip-gradient-legendary { | |||
background: linear-gradient(to bottom, #563E0D, #1B1A19, #1B1A19, #402951); | |||
} | |||
.bg3wiki-tooltip-gradient-story { | |||
background: linear-gradient(to bottom, #561D00, #1B1A19, #1B1A19, #402951); | |||
} | } |
Revision as of 19:02, 6 August 2023
/* All CSS here will be loaded for users of the mobile site */
:root.skin-citizen-dark {
--color-primary__h: 20;
--bg-dark: rgb(27 27 27);
}
.bg3wiki-info-blob {
background-color: var(--bg-dark);
font-family: monospace;
}
div.bg3wiki-info-blob {
display: inline-block;
padding: 0 1em 0 1em;
border-radius: 20px;
}
span.bg3wiki-info-blob {
padding: 0 0.5em 0 0.5em;
border-radius: 10px;
}
.bg3wiki-tooltip-box {
background: #1B1A19;
box-shadow:
rgba(0, 0, 0, 0.14) 3px 3px 6px 0px inset,
rgba(0, 0, 0, 0.14) -3px -3px 6px 1px inset;
border: 0.15rem solid #785000;
border-radius: 10px;
padding: 15px;
}
.bg3wiki-tooltip-gradient-common {
background: linear-gradient(to bottom, #1B1A19, #1B1A19, #1B1A19, #402951);
}
.bg3wiki-tooltip-gradient-uncommon {
background: linear-gradient(to bottom, #004915, #1B1A19, #1B1A19, #402951);
}
.bg3wiki-tooltip-gradient-rare {
background: linear-gradient(to bottom, #003749, #1B1A19, #1B1A19, #402951);
}
.bg3wiki-tooltip-gradient-veryrare {
background: linear-gradient(to bottom, #540032, #1B1A19, #1B1A19, #402951);
}
.bg3wiki-tooltip-gradient-legendary {
background: linear-gradient(to bottom, #563E0D, #1B1A19, #1B1A19, #402951);
}
.bg3wiki-tooltip-gradient-story {
background: linear-gradient(to bottom, #561D00, #1B1A19, #1B1A19, #402951);
}