CSS 微调

This commit is contained in:
枫谷剑仙 2024-07-31 02:40:11 +08:00
parent ab9b13cad9
commit 3d63a86682
2 changed files with 11 additions and 7 deletions

View File

@ -1679,11 +1679,13 @@
.attr
{
display: inline-block;
width: 36px;
height: 36px;
line-height: 36px;
--icon-width: 36px;
--icon-height: 36px;
width: var(--icon-width);
height: var(--icon-height);
background-image: url(images/attrs.png);
background-position-y:calc(36px);
background-position-y: var(--icon-height);
background-repeat: no-repeat;
vertical-align: bottom;
}

View File

@ -3152,7 +3152,7 @@ input[disabled]+.awoken-icon:active,
.skill-datail-parsed{
color: black;
padding: 0 8px 6px 8px;
line-height: 25px;
line-height: 1.25em;
white-space: break-spaces;
}
.skill-datail-parsed{
@ -4524,10 +4524,12 @@ body.external-link-support #external-support{
.icon-skill::after,
.icon-skill::before
{
--icon-width: 36px;
--icon-height: 36px;
width: var(--icon-width);
height: var(--icon-height);
font-weight: normal;
display: inline-block;
width: 36px;
height: 36px;
background-image: url(images/icon-skills.png);
background-repeat: no-repeat;
}