Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/css/ui.feedback.css
blob: 7eed05f3994862e19e31fe1ce28e388f6e7edc88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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);
}