From Dark and Darker Wiki
No edit summary |
(Moving link hover color variable to root) |
||
(137 intermediate revisions by 7 users not shown) | |||
Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
.stripedtable tr:nth-child(even) { | |||
background-color: rgb(100,100,100,0.3); | |||
} | |||
/*============================================================= | /*============================================================= | ||
Element Colors | |||
==============================================================*/ | ==============================================================*/ | ||
.fire { | |||
color: rgb(171, 34, 0); | |||
} | |||
.ice { | |||
color: rgb(0, 255, 255); | |||
} | |||
.earth { | |||
color: rgb(153, 154, 41); | |||
} | |||
.air { | |||
color: rgb(207, 207, 207); | |||
} | |||
.lightning { | |||
color: rgb(0, 103, 217); | |||
} | |||
/*============================================================= | /*============================================================= | ||
Rarity Colors | |||
==============================================================*/ | |||
:root { | |||
--rarity-Elite: 255,30,30; | |||
--rarity-Nightmare: 120, 60, 140; | |||
--rarity-8: var(--rarity-Elite); | |||
--link-hover-color-rgb: 241,185,62; | |||
} | |||
.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)); | |||
} | |||
.cr0 { | |||
color: rgb(var(--rarity-0)); | |||
} | |||
.cr1 { | |||
color: rgb(var(--rarity-1)); | |||
} | |||
.cr2 { | |||
color: rgb(var(--rarity-2)); | |||
} | |||
.cr3 { | |||
color: rgb(var(--rarity-3)); | |||
} | |||
.cr4 { | |||
color: rgb(var(--rarity-4)); | |||
} | |||
.cr5 { | |||
color: rgb(var(--rarity-5)); | |||
} | |||
.cr6 { | |||
color: rgb(var(--rarity-6)); | |||
} | |||
.cr7 { | |||
color: rgb(var(--rarity-7)); | |||
} | |||
.cr8 { | |||
color: rgb(var(--rarity-Elite)); | |||
} | |||
.colorrarity8 { | |||
color: rgb(var(--rarity-Elite)); | |||
} | |||
/*============================================================= | |||
Enchantment Table | |||
==============================================================*/ | |||
table.enchantmenttable { | |||
border-collapse: separate; | |||
border-spacing: 0; | |||
text-align: center; | |||
font-weight: 500; | |||
color: #EEED; | |||
text-shadow: 1px 1px 2px #000; | |||
th { | |||
background-color: #777; | |||
padding: 5px; | |||
border: 1.5px solid #AAA9; | |||
} | |||
td { | |||
padding: 5px; | |||
border: 1px solid #AAA7; | |||
} | |||
tr:first-child { | |||
position: sticky; | |||
top: 0; | |||
height: 55px; | |||
z-index: 7; | |||
} | |||
tr:nth-child(2) { | |||
position: sticky; | |||
top: 55px; | |||
z-index: 7; | |||
} | |||
tr:nth-child(2n of #Attributes), | |||
tr:nth-child(1 of #Attributes) { | |||
background-color: #45753380; | |||
} | |||
tr:nth-child(2n of #Physical-Damage), | |||
tr:nth-child(1 of #Physical-Damage) { | |||
background-color: #BB432A80; | |||
} | |||
tr:nth-child(2n of #Magical-Damage), | |||
tr:nth-child(1 of #Magical-Damage) { | |||
background-color: #2A6DAC80; | |||
} | |||
tr:nth-child(2n of #Reductions), | |||
tr:nth-child(1 of #Reductions) { | |||
background-color: #99591A80; | |||
} | |||
tr:nth-child(2n of #Actions), | |||
tr:nth-child(1 of #Actions) { | |||
background-color: #8566B780; | |||
} | |||
tr:nth-child(2n of #Health), | |||
tr:nth-child(1 of #Health) { | |||
background-color: #FF300080; | |||
} | |||
tr:nth-child(2n of #Healing), | |||
tr:nth-child(1 of #Healing) { | |||
background-color: #2B884A80; | |||
} | |||
tr:nth-child(2n of #Statuses), | |||
tr:nth-child(1 of #Statuses) { | |||
background-color: #B340B380; | |||
} | |||
tr:nth-child(2n of #Memory), | |||
tr:nth-child(1 of #Memory) { | |||
background-color: #2B9DA180; | |||
} | |||
tr:nth-child(2n of #Misc), | |||
tr:nth-child(1 of #Misc) { | |||
background-color: #F3CE2B80; | |||
} | |||
td:nth-child(2n of :not([colspan]):not([id="gem"])):not(:first-child):not(:last-child) { | |||
text-align: right; | |||
border-right: none; | |||
} | |||
td:nth-child(2n+1 of :not([colspan]):not([id="gem"])):not(:first-child):not(:last-child) { | |||
text-align: left; | |||
border-left: none; | |||
} | |||
} | |||
/*============================================================= | |||
Notice | |||
==============================================================*/ | |||
div.notice{ | |||
position:relative; | |||
>div:first-child { | |||
position:absolute; | |||
height:100%; | |||
width:100%; | |||
background:linear-gradient(#0000 0%, #000B 5%, #000 50%, #000B 95%, #0000 100%); | |||
>div:first-child { | |||
position:absolute; | |||
height:100%; | |||
width:100%; | |||
z-index:999; | |||
>p { | |||
position:relative; | |||
width:100%; | |||
top:60%; | |||
text-align:center; | |||
font-size:18px; | |||
text-decoration:underline; | |||
} | |||
} | |||
>div:first-child+div { | |||
position:relative; | |||
width:100%; | |||
top:35%; | |||
transform:translateY(-50%); text-align:center; | |||
>p { | |||
font-size:24px; | |||
} | |||
} | |||
} | |||
} | |||
/*============================================================= | |||
Loot and Drop Source Table Classes | |||
==============================================================*/ | |||
table.loottable, table.dropsourcetable { | |||
border-spacing: 0px; | |||
border-collapse:collapse; | |||
padding: 10px; | |||
text-align:center; | |||
vertical-align:middle; | |||
text-shadow:1px 1px 4px #000; | |||
& td[rowspan] { | |||
background-color: black; | |||
} | |||
& caption, & th, & td { | |||
border: 1px solid #eeea; | |||
padding: 5px; | |||
} | |||
& caption, & th, &.summary td:first-child { | |||
background-color: #eee3; | |||
font-weight: bold; | |||
} | |||
& div.iconbox { | |||
display: inline-flex; | |||
width: max-content; | |||
max-width: initial; | |||
flex-direction: column; | |||
align-items: center; | |||
flex-wrap: wrap; | |||
white-space: pre-wrap; | |||
>a { | |||
font-weight: bold; | |||
} | |||
} | |||
} | |||
table.loottable { | |||
& tr:has(> :last-child:nth-child(6)):has(> td) { | |||
border-top: 3px solid #eeea; | |||
} | |||
} | |||
table.dropsourcetable { | |||
& tr:has(> :last-child:nth-child(4)):has(> td) { | |||
border-top: 3px solid #eeea; | |||
} | |||
} | |||
/*============================================================= | |||
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{ | .flexbox{ | ||
Line 49: | Line 295: | ||
text-align: right; | text-align: right; | ||
} | } | ||
/*============================================================= | /*============================================================= | ||
Tabs (Template:StatsCardWeaponTabs) | |||
==============================================================*/ | ==============================================================*/ | ||
Line 58: | Line 305: | ||
margin-left:25px; | margin-left:25px; | ||
display: flex; | display: flex; | ||
flex-direction: column; | |||
} | } | ||
.cardtabs__buttons { | .cardtabs__buttons { | ||
display: flex; | |||
flex-direction: row; | |||
align-items: flex-end; | |||
} | } | ||
.cardtabs__button { | .cardtabs__button { | ||
Line 72: | Line 319: | ||
position: relative; | position: relative; | ||
flex-grow: 1; | flex-grow: 1; | ||
text-align: center; | |||
} | } | ||
.cardtabs__panel { | .cardtabs__panel { | ||
Line 82: | Line 329: | ||
} | } | ||
.cardtabs__button:not(.cardtabs__button--disabled):hover { | .cardtabs__button:not(.cardtabs__button--disabled):hover { | ||
cursor: url('/skins/ScratchWikiSkin2/resources/custom-cursorlink.webp?bccaa') 4 4, auto; | |||
} | } | ||
.cardtabs__button--active { | .cardtabs__button--active { | ||
Line 91: | Line 338: | ||
/* Info/Unlock panels */ | /* Info/Unlock panels */ | ||
.cardtabs__button--icon-info img { | .cardtabs__button--icon-info img { | ||
position: relative; | |||
top: -2px; | |||
} | } | ||
.cardtabs__button--icon-unlock img { | .cardtabs__button--icon-unlock img { | ||
position: relative; | |||
top: -1px; | |||
} | } | ||
.cardtabs__button--icon-unlock { | .cardtabs__button--icon-unlock { | ||
padding-bottom: 0; | padding-bottom: 0; | ||
} | } | ||
/*============================================================= | /*============================================================= | ||
Toggle Buttons (Template:ToggleStart + Template:ToggleButton) | |||
==============================================================*/ | ==============================================================*/ | ||
.btn { | .btn { | ||
background: rgba(255,255,255,0.05); | background: rgba(255,255,255,0.05); | ||
Line 123: | Line 368: | ||
} | } | ||
.btn--link > a { | .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 { | .btn--active { | ||
border-color: #366436; | |||
} | } | ||
.btn--inactive { | .btn--inactive { | ||
border-color: #643636; | |||
} | |||
.tab{ | |||
--link-color: 231,159,52; | |||
color: rgba(var(--link-color),0.9); | |||
margin: 5px; | |||
border-radius: 5px; | |||
border-width: 1px; | |||
border-style: solid; | |||
border-color: rgba(var(--link-color),0.3); | |||
padding: 2px 5px 2px 5px; | |||
user-select: none; | |||
} | |||
.tab:hover, .tab:focus{ | |||
color: rgb(var(--link-hover-color-rgb)); | |||
cursor: url(/skins/ScratchWikiSkin2/resources/custom-cursorlink.webp?45785)4 4,auto; | |||
text-decoration: underline; | |||
box-shadow: 0px 0px 10px rgba(var(--link-hover-color-rgb), 1); | |||
background: rgba(var(--link-hover-color-rgb), 0.07); | |||
} | |||
.selected-tab{ | |||
color: rgb(var(--link-hover-color-rgb)); | |||
box-shadow: 0px 0px 10px rgb(var(--link-hover-color-rgb),0.5); | |||
background: rgba(var(--link-hover-color-rgb), 0.2); | |||
} | |||
/*============================================================= | |||
Other Templates | |||
==============================================================*/ | |||
/* Template:MiniIconbox */ | |||
.iconbox--inline { | |||
margin: 0; | |||
vertical-align: baseline; | |||
} | |||
/*============================================================= | |||
Auto-width/column classes | |||
==============================================================*/ | |||
.col-1 { | |||
width: 8.33%; | |||
} | |||
.col-2 { | |||
width: 16.66%; | |||
} | |||
.col-3 { | |||
width: 25%; | |||
} | |||
.col-4 { | |||
width: 33.33%; | |||
} | |||
.col-5 { | |||
width: 41.66%; | |||
} | |||
.col-6 { | |||
width: 50%; | |||
} | |||
.col-7 { | |||
width: 58.33%; | |||
} | |||
.col-8 { | |||
width: 66.66%; | |||
} | |||
.col-9 { | |||
width: 75%; | |||
} | |||
.col-10 { | |||
width: 83.33%; | |||
} | |||
.col-11 { | |||
width: 91.6%; | |||
} | |||
.col-12 { | |||
width: 100%; | |||
} | |||
/*============================================================= | |||
Basic tooltip classes | |||
==============================================================*/ | |||
.tooltip { | |||
position: relative; | |||
} | |||
.tooltip .tooltiptext { | |||
visibility: hidden; | |||
background-color: #000D; | |||
color: #fff; | |||
text-align: center; | |||
padding: 5px; | |||
border-radius: 3px; | |||
/* Position the tooltip text - see examples below! */ | |||
position: absolute; | |||
z-index: 1; | |||
width: 200px; | |||
bottom: 100%; | |||
left: 50%; | |||
margin-left: -100px; /* Use half of the width (120/2 = 60), to center the tooltip */ | |||
} | |||
.tooltip:hover .tooltiptext { | |||
visibility: visible; | |||
} | |||
.tooltip .tooltiptext-right { | |||
visibility: hidden; | |||
background-color: #000a; | |||
color: #db8; | |||
text-align: center; | |||
white-space: nowrap; | |||
padding: 5px; | |||
border-radius: 3px; | |||
/* Position the tooltip text - see examples below! */ | |||
position: absolute; | |||
z-index: 1; | |||
width: fit-content; | |||
bottom: 110%; | |||
right: 0%; | |||
} | |||
.tooltip:hover .tooltiptext-right { | |||
visibility: visible; | |||
} | |||
.tooltip .tooltiptext-left { | |||
visibility: hidden; | |||
background-color: #000D; | |||
color: #fff; | |||
text-align: center; | |||
padding: 5px; | |||
border-radius: 3px; | |||
/* Position the tooltip text - see examples below! */ | |||
position: absolute; | |||
z-index: 1; | |||
width: 200px; | |||
left: -15%; | |||
} | |||
.tooltip:hover .tooltiptext-left { | |||
visibility: visible; | |||
} | |||
/*============================================================= | |||
Infobox tooltip classes | |||
==============================================================*/ | |||
.InfoboxTooltip { | |||
position: relative; | |||
display: inline-block; | |||
} | |||
.InfoboxTooltipContent { | |||
visibility: hidden; | |||
background-color: rgb(var(--background-color), 0.9) !important; | |||
position: absolute; | |||
z-index: 8; | |||
} | |||
.InfoboxTooltip:hover .InfoboxTooltipContent { | |||
visibility: visible; | |||
} | |||
.ClassesTable { | |||
width:60%; | |||
color:#eee; | |||
background:transparent; | |||
text-align:center; | |||
vertical-align:middle; | |||
border-spacing: 0px; | |||
} | |||
@media screen and (max-width: 481px) { | |||
.ClassesTable { | |||
width: 100%; | |||
} | |||
} | } |
Latest revision as of 20:55, 7 May 2025
/* CSS placed here will be applied to all skins */
.stripedtable tr:nth-child(even) {
background-color: rgb(100,100,100,0.3);
}
/*=============================================================
Element Colors
==============================================================*/
.fire {
color: rgb(171, 34, 0);
}
.ice {
color: rgb(0, 255, 255);
}
.earth {
color: rgb(153, 154, 41);
}
.air {
color: rgb(207, 207, 207);
}
.lightning {
color: rgb(0, 103, 217);
}
/*=============================================================
Rarity Colors
==============================================================*/
:root {
--rarity-Elite: 255,30,30;
--rarity-Nightmare: 120, 60, 140;
--rarity-8: var(--rarity-Elite);
--link-hover-color-rgb: 241,185,62;
}
.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));
}
.cr0 {
color: rgb(var(--rarity-0));
}
.cr1 {
color: rgb(var(--rarity-1));
}
.cr2 {
color: rgb(var(--rarity-2));
}
.cr3 {
color: rgb(var(--rarity-3));
}
.cr4 {
color: rgb(var(--rarity-4));
}
.cr5 {
color: rgb(var(--rarity-5));
}
.cr6 {
color: rgb(var(--rarity-6));
}
.cr7 {
color: rgb(var(--rarity-7));
}
.cr8 {
color: rgb(var(--rarity-Elite));
}
.colorrarity8 {
color: rgb(var(--rarity-Elite));
}
/*=============================================================
Enchantment Table
==============================================================*/
table.enchantmenttable {
border-collapse: separate;
border-spacing: 0;
text-align: center;
font-weight: 500;
color: #EEED;
text-shadow: 1px 1px 2px #000;
th {
background-color: #777;
padding: 5px;
border: 1.5px solid #AAA9;
}
td {
padding: 5px;
border: 1px solid #AAA7;
}
tr:first-child {
position: sticky;
top: 0;
height: 55px;
z-index: 7;
}
tr:nth-child(2) {
position: sticky;
top: 55px;
z-index: 7;
}
tr:nth-child(2n of #Attributes),
tr:nth-child(1 of #Attributes) {
background-color: #45753380;
}
tr:nth-child(2n of #Physical-Damage),
tr:nth-child(1 of #Physical-Damage) {
background-color: #BB432A80;
}
tr:nth-child(2n of #Magical-Damage),
tr:nth-child(1 of #Magical-Damage) {
background-color: #2A6DAC80;
}
tr:nth-child(2n of #Reductions),
tr:nth-child(1 of #Reductions) {
background-color: #99591A80;
}
tr:nth-child(2n of #Actions),
tr:nth-child(1 of #Actions) {
background-color: #8566B780;
}
tr:nth-child(2n of #Health),
tr:nth-child(1 of #Health) {
background-color: #FF300080;
}
tr:nth-child(2n of #Healing),
tr:nth-child(1 of #Healing) {
background-color: #2B884A80;
}
tr:nth-child(2n of #Statuses),
tr:nth-child(1 of #Statuses) {
background-color: #B340B380;
}
tr:nth-child(2n of #Memory),
tr:nth-child(1 of #Memory) {
background-color: #2B9DA180;
}
tr:nth-child(2n of #Misc),
tr:nth-child(1 of #Misc) {
background-color: #F3CE2B80;
}
td:nth-child(2n of :not([colspan]):not([id="gem"])):not(:first-child):not(:last-child) {
text-align: right;
border-right: none;
}
td:nth-child(2n+1 of :not([colspan]):not([id="gem"])):not(:first-child):not(:last-child) {
text-align: left;
border-left: none;
}
}
/*=============================================================
Notice
==============================================================*/
div.notice{
position:relative;
>div:first-child {
position:absolute;
height:100%;
width:100%;
background:linear-gradient(#0000 0%, #000B 5%, #000 50%, #000B 95%, #0000 100%);
>div:first-child {
position:absolute;
height:100%;
width:100%;
z-index:999;
>p {
position:relative;
width:100%;
top:60%;
text-align:center;
font-size:18px;
text-decoration:underline;
}
}
>div:first-child+div {
position:relative;
width:100%;
top:35%;
transform:translateY(-50%); text-align:center;
>p {
font-size:24px;
}
}
}
}
/*=============================================================
Loot and Drop Source Table Classes
==============================================================*/
table.loottable, table.dropsourcetable {
border-spacing: 0px;
border-collapse:collapse;
padding: 10px;
text-align:center;
vertical-align:middle;
text-shadow:1px 1px 4px #000;
& td[rowspan] {
background-color: black;
}
& caption, & th, & td {
border: 1px solid #eeea;
padding: 5px;
}
& caption, & th, &.summary td:first-child {
background-color: #eee3;
font-weight: bold;
}
& div.iconbox {
display: inline-flex;
width: max-content;
max-width: initial;
flex-direction: column;
align-items: center;
flex-wrap: wrap;
white-space: pre-wrap;
>a {
font-weight: bold;
}
}
}
table.loottable {
& tr:has(> :last-child:nth-child(6)):has(> td) {
border-top: 3px solid #eeea;
}
}
table.dropsourcetable {
& tr:has(> :last-child:nth-child(4)):has(> td) {
border-top: 3px solid #eeea;
}
}
/*=============================================================
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{
--link-color: 231,159,52;
color: rgba(var(--link-color),0.9);
margin: 5px;
border-radius: 5px;
border-width: 1px;
border-style: solid;
border-color: rgba(var(--link-color),0.3);
padding: 2px 5px 2px 5px;
user-select: none;
}
.tab:hover, .tab:focus{
color: rgb(var(--link-hover-color-rgb));
cursor: url(/skins/ScratchWikiSkin2/resources/custom-cursorlink.webp?45785)4 4,auto;
text-decoration: underline;
box-shadow: 0px 0px 10px rgba(var(--link-hover-color-rgb), 1);
background: rgba(var(--link-hover-color-rgb), 0.07);
}
.selected-tab{
color: rgb(var(--link-hover-color-rgb));
box-shadow: 0px 0px 10px rgb(var(--link-hover-color-rgb),0.5);
background: rgba(var(--link-hover-color-rgb), 0.2);
}
/*=============================================================
Other Templates
==============================================================*/
/* Template:MiniIconbox */
.iconbox--inline {
margin: 0;
vertical-align: baseline;
}
/*=============================================================
Auto-width/column classes
==============================================================*/
.col-1 {
width: 8.33%;
}
.col-2 {
width: 16.66%;
}
.col-3 {
width: 25%;
}
.col-4 {
width: 33.33%;
}
.col-5 {
width: 41.66%;
}
.col-6 {
width: 50%;
}
.col-7 {
width: 58.33%;
}
.col-8 {
width: 66.66%;
}
.col-9 {
width: 75%;
}
.col-10 {
width: 83.33%;
}
.col-11 {
width: 91.6%;
}
.col-12 {
width: 100%;
}
/*=============================================================
Basic tooltip classes
==============================================================*/
.tooltip {
position: relative;
}
.tooltip .tooltiptext {
visibility: hidden;
background-color: #000D;
color: #fff;
text-align: center;
padding: 5px;
border-radius: 3px;
/* Position the tooltip text - see examples below! */
position: absolute;
z-index: 1;
width: 200px;
bottom: 100%;
left: 50%;
margin-left: -100px; /* Use half of the width (120/2 = 60), to center the tooltip */
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
.tooltip .tooltiptext-right {
visibility: hidden;
background-color: #000a;
color: #db8;
text-align: center;
white-space: nowrap;
padding: 5px;
border-radius: 3px;
/* Position the tooltip text - see examples below! */
position: absolute;
z-index: 1;
width: fit-content;
bottom: 110%;
right: 0%;
}
.tooltip:hover .tooltiptext-right {
visibility: visible;
}
.tooltip .tooltiptext-left {
visibility: hidden;
background-color: #000D;
color: #fff;
text-align: center;
padding: 5px;
border-radius: 3px;
/* Position the tooltip text - see examples below! */
position: absolute;
z-index: 1;
width: 200px;
left: -15%;
}
.tooltip:hover .tooltiptext-left {
visibility: visible;
}
/*=============================================================
Infobox tooltip classes
==============================================================*/
.InfoboxTooltip {
position: relative;
display: inline-block;
}
.InfoboxTooltipContent {
visibility: hidden;
background-color: rgb(var(--background-color), 0.9) !important;
position: absolute;
z-index: 8;
}
.InfoboxTooltip:hover .InfoboxTooltipContent {
visibility: visible;
}
.ClassesTable {
width:60%;
color:#eee;
background:transparent;
text-align:center;
vertical-align:middle;
border-spacing: 0px;
}
@media screen and (max-width: 481px) {
.ClassesTable {
width: 100%;
}
}