74 lines
1.4 KiB
Plaintext
74 lines
1.4 KiB
Plaintext
.container {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
.info {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
padding: 24px;
|
|
height: 240px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
|
|
.top {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.middle {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.bottom {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.box {
|
|
flex: 1;
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
row-gap: 8px;
|
|
justify-items: center;
|
|
}
|
|
|
|
.label {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.value {
|
|
font-size: 14px;
|
|
font-weight: bolder;
|
|
}
|
|
|
|
.fortify {
|
|
.label {
|
|
font-size: x-large;
|
|
}
|
|
|
|
.value {
|
|
font-size: x-large;
|
|
}
|
|
}
|
|
}
|
|
|
|
.btn {
|
|
width: 40%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
|
|
.item {
|
|
width: 100%;
|
|
}
|
|
}
|
|
} |