forked from addtoevent/browser-support
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrowser-update.css
More file actions
77 lines (68 loc) · 1.44 KB
/
browser-update.css
File metadata and controls
77 lines (68 loc) · 1.44 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
/* Browser Update Styling */
body .buorg {
position: absolute;
position: fixed;
z-index: 111111;
width: 100%;
top: 0px;
left: 0px;
border-bottom: 1px #737D8C solid;
text-align: center;
color: #000;
background-color: #fff8ea;
font-family: inherit;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
animation: 1s ease-out 0s buorgfly
}
body .buorg-pad {
padding: 9px;
line-height: 1.7em;
}
body .buorg-buttons {
display: block;
text-align: center;
}
body #buorgig,body #buorgul, body #buorgpermanent {
color: #fff;
text-decoration: none;
cursor: pointer;
box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
padding: 1px 10px;
border-radius: 4px;
font-weight: normal;
background: #00A264;
white-space: nowrap;
margin: 0 2px;
display: inline-block;
}
body #buorgig {
background-color: #F7931E;
}
@media only screen and (max-width: 700px) {
body .buorg div {
padding: 5px 12px 5px 9px;
line-height: 1.3em;
}
}
@keyframes buorgfly {
from {
opacity: 0;
transform: translateY(-50px)
}
to {
opacity: 1;
transform: translateY(0px)
}
}
body .buorg-fadeout {
transition: visibility 0s 8.5s, opacity 8s ease-out .5s;
}
body .buorg-icon {
width: 22px;
height: 16px;
vertical-align: middle;
position: relative;
top: -0.05em;
display: inline-block;
background: no-repeat 0px center;
}