31 lines
467 B
Plaintext
31 lines
467 B
Plaintext
|
|
.head{
|
|
width:100%;
|
|
height:30px;
|
|
color:#fff;
|
|
background-color: cornflowerblue;
|
|
text-align: left;
|
|
display:flex;
|
|
flex-direction: row;
|
|
}
|
|
.btns{
|
|
height:40px;
|
|
display:flex;
|
|
padding: 4px;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
text-align:center;
|
|
background-color: white;
|
|
}
|
|
.txlabel{
|
|
color:#fff;
|
|
background-color: rgb(216, 140, 0);
|
|
border-radius: 2px;
|
|
padding: 1px 4px;
|
|
}
|
|
.weui-article{
|
|
background-color: white;
|
|
padding: 24px 16px;
|
|
}
|
|
|