-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathold-style.css
161 lines (125 loc) · 3.59 KB
/
old-style.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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/* Copyright (C) 2011-2015 Andrew "Jamoozy" Sabisch
*
* This file is part of GOPF.
*
* GOPF is free software: you can redistribute it and/or modify it under the
* terms of the GNU Affero General Public as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* Foobar is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
* details.
*
* You should have received a copy of the GNU Affero General Public License
* along with GOPF. If not, see http://www.gnu.org/licenses/.
*/
body {
background: black;
background: -moz-linear-gradient(90deg, gray, white);
}
/*********************************************************\
| main media player |
\*********************************************************/
.media-container {
background: blue;
font-family: Arial, sans-serif;
color: yellow;
float: center;
margin-bottom: 1em;
border: 1px solid black;
border-radius: 4px;
}
/*********************************************************\
| individual entries |
\*********************************************************/
.unselected:hover, .song:hover {
cursor: pointer;
}
.dummy {
list-style-type: none;
padding: 2px 1em;
margin: 2px 1em;
margin-left: -2.5em;
text-align: center;
display: -webkit-box;
-webkit-box-pack: center;
-webkit-box-align: center;
}
.selected, .unselected, .song, .playing {
margin-left: -2.5em;
overflow: hidden;
text-overflow: ellipsis;
list-style-type: none;
text-overflow: clip;
border-radius: 1em;
border: 1px solid black;
padding-left: 5px;
height: 1em;
}
.song, .unselected {
background: -webkit-gradient(linear, left bottom, left top,
from(gray), to(white));
background: -moz-linear-gradient(90deg, gray, white);
}
.selected, .playing {
background: -webkit-gradient(linear, left top, left bottom,
from(white), to(blue));
background: -moz-linear-gradient(90deg, white, blue);
}
/*********************************************************\
| individual elements |
\*********************************************************/
.title {
font-family: "Arial", sans-serif;
padding-bottom: 1em;
}
.header {
background: -webkit-gradient(linear, left top, lef, bottom,
from(#008aff), to(#00f6ff));
float: top;
text-align: center;
font-family: Arial, sans-serif;
padding: 2px;
margin: 0px 0em;
}
.playlist-container, .song-container {
background: white;
border: 1px solid black;
border-radius: 1em;
min-width: 200px;
}
.playlist-container {
float: left;
}
.song-container {
float: left;
}
.playlists, .songs {
background: #5a8c4f;
overflow-x: hidden;
overflow-y: scroll;
margin: 0px -1px -1px -1px;
height: 20em;
border: 1px solid black;
}
.playlists {
width: 200px;
}
.songs, .playing {
max-width: 400px;
}
#selected.song, #selected.unselected {
background: -webkit-gradient(linear, left bottom, left top,
from(gray), to(yellow));
background: -moz-linear-gradient(90deg, gray, yellow);
}
#selected.playing, #selected.selected {
background: -webkit-gradient(linear, left bottom, left top,
from(blue), to(yellow));
background: -moz-linear-gradient(90deg, blue, yellow);
}
.controls {
cursor: pointer;
}