-
Notifications
You must be signed in to change notification settings - Fork 0
/
gameStyles.css
67 lines (65 loc) · 967 Bytes
/
gameStyles.css
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
body{
background-color:white;
}
#soundHolder{
width: 62px;
height: 50px;
background-image: url("speaker.png");
background-size: 120px 55px;
}
#omniContainerBox{
padding-left:23%;
}
.inline{
display: inline-block;
}
.icon
{
width: 100px;
height: 100px;
background-image: url("sprites.png");
background-size: 155px;
}
.red
{
background-position: -20 -7.5;
}
.black
{
background-position: -20 -120.5;
}
.redK
{
background-position: -20 -231.5;
}
.blackK
{
background-position: -20 -341.5;
}
.empty
{
background-position: -20 -450;
}
#title{
font-size: -webkit-xxx-large;
font-style: oblique;
font-family: fantasy;
}
#iconHolder{
position: absolute;
top:0;
left:0;
right:0;
left:0;
}
#board{
position: relative;
}
.noselect {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}