This commit is contained in:
33333-33333 2026-06-25 17:43:24 +09:00
commit 16074232aa
40 changed files with 1509 additions and 732 deletions

View file

@ -675,3 +675,64 @@
font-size: 16px;
line-height: 1.2;
}
.ground-stat[data-ground-toggle] {
cursor: pointer;
user-select: none;
}
.ground-stat[data-ground-toggle]:focus-visible,
.ground-type-btn:focus-visible {
outline: 2px solid rgba(103,178,44,0.58);
outline-offset: 2px;
}
.save-hash-profile {
display: grid;
gap: 8px;
padding: 9px 10px;
border: 1px solid rgba(115, 91, 62, 0.18);
border-radius: 12px;
background: rgba(255,255,255,0.56);
color: #4a3929;
font-size: 12px;
}
.save-hash-profile:empty {
display: none;
}
.save-profile-summary {
display: flex;
flex-wrap: wrap;
gap: 6px 10px;
}
.save-profile-summary span {
padding: 3px 7px;
border-radius: 999px;
background: rgba(115, 91, 62, 0.08);
}
.save-profile-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
gap: 5px;
}
.save-profile-grid > div {
display: grid;
grid-template-columns: 1fr auto auto;
gap: 6px;
align-items: center;
padding: 4px 6px;
border-radius: 8px;
background: rgba(255,255,255,0.54);
}
.save-profile-grid em {
opacity: 0.62;
font-style: normal;
}
.save-profile-items {
display: flex;
flex-wrap: wrap;
gap: 5px 7px;
align-items: center;
}
.save-profile-items span {
padding: 2px 6px;
border-radius: 999px;
background: rgba(111, 153, 102, 0.13);
}