1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| /*
| *这是单独为hello mui准备的个性化css,可以覆盖标准mui的css定义;
| * 在实际项目开发时,建议为App单独写一个css文件,从而实现项目的自定义皮肤功能;
| *
| * */
| .mui-plus.mui-android header.mui-bar{
| display: none;
| }
| .mui-plus.mui-android .mui-bar-nav~.mui-content{
| padding: 0;
| }
|
| /*hm开头的表示仅为 Hello MUI示例定义*/
| .hm-description{
| margin: .5em 0;
| }
|
| .hm-description>li {
| font-size: 14px;
| color: #8f8f94;
| }
|
|