aboutsummaryrefslogtreecommitdiffstats
path: root/demos/real-world/effects/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'demos/real-world/effects/style.css')
-rw-r--r--demos/real-world/effects/style.css36
1 files changed, 36 insertions, 0 deletions
diff --git a/demos/real-world/effects/style.css b/demos/real-world/effects/style.css
new file mode 100644
index 000000000..f7ae220ef
--- /dev/null
+++ b/demos/real-world/effects/style.css
@@ -0,0 +1,36 @@
+body,html {
+ margin: 0;
+ padding: 0;
+ font-size: 12px;
+ font-family: Arial;
+ background: #000;
+}
+
+div.effect {
+ width: 120px;
+ height: 100px;
+ background: #333;
+ border: 5px outset #aaa;
+ float: left;
+ margin-top: 20px;
+ margin-left: 20px;
+ cursor: pointer;
+ cursor: hand;
+}
+
+div.current {
+ border: 5px outset #FF0000;
+ background: #660000;
+}
+
+div.effect p {
+ color: #eee;
+ margin: 0px;
+ padding: 10px;
+}
+
+.ui-effects-transfer {
+ border: 1px dotted #fff;
+ background: #666;
+ opacity: 0.5;
+} \ No newline at end of file