First commit of group-ironmen-master directory.

This commit is contained in:
2025-10-27 08:25:16 +08:00
commit a8467389ef
26390 changed files with 35396 additions and 0 deletions

View File

@@ -0,0 +1,67 @@
skill-graph {
display: block;
max-width: 100%;
overflow: hidden;
position: relative;
}
.skill-graph__skill-image {
position: absolute;
height: 50%;
top: 50%;
left: 0;
right: 0;
margin: auto;
transform: translateY(-50%);
image-rendering: crisp-edges;
image-rendering: pixelated;
opacity: 0.2;
z-index: 0;
}
.skill-graph__top {
position: relative;
}
.skill-graph__container {
position: relative;
height: max(40vh, 300px);
z-index: 1;
background: rgba(255, 255, 255, 0.05);
}
.skill-graph__table-container {
padding: 1em 2em 0 2em;
}
.skill-graph__table-container table {
width: 100%;
border-collapse: collapse;
font-size: 20px;
}
.skill-graph__table-container tr {
border-bottom: 1px solid var(--graph-grid-border);
}
.skill-graph__table-container tr:hover {
border-bottom: 1px solid white;
}
.skill-graph__table-container td {
padding: 4px;
}
.skill-graph__overall-skill-change {
font-size: 18px;
}
.skill-graph__overall-skill-change > td:first-child {
display: flex;
align-items: center;
}
.skill-graph__overall-skill-change img {
margin-right: 0.5em;
width: 1.25em;
}