summaryrefslogtreecommitdiffstats
path: root/static/base.css
blob: df3d295796633c98d340c722078c22c2609ec92f (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
body {
	background-color: #000;
	color: #ccc;
	font-family: 'Cantarell', 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;
}

img.aa {
	opacity: 0.9;
}

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

section.song {
	background-color: #111;
	padding: 15px 20px;
	margin-top: 10px;
}
section.song div.info {
	margin-bottom: 10px;
	float: left;
}
section.song div.user {
	float: right;
}
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;
}
section.song > img {
	opacity: 0.5;
}
section.song > img:hover {
	opacity: 1.0;
}

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