313ce84a
songchongxian
创建h5 app项目
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
*{
padding: 0;
margin: 0;
font-size: 14px;
list-style: none;
}
body,html{
width: 100%;
height: 100%;
box-sizing: border-box;
}
.bodybg{
border-top-right-radius: 10px;
border-top-left-radius: 10px;
height: 100%;
background: -moz-linear-gradient(top, rgba(113, 152, 130, 1), rgba(38,154, 196, 1)) ;
background: -webkit-gradient(linear, 0 0, 0 bottom, from(rgba(113, 152, 130, 1)), to(rgba(38,154, 196, 1))) ;
background: -o-linear-gradient(top, rgba(113, 152, 130, 1), rgba(38,154, 196, 1));
background-size: 100%;
}
.row{
/*margin: 0 auto;*/
margin-left: 0 ;
margin-right: 0 ;
width: 100%;
padding-left: 0;
padding-right: 0;
}
input{
outline: none;
}
.minectop i,.vptop .vipdh>div:first-child>i{
font-size: 22px;
}
|