summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'style.css')
-rw-r--r--style.css47
1 files changed, 47 insertions, 0 deletions
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..ed8b3d1
--- /dev/null
+++ b/style.css
@@ -0,0 +1,47 @@
+h1, h2 {
+ text-align: center;
+}
+
+.container {
+ position: relative;
+ width: 700px;
+ height: 520px;
+ margin: 0 auto;
+}
+
+ul {
+ padding-left: 0;
+ border: 2px solid black;
+}
+ul li {
+ list-style: none;
+ padding-left: 0;
+ height: 20px;
+ padding: 4px;
+ border: 1px solid #000;
+ margin-top: -1px;
+ cursor: pointer;
+ background: white;
+}
+ul li:hover {
+ background: gray;
+}
+ul li:first-child, ul li.ui-sortable-helper {
+ margin-top: 0;
+}
+
+#source, #target {
+ position: absolute;
+ top: 0;
+ height: 493px;
+ width: 300px;
+}
+#source {
+ left: 0;
+}
+#target{
+ right: 0;
+}
+#target.success li {
+ background: green;
+} \ No newline at end of file