-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommon.less
More file actions
69 lines (57 loc) · 904 Bytes
/
Copy pathcommon.less
File metadata and controls
69 lines (57 loc) · 904 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
56
57
58
59
60
61
62
63
64
65
66
67
68
@charset "utf-8";
body, html {
font-family: 'PingFang SC','微软雅黑','Microsoft YaHei',arial,sans-serif;
width: 100%;
height: 100%;
}
input,button {
outline: none;
}
//同级路由动化渐变
.router-fade-enter-active {
transition: opacity .5s;
// transition: all .5s;
}
.router-fade-enter {
// transform: translate3d(2rem, 0, 0);
opacity: 0;
}
.clearfix:after {
content:".";
display:block;
height:0;
clear:both;
visibility:hidden;
}
.overflow {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.bg-layer {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,.6);
z-index: 1000;
}
.pull-left {
float: left;
}
.pull-right {
float: right;
}
@keyframes zoomIn {
from {
opacity: 0;
transform: scale3d(0.3, 0.3, 0.3);
}
50% {
opacity: 1;
}
}
.mint-popup {
width: 100%;
}