-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAllowLocal.css
More file actions
79 lines (69 loc) · 1.35 KB
/
AllowLocal.css
File metadata and controls
79 lines (69 loc) · 1.35 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
/* base CSS element */
.AllowLocal_balloon {
background: #eee;
border: 1px solid #ccc;
padding: 10px;
border-radius: 8px;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
position: relative;
width: 200px;
}
/* arrows - :before and :after */
.AllowLocal_balloon:before {
position: absolute;
display: inline-block;
border-right: 7px solid transparent;
border-bottom: 7px solid #eee;
border-left: 7px solid transparent;
border-bottom-color: rgba(0, 0, 0, 0.2);
left: 13px;
top: -7px;
content: '';
}
.AllowLocal_balloon:after {
position: absolute;
display: inline-block;
border-right: 6px solid transparent;
border-bottom: 6px solid #eee;
border-left: 6px solid transparent;
left: 12px;
top: -6px;
content: '';
}
.AllowLocal_overlay{
position:fixed;
width:100%;
height:100%;
top:0px;
left:0px;
background:#000;
opacity:0.5;
z-index:100;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=50);
}
.AllowLocal_balloon_Chrome{
position:fixed;
top:10px;
left:325px;
z-index:101;
}
.AllowLocal_balloon_Firefox{
position:fixed;
top:100px;
left:325px;
z-index:101;
}
.AllowLocal_balloon_Explorer{
position:fixed;
bottom:65px;
left:65%;
z-index:101;
}
.AllowLocal_balloon_Safari{
position:fixed;
bottom:65px;
left:65%;
z-index:101;
}
.allowlocal_close_b {
}