utils.less
555 Bytes
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
.wrap{
width: 1200px;
margin: 0 auto;
}
.clearfix{
&:after{
content: '';
display: block;
clear: both;
height: 0;
overflow: hidden;
font-size: 0;
}
}
.m-hide{
display: none !important;
visibility: hidden;
}
.font-gray{
color: #999;
}
.font-orange{
color: #ff6600;
}
.font-green{
color: #5ab02e;
}
.font-red{
color: #ff0808;
}
.text-left{
text-align: left !important;
}
.text-center{
text-align: center !important;
}
.text-right{
text-align: right !important;
}
.float-left{
float: left;
}
.float-right{
float: right;
}