diff options
author | raylu <raylu@mixpanel.com> | 2011-08-01 02:34:41 -0700 |
---|---|---|
committer | raylu <raylu@mixpanel.com> | 2011-08-01 02:34:41 -0700 |
commit | f9803a3bbfb3e730213825d6dc332b7c31321330 (patch) | |
tree | 486553d015e100e87dd7f37daeaf65fea38a86fd /static/base.css | |
parent | 5395b5ada15dfc417cbe789ea3297274f050892d (diff) | |
download | audioaxis-f9803a3bbfb3e730213825d6dc332b7c31321330.tar.xz |
use new exp/template, make stuff work
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; +} |