34 lines
486 B
Plaintext
34 lines
486 B
Plaintext
/* pages/residents/reportHistory.wxss */
|
|
.item {
|
|
/* background-color: #dedede; */
|
|
border-radius: 8px;
|
|
margin: 12px 20px;
|
|
padding: 18px;
|
|
display: grid;
|
|
grid-template-columns: 1fr auto;
|
|
place-items: center left;
|
|
color: white;
|
|
}
|
|
|
|
.item.normal {
|
|
background-color: green;
|
|
}
|
|
|
|
.item.abnormal {
|
|
background-color: red;
|
|
}
|
|
|
|
.record_time {
|
|
font-size: 17px;
|
|
}
|
|
|
|
.record_address {
|
|
font-size: 15px;
|
|
}
|
|
|
|
.statusText {
|
|
font-size: large;
|
|
font-weight: bold;
|
|
padding: 0 20px;
|
|
}
|