-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsolitaire.css
61 lines (60 loc) · 1.02 KB
/
solitaire.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
/* Solitaire CSS */
body {
font-family: "Open Sans";
margin-top: 50px;
color: #333;
text-align: center;
}
table.gameboard {
padding: 15px;
border-radius: 7px;
border: 3px outset lightgray;
background-color: #f8f8f8;
}
table.gameboard td {
width: 44px;
height: 44px;
padding: 4px;
text-align: center;
}
.droppable {
background-image: url("solitaire_slot.png");
width: 44px;
height: 44px;
border-radius: 22px;
}
.draggable {
background-image: url("solitaire_peg.png");
width: 44px;
height: 44px;
border-radius: 22px;
cursor: pointer;
}
.message {
font-size: 200%;
font-weight: bold;
margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}
.hint {
margin-top: 15px;
margin-bottom: 15px;
text-align: center;
}
.buttondiv {
margin-top: 30px;
}
.button {
font-weight: bold;
cursor: pointer;
color: rgb(16, 79, 240);
}
span.sperator {
padding-left: 5px;
padding-right: 5px;
font-weight: bold;
}
.gamebox {
display: inline-block;
}