forked from Mereithhh/van-nav-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
77 lines (66 loc) · 1.08 KB
/
styles.css
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
69
70
71
72
73
74
75
76
77
body {
min-width: 400px;
/*min-height: 300px;*/
}
button {
display: block;
margin: 6px 0 !important;
width: 100%;
}
#openExtension {
height: 25px;
cursor: pointer;
position: absolute;
left: 10px;
top: 5px;
}
.page {
display: none;
padding-top: 12px;
}
.show {
display: block;
}
.flex {
display: flex;
}
.flex > button {
margin: 5px !important;
}
.lds-dual-ring {
display: inline-block;
width: 80px;
height: 80px;
}
.lds-dual-ring:after {
content: " ";
display: block;
width: 64px;
height: 64px;
margin: 8px;
border-radius: 50%;
border: 6px solid #000;
border-color: #000 transparent #000 transparent;
animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.loadingWraper {
/* display: flex;
justify-content: center;
align-items: center; */
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
/* 只有loadingpage高度自适应有问题,单独设置一下 */
#loadingPage{
min-height: 100px;
}