-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmingAlert.css
More file actions
114 lines (112 loc) · 2.08 KB
/
Copy pathmingAlert.css
File metadata and controls
114 lines (112 loc) · 2.08 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
*{
padding: 0px;
margin: 0px;
}
body,html{
width: 100%;
height: 100%;
}
.ming_mask{
width: 100%;
height: 100%;
background: #000;
opacity: 0.8;
position:absolute;
left: 0px;
top: 0px;
z-index: 1000;
}
.ming_alert{
width:350px;
background: #fff;
border-radius: 10px;
padding-bottom: 10px;
padding-top: 25px;
position:absolute;top:20%;left:50%;transform:translate(-50%,0);
border: 1px solid #ccc;
z-index: 1001;
}
.ming_alert .a-close{
height: 25px;
width: 25px;
border-radius: 50%;
background: #ccc;
display: inline-block;
font-size: 20px;
color: #333;
line-height: 25px;
text-align: center;
position: absolute;
right: 5px;
top: 5px;
cursor: pointer;
}
.ming_alert .a-title{
font-size: 24px;
font-weight: bold;
color: red;
text-align: center;
}
.ming_alert .a-content{
padding: 10px;
text-align: center;
text-indent: 1em;
}
.ming_alert .a-content>.m-label{
text-indent: 0em;
text-align: left;
}
.ming_alert .a-content .m-label .m-tips{
float: left;
width: 30%;
text-align: right;
height: 22px;
line-height: 22px;
}
.ming_alert .a-content .m-label{
display: block;
margin-bottom: 10px;
zoom:1;
padding:1px 0;
}
.ming_alert .a-content .m-label:after{
content: "";display: block;clear: both;
}
.ming_alert .a-content .m-label .m-input{
width: 60%;
float: left;
height: 22px;
line-height: 22px;
}
.ming_alert .a-content .m-label .m-err{
text-align: left;
color: red;
width: 60%;
margin-top: 2px;
margin-left: 30%;
font-size: 12px;
}
.ming_alert .btnWarp{
width: 100%;
display:flex;justify-content:center;
}
.ming_alert .btnWarp .a-cancel,.ming_alert .btnWarp .a-confirm{
width: 100px;
height: 30px;
line-height: 30px;
text-align: center;
font-family: 'Microsoft YaHei';
background: #8bb9c3;
color: #333;
display: inline-block;
cursor: pointer;
}
.ming_alert .btnWarp .a-cancel{
margin-left: 10px;
}
.ming_alert .a-close:hover,
.ming_alert .btnWarp .a-confirm:hover,
.ming_alert .btnWarp .a-cancel:hover{
background: #2892f5;
color: #fff;
}