You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
696 B
55 lines
696 B
5 months ago
|
/**app.wxss**/
|
||
|
@import "./style/layout.wxss";
|
||
|
|
||
|
.container {
|
||
|
font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: space-between;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
page {
|
||
|
background-color: #fbf9fe;
|
||
|
}
|
||
|
|
||
|
.green{
|
||
|
color: #09BB07;
|
||
|
}
|
||
|
.red{
|
||
|
color: #F76260;
|
||
|
}
|
||
|
.blue{
|
||
|
color: #10AEFF;
|
||
|
}
|
||
|
.yellow{
|
||
|
color: #FFBE00;
|
||
|
}
|
||
|
.gray{
|
||
|
color: #C9C9C9;
|
||
|
}
|
||
|
|
||
|
.strong{
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.bc_green{
|
||
|
background-color: #09BB07;
|
||
|
}
|
||
|
.bc_red{
|
||
|
background-color: #F76260;
|
||
|
}
|
||
|
.bc_blue{
|
||
|
background-color: #10AEFF;
|
||
|
}
|
||
|
.bc_yellow{
|
||
|
background-color: #FFBE00;
|
||
|
}
|
||
|
.bc_gray{
|
||
|
background-color: #C9C9C9;
|
||
|
}
|
||
|
|
||
|
.tc{
|
||
|
text-align: center;
|
||
|
}
|