-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (101 loc) · 1.94 KB
/
Copy pathstyle.css
File metadata and controls
113 lines (101 loc) · 1.94 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
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
body {
background: #eee;
font-size: 0.9em;
}
#list-template {
display: none;
}
#container {
margin: 0 auto;
width: 800px;
font-family: sans-serif;
line-height: 1.5em;
color: #666;
letter-spacing: 1px;
}
#controller {
float: left;
width: 200px;
padding-top: 2.5em;
position: absolute;
top: -12px;
right: 20px;
}
#controller ul{
list-style-type: none;
padding: 0;
}
#controller ul li {
float: left;
width: 64px;
}
#display {
position: relative;
width: 700px;
float:left;
margin-top: 2em;
background-image: linear-gradient(bottom, rgb(0,0,0) 40%, rgb(61,61,61) 50%);
background-image: -moz-linear-gradient(bottom, rgb(0,0,0) 40%, rgb(61,61,61) 50%);
background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0.4, rgb(0,0,0)),
color-stop(0.5, rgb(61,61,61))
);
padding: 1em 1em 2em 1em;
height: 80px;
border: 1px solid #999;
border-radius: 10px;
-moz-box-shadow: 0 0 5px #888;
-webkit-box-shadow: 0 0 5px#888;
box-shadow: inset 0 0 5px #888;
}
#display ul {
list-style: none;
margin-top: 0;
padding-top: 0.5em;
color: #FCFAE0;
}
#playlist_select {
padding: 5em 0;
clear: both;
}
#playlist {
clear: both;
padding-top: 2em;
}
#playlist h2 {
margin-left: 1em;
}
#playlist ol {
list-style-position: inside;
margin-left: 0;
padding-left: 0;
}
#playlist ol li {
background: #fff;
margin-bottom: 2px;
padding: 0.4em;
padding-left: 1em;
}
#playlist ol li.current {
background: #ddd;
}
#playlist ol li.current span {
display: block;
float: right;
padding-right: 1em;
}
#playlist ol li.current a:link {
color: #000;
}
#playlist ol li a:link, #playlist ol li a:visited {
text-decoration: none;
color: #999;
font-size: 0.9em;
}
#playlist ol li a:hover {
text-decoration: none;
color: #000;
}