From Dark and Darker Wiki
mNo edit summary |
mNo edit summary |
||
Line 171: | Line 171: | ||
border-radius: 5px; | border-radius: 5px; | ||
padding:5px; | padding:5px; | ||
user-select:none; | |||
} | } | ||
Revision as of 02:45, 29 November 2023
/* CSS placed here will be applied to all skins */
.stripedtable tr:nth-child(even) {
background-color: rgb(100,100,100,0.3);
}
/*=============================================================
Rarity Colors
==============================================================*/
:root {
--rarity-Elite: 255,30,30;
--rarity-Nightmare: 120, 60, 140;
}
.rarityElite {
border: 1px solid rgb(var(--rarity-Elite),.5);
background: linear-gradient(360deg,rgb(var(--rarity-Elite),.5),rgba(0,0,0,0.5));
}
.colorrarityElite {
color: rgb(var(--rarity-Elite));
}
.rarityNightmare {
border: 1px solid rgb(var(--rarity-Nightmare),.5);
background: linear-gradient(360deg,rgb(var(--rarity-Nightmare),.5),rgba(0,0,0,0.5));
}
.colorrarityNightmare {
color: rgb(var(--rarity-Nightmare));
}
/*=============================================================
Class Page /Classes
==============================================================*/
.image-row {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
margin-top: 20px;
}
.image-container {
position: relative;
margin: 10px;
height: fit-content;
}
.image-container img {
display: block;
height: auto;
max-width: 100%;
}
.image-container .text {
position: absolute;
bottom: -20;
left: 0;
width: 100%;
background-color: transparent;
padding: 5px;
font-size: 18px;
font-weight: bold;
color: white;
text-align: center;
}
/*=============================================================
Portal Page /Portals
==============================================================*/
.flexbox{
display: flex;
flex-direction: row;
}
.flexboxtext{
flex: 2;
}
.flexboximage{
flex: 1;
text-align: right;
}
/*=============================================================
Tabs (Template:StatsCardWeaponTabs)
==============================================================*/
/* See also: MediaWiki:Common.js */
.cardtabs{
float:right;
margin-left:25px;
display: flex;
flex-direction: column;
}
.cardtabs__buttons {
display: flex;
flex-direction: row;
align-items: flex-end;
}
.cardtabs__button {
border-radius: 5px 5px 0 0;
display: inline-block;
font-size: 13px;
line-height: 1.5;
position: relative;
flex-grow: 1;
text-align: center;
}
.cardtabs__panel {
position: relative;
z-index: 1;
}
.cardtabs__panel--js-hidden {
display: none;
}
.cardtabs__button:not(.cardtabs__button--disabled):hover {
cursor: url('/skins/ScratchWikiSkin2/resources/custom-cursorlink.webp?bccaa') 4 4, auto;
}
.cardtabs__button--active {
border-bottom: 0;
z-index: 1;
box-shadow: 0px -1px 7px 0px #fff;
}
/* Info/Unlock panels */
.cardtabs__button--icon-info img {
position: relative;
top: -2px;
}
.cardtabs__button--icon-unlock img {
position: relative;
top: -1px;
}
.cardtabs__button--icon-unlock {
padding-bottom: 0;
}
/*=============================================================
Toggle Buttons (Template:ToggleStart + Template:ToggleButton)
==============================================================*/
.btn {
background: rgba(255,255,255,0.05);
border-radius: 3px;
border: 1px solid white;
display: inline-block;
font-size: 0.85rem;
font-weight: bold;
padding: 6px 10px;
}
.btn:hover {
background: rgba(255,255,255,0.1);
}
.btn--link {
padding: 0;
}
.btn--link > a {
padding: 6px 15px 6px 10px;
padding-right: 15px !important; /* override needed due to exteral link bg image icon */
display: inline-block;
}
.btn--active {
border-color: #366436;
}
.btn--inactive {
border-color: #643636;
}
.tab{
color: rgb(var(--link-color));
margin:15px 0 15px 10px;
/*border: transparent solid 3px;*/
border-radius: 5px;
padding:5px;
user-select:none;
}
.tab:hover,
.tab:focus{
color: rgb(var(--link-hover-color));
cursor: url(/skins/ScratchWikiSkin2/resources/custom-cursorlink.webp?45785)4 4,auto;
text-decoration: underline;
}
.selected-tab{
/*border: #e79f34 solid 3px;*/
box-shadow: 0px 0px 10px rgb(var(--link-hover-color));
}