User:Sur/minerva.css: Difference between revisions
< User:Sur
mNo edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
/* Used for {{Infobox_stat}} and [[Module:HeroData]]'s write_stat_infoboxes for hero pages */ | |||
} | |||
.stat- | .stat-infobox-table { | ||
width: 100%; | width: 100%; | ||
border-collapse: separate; | border-collapse: separate; | ||
margin-top: 10px; /* Add space above to prevent overlap with content above */ | |||
margin-bottom: 10px; /* Add space below the table */ | |||
} | } | ||
.stat- | .stat-infobox-table th, | ||
.stat- | .stat-infobox-table td { | ||
padding: 5px; | padding: 5px; | ||
text-align: center; | text-align: center; | ||
Line 113: | Line 22: | ||
} | } | ||
.stat- | .stat-infobox-table th:hover, | ||
.stat- | .stat-infobox-table td:hover { | ||
overflow: visible; | overflow: visible; | ||
text-overflow: clip; | text-overflow: clip; | ||
Line 120: | Line 29: | ||
} | } | ||
.stat- | .stat-infobox-table td::before, | ||
.stat- | .stat-infobox-table th::before { | ||
content: ''; | content: ''; | ||
top: 0; | top: 0; | ||
left: 0; | left: 0; | ||
Line 132: | Line 40: | ||
} | } | ||
.stat- | .stat-infobox-table .darker { | ||
background-color: rgba(0, 0, 0, 0.25); | background-color: rgba(0, 0, 0, 0.25); | ||
} | } |
Revision as of 20:11, 22 September 2024
/* Used for {{Infobox_stat}} and [[Module:HeroData]]'s write_stat_infoboxes for hero pages */
.stat-infobox-table {
width: 100%;
border-collapse: separate;
margin-top: 10px; /* Add space above to prevent overlap with content above */
margin-bottom: 10px; /* Add space below the table */
}
.stat-infobox-table th,
.stat-infobox-table td {
padding: 5px;
text-align: center;
background-color: rgba(0, 0, 0, 0.08);
border: 1px solid black;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
position: relative;
max-width: 320px;
font-family: 'Retail Demo', sans-serif;
}
.stat-infobox-table th:hover,
.stat-infobox-table td:hover {
overflow: visible;
text-overflow: clip;
background-color: rgba(0, 0, 0, .4);
}
.stat-infobox-table td::before,
.stat-infobox-table th::before {
content: '';
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.08);
mix-blend-mode: multiply;
}
.stat-infobox-table .darker {
background-color: rgba(0, 0, 0, 0.25);
}