summaryrefslogtreecommitdiffstats
path: root/static/p.css
blob: a67cdab3ed8816ddcfb50e83cb9488c5789f0843 (plain)
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
header label, header input {
	position: absolute;
}
header label[for="user"] {
	left: 480px;
	top: 5px;
}
header input#user {
	left: 570px;
	top: 0px;
}
header label[for="song"] {
	left: 300px;
	top: 55px;
}
header input#song {
	left: 390px;
	top: 50px;
	width: 420px;
	text-align: center;
}
header input[type="submit"] {
	left: 830px;
	top: 50px;
}
div#results {
	display: none;
	position: absolute;
	width: 430px;
	height: 560px;
	left: 390px;
	top: 83px;
	background-color: #111;
	border: 1px solid #aaa;
	z-index: 1;
}
div#results ul {
	margin: 5px 10px;
	padding: 0;
}
div#results ul li {
	list-style: none;
	display: block;
	height: 50px;
	margin: 5px 0;
	overflow: hidden;
}
div#results ul li:hover {
	background-color: #024;
}
div#results ul li a {
	display: block;
	height: 100%;
}
div#results ul li a:hover {
	text-decoration: none;
}
div#results ul li img {
	height: 50px;
	width: 66px;
	float: left;
	margin-right: 10px;
}

object#player {
	position: absolute;
	left: -1px;
	top: 0;
}

section.song {
	background-color: #111;
	padding: 10px 15px;
	margin-top: 7px;
	position: relative; /* for remove */
}
section.song div.info {
	margin-bottom: 10px;
	float: left;
}
section.song div.user {
	float: right;
	margin-right: 20px;
}
section.song div.remove {
	position: absolute;
	top: 0;
	right: 5px;
}
section.song div.remove img {
	opacity: 0.6;
}
section.song div.remove img:hover {
	opacity: 1.0;
}
section.song div.reorder {
	position: absolute;
	bottom: 0;
	right: 5px;
}
section.song div.reorder img {
	display: block;
	margin-bottom: 5px;
	opacity: 0.6;
}
section.song div.reorder img:hover {
	opacity: 1.0;
}
section.song div.thumb {
	float: left;
	width: 140px;
	height: 90px;
	overflow: hidden;
}
section.song div.thumb img {
	height: 90px;
}
section.song canvas, section.song > img {
	position: relative;
	left: 5px;
}
section.song > img[src$='pause.png'] {
	display: none;
}
section.song > img {
	opacity: 0.5;
}
section.song > img:hover {
	opacity: 1.0;
}