-
Notifications
You must be signed in to change notification settings - Fork 22
/
style-h5.css
85 lines (82 loc) · 1.17 KB
/
style-h5.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
83
84
85
html {
font-family: monospace;
}
.clear {
clear: both;
}
.link {
color: blue;
text-decoration: underline;
cursor: pointer;
}
#gameSection {
background-color: #fff;
}
#board {
float: left;
}
#board canvas {
box-shadow: 0px 5px 10px #888;
}
#board .point {
cursor: pointer;
display: block;
float: left;
padding: 0 4px;
}
#board .point:hover {
background-color: #eee;
}
#board .marked {
cursor: default;
}
#info {
float: left;
margin-left: 20px;
}
#score {
display: none;
}
#devSection {
border-top: 2px solid #ddd;
padding: 10px;
margin-top: 10px;
background-color: #eee;
}
#devSection #toggleLink {
color: #999;
text-decoration: none;
}
#devSection #toggleLink:hover {
color: #000;
}
#devTools {
}
#devActions {
background-color: #fff;
border: 2px solid #ddd;
border-radius: 5px;
padding: 3px;
}
#devActions li {
list-style: none;
display: inline;
border-left: 1px solid #ccc;
padding-left: 7px;
text-decoration: none;
color: hsl(220, 50%, 50%);
}
#devActions li:first-child {
border: none;
}
#devActions li:hover {
text-decoration: underline;
}
#gameState {
}
#gameState textarea {
padding: 10px;
width: 600px;
height: 300px;
border: 1px dashed #ccc;
}