59 lines
875 B
SCSS
59 lines
875 B
SCSS
.characterContainer {
|
|
|
|
position: relative;
|
|
text-align: center;
|
|
color: white;
|
|
}
|
|
|
|
ion-item {
|
|
--padding-start: 0;
|
|
--inner-padding-end: 0;
|
|
}
|
|
|
|
ion-label {
|
|
margin-top: 12px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.characterNameContainer {
|
|
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
position: absolute;
|
|
z-index: 99999;
|
|
background-color: rgba(0, 0, 0, 0.7);
|
|
bottom: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.characterNameContainer ion-label {
|
|
|
|
font-size: 1rem !important;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.characterStats {
|
|
|
|
text-align: center;
|
|
margin-top: 1.5rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.characterStat {
|
|
|
|
background-color: var(--ion-color-primary);
|
|
padding: 1rem;
|
|
}
|
|
|
|
.characterStat ion-card-title {
|
|
|
|
font-size: 1rem;
|
|
--color: white;
|
|
}
|
|
|
|
.characterStat ion-card-subtitle {
|
|
|
|
font-size: 1rem;
|
|
--color: white;
|
|
} |