diff options
Diffstat (limited to 'static/base.css')
-rw-r--r-- | static/base.css | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/static/base.css b/static/base.css new file mode 100644 index 0000000..d2a4ada --- /dev/null +++ b/static/base.css @@ -0,0 +1,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; +} |