-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
82 lines (79 loc) · 1.32 KB
/
style.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
*{
margin: 0px;
padding: 0px;
}
body{
font-family: "Open Sans", "Arial", "Helvetica", "sans-serif";
}
p{
margin: 1em 0;
}
h1{
font-size: 16px;
margin-bottom: 2em;
}
#container{
width: 160px;
margin-top: 80px;
margin-left: auto;
margin-right: auto;
}
#board{
position: relative;
width: 158px;
height: 130px;
padding-left: 2px;
padding-top: 3px;
background: url("img/board6x7.jpg") no-repeat;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#board .col{
width: 22px;
height: 125px;
float: left;
position: relative;
}
#board.unlocked .col:hover{
cursor: pointer;
background: rgba(0, 255, 200, .1);
}
.arrow{
width: 11px;
height: 22px;
background: url("img/arrow.jpg") no-repeat;
position: absolute;
top: -35px;
left: 5px;
display: none;
}
.piece{
position: absolute;
top: -20px;
left: 1px;
width: 20px;
height: 20px;
}
.piece.pl_1{
background: url("img/piece_green3.png") no-repeat;
}
.piece.pl_2{
background: url("img/piece_red.png") no-repeat;
}
.piece.highlight {
background-color: rgba(255,255,255, .8);
}
#board.unlocked .col:hover .arrow{
display: block;
}
footer p, footer a{
font-size: 10px;
color: #888;
}
footer a:hover{
color: #3243B8;
}