Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/css/ui.feedback.css
diff options
context:
space:
mode:
authorBryan Berry <bryan@olenepal.org>2010-03-15 08:43:52 (GMT)
committer Bryan Berry <bryan@olenepal.org>2010-03-15 08:43:52 (GMT)
commitd03552a31d2b63b42084ae506fc94e6149a5440a (patch)
tree76608ccbe04fb941c9e4b69a205c957d29ac4b95 /css/ui.feedback.css
initial commit
Diffstat (limited to 'css/ui.feedback.css')
-rwxr-xr-xcss/ui.feedback.css56
1 files changed, 56 insertions, 0 deletions
diff --git a/css/ui.feedback.css b/css/ui.feedback.css
new file mode 100755
index 0000000..7eed05f
--- /dev/null
+++ b/css/ui.feedback.css
@@ -0,0 +1,56 @@
+.ui-feedback div{
+ width: 200px;
+ height: 178px;
+ position: absolute;
+ background-repeat: no-repeat;
+}
+
+.ui-feedback .ui-feedback-correct{
+ display:none;
+ background-image: url(./images/correct200x190.png);
+}
+
+.ui-feedback .ui-feedback-incorrect{
+ display:none;
+ background-image: url(./images/incorrect200x190.png);
+}
+
+
+.ui-feedback .ui-feedback-over{
+ display: none;
+ width: 184px;
+ height: 240px;
+ overflow: visible;
+ cursor: pointer;
+ z-index: 10;
+}
+
+.ui-feedback .ui-feedback-over .ui-feedback-win{
+ width: 184px;
+ height: 222px;
+ background-image: url(./images/happy-face.png);
+ overflow: visible;
+}
+
+
+.ui-feedback .ui-feedback-over .ui-feedback-lose{
+ width: 184px;
+ height: 222px;
+ background-image: url(./images/sad-face.png);
+ overflow: visible;
+}
+
+.ui-feedback .ui-feedback-txt{
+ color:purple;
+ font-size:3em;
+ margin-top:-50px;
+ width:300px;
+}
+
+.ui-feedback-overlay {
+ position: absolute;
+ display: none;
+ width: 100%;
+ height: 100%;
+ background-color: rgba(255,255,255, 0.6);
+} \ No newline at end of file