diff static/style.css @ 1044:a2081b9adfe4

effecteval now takes dropped subs and makes new effects out of them Ignore-this: 69423eca1858291f486dd2a202d3732a
author Drew Perttula <drewp@bigasterisk.com>
date Wed, 28 May 2014 07:37:36 +0000
parents 9b1df7c06ec2
children a58e8408f563
line wrap: on
line diff
--- a/static/style.css	Wed May 28 05:57:08 2014 +0000
+++ b/static/style.css	Wed May 28 07:37:36 2014 +0000
@@ -3,6 +3,13 @@
     color: white;
     font-family: sans-serif;
 }
+
+
+a {
+color: rgb(97, 97, 255);
+
+    }
+
 .songs {
     -moz-column-width:205px;
     -webkit-column-width:205px;
@@ -46,7 +53,42 @@
     opacity: .5;
 }
 .num {
-font-size: 27px;
-color: rgb(233, 122, 122);
-display: inline-block; 
-    }
\ No newline at end of file
+    font-size: 27px;
+    color: rgb(233, 122, 122);
+    display: inline-block; 
+}
+
+.dropTarget {
+    padding: 5px;
+    border: 2px dashed gray;
+    font-style: italic;
+    color: rgb(78, 90, 107);
+}
+.twoColList {
+    -webkit-column-width: 24em;
+}
+.twoColList > li {
+    margin-bottom: 13px;
+}
+
+.song {
+    color: rgb(85, 221, 85);
+}
+.song:before {
+
+    content: "♫";
+    color: black;
+    background: rgb(85, 221, 85);
+    border-radius: 30%;
+}
+
+.effect:before {
+    content: "⛖";
+}
+
+.song:before, .effect:before {
+    margin-right: 3px;
+    text-decoration: none !important;
+    font-size: 140%;
+
+}
\ No newline at end of file