-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathjquery.confirmon.css
58 lines (51 loc) · 1.25 KB
/
jquery.confirmon.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
/*!
* jQuery confirmOn Plugin
* https://github.com/invetek/jquery-confirmon
*
* Copyright 2013 Loran Kloeze - Invetek
* Released under the MIT license
*/
.confirmon-overlay {
background-color: black;
background-color: rgba(0, 0, 0, 0.60);
width: 100%;
height: 100%;
margin: 0;
top: 0;
left: 0;
position: fixed;
z-index: 1010;
display: none;
}
.confirmon-box {
background-color: rgb(66, 79, 90);
color: #ffffff;
border: solid 1px #555;
border-radius:5px;
box-shadow: 0px 1px 10px #222;
padding: 20px 10px 35px 10px;
text-align: center;
font-weight: bold;
font-size: 15px;
z-index: 1011;
display: none;
position: absolute;
margin-left: -15%;
width: 30%;
left: 50%;
top: 185px;
}
.confirmon-box button {
margin: 10px 5px;
padding: 5px 10px;
text-align: center;
background-color: rgb(66, 79, 90);
border: 1px solid #ffffff;
color: #ffffff;
font-weight: bold;
}
.confirmon-box button:hover {
// background-color: #00bbee;
cursor: pointer;
opacity:0.6;
}