From 97d7c9014855449fe04162308feac66a35e007ea Mon Sep 17 00:00:00 2001 From: Jon Bergli Heier Date: Mon, 8 Aug 2011 00:11:01 +0200 Subject: Initial commit. app.py - WSGI application and handlers. config.py - Config helper class. directory.py - Directory and file helper classes. events.py - zeromq event publisher and subscriber. recode.py - Codecs and stuff static/ - Web interface --- static/style.css | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 static/style.css (limited to 'static/style.css') diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..d086227 --- /dev/null +++ b/static/style.css @@ -0,0 +1,9 @@ +ul#song-links { list-style-type: none; } +ul#song-links a { text-decoration: none; color: inherit; } +ul#song-links a:hover { text-decoration: underline; } +a.dir { background-image: url('/static/icons/folder.png'); } +a.file { background-image: url('/static/icons/music.png'); } +a.file-cached { background-image: url('/static/icons/music-cached.png'); } +a.dir, a.file { background-repeat: no-repeat; padding-left: 20px; } +a.file-recoding { background-image: url('/static/icons/loading.gif'); } +a.file-queued { background-image: url('/static/icons/music-queued.png'); } -- cgit v1.2.3