-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
112 lines (108 loc) · 1.88 KB
/
popup.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
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700);
* {
outline: none;
margin: 0;
padding: 0;
}
body {
background: #F1F4F7;
font-family: 'Open Sans', Arial, 'Helvetica', sans-serif;
font-size: 13px;
color: #01244b;
}
.wrapper {
max-width: 300px;
padding: 8px 6px;
margin: 0 auto;
}
/*
* Helper Classes & ID
**/
.text-center {
text-align: center;
}
.font-bold {
font-weight: bold;
}
.block {
display: block;
}
.pull-left {
float: left;
}
.m-r-sm {
margin-right: 5px;
}
.m-r-md {
margin-right: 15px;
}
.m-b-sm {
margin-bottom: 5px;
}
.m-b-md {
margin-bottom: 15px;
}
/*
* UI KIT
**/
.btn-primary {
color: #fff;
text-decoration: none;
padding: 5px 9px;
background-color: #465c7d;
border-top: solid 1px #4f6484;
border-bottom: solid 1px #1c3f5b;
border-radius: 2px;
font-size: 12px;
}
.btn-primary:active {
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.15), inset 0 0 1px rgba(0, 0, 0, 0.15), 0 1px 0 rgba(255, 255, 255, 0.8);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.15), inset 0 0 1px rgba(0, 0, 0, 0.15), 0 1px 0 rgba(255, 255, 255, 0.8);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.15), inset 0 0 1px rgba(0, 0, 0, 0.15), 0 1px 0 rgba(255, 255, 255, 0.8);
}
.btn-download {
width: 60px;
display: inline-block;
}
.btn-next {
width: 60px;
display: inline-block;
float: right;
}
/*
* Popup Layout
**/
#content {
overflow: hidden;
}
.music {
position: relative;
overflow: hidden;
}
.music .music-cover {
width: 55px;
overflow: hidden;
margin-right: 6px;
}
.music .music-cover img {
border-radius: 2px;
width: 100%;
}
.music-details {
display: block;
max-width: 100px;
line-height: 1.3;
}
.music-label {
display: block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.audio-url {
width: 143px;
border: none;
padding: 8px 10px;
margin-top: 5px;
color: #465c7d;
}