forked from bomba5884/Permisson-Bar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpermissionbar.css
100 lines (98 loc) · 2.19 KB
/
permissionbar.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#permission-bar-prompt-content, #permission-bar{
color:white;
font-family: 'Open Sans', 'Lucida Grande', 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
font-weight:300;
}
#permission-bar-prompt-content a, #permission-bar a, #permission-bar-prompt-content span{
color: #31a8f0;
text-decoration:none;
}
#permission-bar-prompt-content a:hover, #permission-bar a:hover{
color: #31a8f0;
text-decoration:underline;
}
#permission-bar-prompt-close{
width:14px;
height:14px;
float:right;
display:block;
background:url(x.png) no-repeat;
}
#permission-bar-prompt-logo{
width:190px;
height:42px;
float:left;
display:block;
background:url(logo.png) no-repeat;
}
#permission-bar-prompt-close span, #permission-bar-prompt-logo span{
display: none;
}
#permission-bar{
position:fixed;
bottom:0px;
left: 0px;
width:100%;
margin:0;
padding:0;
height:31px;
padding-top:13px;
background:url(bar-bg.png) repeat-x;
z-index:9999;
font-size:14px;
line-height:20px;
}
#permission-bar p{
float:left;
padding:0;
margin:4px 0 0 20px;
}
#permission-bar-button{
float:right;
margin-right:20px;
background-color: #2daebf;
font-size:13px;
-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
text-shadow: 0 -1px 1px rgba(0,0,0,0.25);
border-bottom: 1px solid rgba(0,0,0,0.25);
display: inline-block;
padding: 5px 10px 6px;
color: #fff!important;
text-decoration: none;
font-weight: bold;
line-height: 1;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
text-shadow: 0 -1px 1px #222;
border-bottom: 1px solid #222;
position: relative;
cursor: pointer;
margin-top:2px;
}
#permission-bar-prompt{
position: fixed;
width:100%;
height:100%;
top:0;
left:0;
z-index:9998;
background:url(prompt-bg.png);
}
#permission-bar-prompt-content{
position: absolute;
width:400px;
height:300px;
padding:25px;
background:black;
color:white;
opacity: 0.9;
-moz-opacity: 0.9;
z-index:9998;
-webkit-border-radius: 7px;
border-radius: 7px;
font-size:15px;
}
.clear{
clear:both;
}