33 lines
510 B
CSS
33 lines
510 B
CSS
/* 1. 背景色 */
|
|
.page{
|
|
background-color: #EDEDED;
|
|
/* #ifndef APP-PLUS-NVUE */
|
|
min-height: 100vh;
|
|
height: auto;
|
|
/* #endif */
|
|
/* #ifdef APP-PLUS-NVUE */
|
|
flex: 1;
|
|
/* #endif */
|
|
}
|
|
/* 2. 主背景色 绿 */
|
|
.main-bg-color{
|
|
background-color: #06a1c0;
|
|
}
|
|
.main-bg-hover-color{
|
|
background-color: #06a1c0;
|
|
}
|
|
/* 3. 主文字色(绿) */
|
|
.main-text-color{
|
|
color: #06a1c0;
|
|
}
|
|
|
|
.border-main{
|
|
border-color: #06a1c0!important;
|
|
}
|
|
|
|
.bg-chat-item{
|
|
background-color: #06a1c0;
|
|
}
|
|
.text-chat-item{
|
|
color: #06a1c0;
|
|
} |