hensei-web/components/SummonResult/index.scss
Justin Edmund 471b61b2c0 Clean up font-size
We'll have to change this to rems in the future, but at least we're just changing variables
2022-01-25 01:35:39 -08:00

48 lines
No EOL
834 B
SCSS

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