blob: 149c36e5a911ef04e3819dc6a17a1043fde5ea96 (
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
|
/* Wordsearch */
.ws-area {
background: #fafafa;
display: inline-block;
padding: 20px;
border-radius: 10px;
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
}
.ws-row {
line-height: 0;
}
.ws-col {
cursor: pointer;
}
.ws-col.ws-selected {
background: #eee;
}
.ws-found {
background: yellow;
}
.ws-game-over-outer {
background: rgba(0, 0, 0, 0.85);
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
.ws-game-over-inner {
width:100%;
height:100%;
padding:0;
margin:0;
display:table;
}
.ws-game-over {
display:table-cell;
vertical-align:middle;
}
.ws-game-over h2 {
color:#FFFFFF;
font-size:2em;
text-transform:uppercase;
padding:0;
margin:0 0 9px 0;
}
.ws-game-over p {
color:#FFFFFF;
font-size:1em;
padding:0;
margin:0;
}
|