-
Notifications
You must be signed in to change notification settings - Fork 1
/
bookmarklet.css
101 lines (88 loc) · 1.66 KB
/
bookmarklet.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
body.playemParent {
position: absolute;
left: 200px;
}
#playemBookmarklet {
display: block;
position: fixed;
left: 0px;
top: 0px;
width: 200px;
height: 100%;
border: 1px solid #b7b7b7;
background: white;
z-index: 1000;
overflow: hidden;
-webkit-box-shadow: 0 0 12px rgba(0,0,0,0.65);
-moz-box-shadow: 0 0 12px rgba(0,0,0,0.65));
-ms-box-shadow: 0 0 12px rgba(0,0,0,0.65);
-o-box-shadow: 0 0 12px rgba(0,0,0,0.65);
box-shadow: 0 0 12px rgba(0,0,0,0.65);
}
#playemHeader {
position:relative;
z-index: 2;
width: 100%;
margin: 0;
padding:0;
height: 49px;
border-bottom : 2px solid #555;
background: #000;
-webkit-box-shadow: 0 1px 3px rgba(0, 32, 77,0.4);
-moz-box-shadow: 0 1px 3px rgba(0, 32, 77,0.4);
-ms-box-shadow: 0 1px 3px rgba(0, 32, 77,0.4);
-o-box-shadow: 0 1px 3px rgba(0, 32, 77,0.4);
box-shadow: 0 1px 3px rgba(0, 32, 77,0.4);
}
#playemHeader > a {
position: absolute;
top: 7px;
left: 12px;
}
#playemHeader > a > img {
width: 32px;
height: 32px;
float: left;
}
#playemHeader > a > span {
float:left;
color: #fff;
margin: 5px;
}
#playemHeader > div {
position: absolute;
top: 12px;
right: 10px;
cursor: pointer;
}
#playemContent {
border: none;
}
#playemLoading {
position: absolute;
top: 160px;
left: 0px;
width: 550px;
text-align: center;
}
/* extracted content */
#playemContent li {
position: relative;
padding: 6px;
width: 240px;
height: 32px;
overflow:hidden;
cursor: pointer;
font-family: "Helvetica-Neue", Helvetica, Arial, Sans-serif;
font-size: 13px;
color: #525252;
list-style: none;
}
#playemContent li > img {
opacity: 0.6;
width: 32px;
float: left;
}
#playemContent li:hover > img {
opacity: 1;
}