-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcrossCircle.css
More file actions
94 lines (82 loc) · 1.84 KB
/
crossCircle.css
File metadata and controls
94 lines (82 loc) · 1.84 KB
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
86
87
88
89
90
91
92
93
94
html, body {
margin: 0;
padding: 0;
}
#gameDiv {
width: 400px;
height: 330px;
margin: 50px auto;
padding: 0;
vertical-align: middle;
}
.newGame {
width: 100%;
height: 100%;
margin: 0;
padding:; 0
vertical-align: middle;
}
.gameField {
border-spacing: 0px;
margin: 30px auto;
}
.gameField .gameCell {
margin: 0;
padding: 0;
width: 25px;
height: 25px;
border: 1px solid #4f6180;
border-radius: 3px;
background-color: burlywood;
font-weight: bold;
line-height: 15px;
}
.gameField .gameCell.circle:before {
text-align: center;
color: blue;
content: '\20dd';
font-size: 20px;
line-height: 24px;
padding: 2px;
}
.gameField .gameCell.cross:before {
text-align: center;
color: red;
content: '\2573';
font-size: 20px;
line-height: 24px;
padding: 2px;
}
.score {
height: 200px;
width: 400px;
background-color: #4f6180;
}
.score > .crossScore, .score > .circleScore {
height: 200px;
width: 200px;
float: left;
text-align: center;
}
.score > .crossScore {
color: red;
font-size: 100px;
line-height: 200px;
}
.score > .circleScore {
color: blue;
font-size: 100px;
line-height: 200px;
}
.dimentionInput {
height: 130px;
width: 400px;
background-color: aqua;
text-align: center;
vertical-align: middle;
}
.dimentionInput > .input {
margin: 50px auto;
height: 30px;
width: 200px;
}