60 lines
1.3 KiB
Plaintext
60 lines
1.3 KiB
Plaintext
.container {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
background-color: var(--oak-bg-color-page);
|
|
// min-height: 500px;
|
|
|
|
.info {
|
|
margin: 8px;
|
|
height: 140px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-color: var(--oak-color-info);
|
|
|
|
.should {
|
|
font-size: large;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.price {
|
|
display: flex;
|
|
flex-direction: row;
|
|
padding: 3px;
|
|
font-size: xx-large;
|
|
font-weight: bolder;
|
|
color: var(--oak-color-primary)
|
|
}
|
|
}
|
|
|
|
.ctrl {
|
|
margin: 8px;
|
|
margin-top: 10px;
|
|
flex: 1;
|
|
|
|
.pc1 {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 4px;
|
|
|
|
.content {
|
|
background-color: var(--oak-bg-color-container);
|
|
padding: 4px;
|
|
border-radius: 2px;
|
|
padding: 16px;
|
|
|
|
.tips {
|
|
color: var(--oak-color-warning);
|
|
font-size: small;
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |