This repository has been archived by the owner on May 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopover.css
134 lines (126 loc) · 2.45 KB
/
popover.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
html, body {
margin: 0;
padding: 0;
min-width: 260px;
color: rgba(0,0,0,.6);
font-family: "Lucida Grande", Helvetica, "sans-serif";
font-size: 12px;
-webkit-user-select: none;
user-select: none;
overflow: hidden;
}
#login-container,
#scrobbler-container{
display: none;
}
.login #login-container,
.scrobbler #scrobbler-container{
display: block;
}
header {
margin: 6px 0;
padding: 0;
}
header h1 {
margin: 0;
text-align: center;
font-weight: 500;
font-size: 13px;
}
header button {
float: right;
}
.button {
background: rgba(250,250,250,.5);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, rgb(255,255,255)),
color-stop(1, rgb(236,236,236))
);
padding: 3px 8px;
font-size: 12px;
text-decoration: none;
border: 1px solid rgba(0,0,0,.3);
color: rgba(0,0,0,.6);
border-radius: 4px;
box-shadow: 0 0 2px rgba(230,230,230,1);
-webkit-user-drag: none;
user-drag: none;
}
.button:active {
box-shadow: 0 0 1px rgba(230,230,230,.9), inset 1px 1px 5px rgba(64,64,64,.25);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, rgb(236,236,236)),
color-stop(1, rgb(255,255,255))
);
}
.button.disabled {
border: 1px solid rgba(0,0,0,.1);
color: rgba(100,100,100,.6);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, rgba(236,236,236, .3)),
color-stop(1, rgba(255,255,255, .3))
);
}
.button.big {
margin: 10px;
padding: 7px 14px;
text-align: center;
display: block;
-webkit-box-sizing: border-box;
position: relative;
}
p.instructions {
font-size: 11px;
line-height: 1.3;
margin: 6px 10px;
color: rgba(100,100,100,.6);
}
form {
margin: 10px;
}
input {
margin: 6px 0;
border: 1px solid rgba(100,100,100,.5);
color: rgba(0,0,0,.6);
font-size: 12px;
padding: 3px;
border-radius: 3px;
background: rgba(246,246,246, .8);
display: block;
width: 100%;
-webkit-box-sizing: border-box;
box-shadow: 0 0 1px rgba(230,230,230,.9), inset 1px 1px 3px rgba(64,64,64,.1);
}
input:focus {
border: 1px solid rgba(100,100,100,.9);
background: rgba(246,246,246, .7);
}
#popup {
margin: 0 30px;
padding: 18px;
min-width: 160px;
line-height: 1.3;
border-radius: 10px;
background: #000;
color: #ddd;
text-align: center;
font-size: 11px;
position: absolute;
top: 225px;
opacity: 0;
-webkit-transition: all .6s ease-in-out;
}
#popup.active {
top: 25px;
opacity: .7;
-webkit-transition: all .6s ease-in-out;
}