From 126feff14f65e4e3d0ca4f37055e50f0c8906e5e Mon Sep 17 00:00:00 2001 From: Carlo Zancanaro Date: Thu, 29 Aug 2013 11:58:17 +1000 Subject: Initial commit - full "game" --- style.css | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 style.css (limited to 'style.css') 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 -- cgit v1.2.3