summaryrefslogtreecommitdiff
path: root/index.css
blob: c3d7c7005d832d9f1ac1ba9c817e916156d85e74 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
html, body {
    width: 100%;
    height: 100%;
}

body {
    background-color: #ffffff;
    margin: 0;
    overflow: hidden;
    font-family: arial;
}

#container {
    position: absolute;

    width: 100%;
    height: 100%;

    -webkit-user-select: none; /* Chrome/Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */
}

#overlay {
    margin: 3%;
    font-size: 18px;
    font-weight: bold;
    float: left;
    color: #ffffff;

    text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.15),
                1px 2px 5px rgba(0, 0, 0, 0.05),
                -1px 2px 5px rgba(0, 0, 0, 0.05);

    /*background-color: rgba(0,0,0,0.1);*/
}

#block {
    position: absolute;

    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, 0.5);
}

#instructions {
    width: 100%;
    height: 100%;

    display: -webkit-box;
    display: -moz-box;
    display: box;

    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;

    color: #ffffff;
    text-align: center;

    cursor: pointer;

    text-shadow: 1px 3px 9px rgba(0, 0, 0, 0.4),
    3px 6px 8px rgba(0, 0, 0, 0.1),
    -3px 6px 8px rgba(0, 0, 0, 0.1);

}

#name {
    font-size: 40px;
}

#positive {
    color: #00a0b0;
}

#negative {
    color: #a01000;
}