summaryrefslogtreecommitdiffstats
path: root/static/base.css
blob: d2a4adaab5ddefa939e600d319d7e0b70d3bd047 (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
body {
	background-color: #000;
	color: #ccc;
	font-family: sans-serif;
}
a:link, a:visited {
	color: #08a;
	text-decoration: none;
}
a:hover {
	color: #0af;
	text-decoration: underline;
}
img {
	border-style: none;
	vertical-align: middle;
}

header, article {
	width: 900px;
	margin: 20px auto;
}

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

section.song {
	background-color: #111;
	padding: 15px 20px;
	margin-top: 10px;
}
section.song .info {
	margin-bottom: 10px;
}
section.song div.thumb {
	float: left;
	width: 150px;
	overflow: hidden;
}
section.song canvas, section.song > img {
	position: relative;
	top: 20px;
}
section.song > img[src$='pause.png'] {
	display: none;
}

.clear {
	line-height: 0;
	clear: both;
}