hensei-web/components/WeaponResult/index.scss
2022-01-24 21:54:50 -08:00

48 lines
No EOL
819 B
SCSS

.WeaponResult {
-webkit-font-smoothing: antialiased;
border-radius: 6px;
display: flex;
font-family: -apple-system, "Helvetica Neue", "Lucida Grande";
gap: 8px;
padding: 12px;
}
.WeaponResult img {
background: #e9e9e9;
border-radius: 6px;
display: inline-block;
height: 72px;
width: 120px;
}
.WeaponResult h5 {
color: #555;
display: inline-block;
font-size: 18px;
font-weight: 500;
margin: 2px 4px 4px 0;
}
.WeaponResult .WeaponLabelIcon {
margin-right: 4px;
}
.WeaponResult .stars {
display: inline-block;
color: #FFA15E;
font-size: 21px;
}
.WeaponResult .stars > span {
color: #65DAFF;
}
.WeaponResult:hover {
background: #e9e9e9;
cursor: pointer;
}
.WeaponResult:hover .image_placeholder {
background: #dadada;
}