diff options
Diffstat (limited to 'static/base.css')
-rw-r--r-- | static/base.css | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/static/base.css b/static/base.css index d2a4ada..df3d295 100644 --- a/static/base.css +++ b/static/base.css @@ -1,7 +1,7 @@ body { background-color: #000; color: #ccc; - font-family: sans-serif; + font-family: 'Cantarell', sans-serif; } a:link, a:visited { color: #08a; @@ -21,6 +21,10 @@ header, article { margin: 20px auto; } +img.aa { + opacity: 0.9; +} + object#player { position: absolute; left: -1px; @@ -32,8 +36,12 @@ section.song { padding: 15px 20px; margin-top: 10px; } -section.song .info { +section.song div.info { margin-bottom: 10px; + float: left; +} +section.song div.user { + float: right; } section.song div.thumb { float: left; @@ -47,6 +55,12 @@ section.song canvas, section.song > img { 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; |