-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbattleship2.css
72 lines (62 loc) · 1023 Bytes
/
battleship2.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
/*
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
*/
body {
background-color: black;
}
.boardCss {
position: relative;
width: 1024px;
height: 863px;
margin: auto;
background: url("board.jpg") no-repeat;
}
.messageAreaCss {
position: absolute;
top: 0;
left: 0;
color: #53AF13;
font-size: 25px;
}
table {
position: absolute;
left: 173px;
top: 98px;
border-spacing: 0;
}
td {
width: 94px;
height: 94px;
}
form{
position: absolute;
bottom: 0;
right: -200px;
padding: 15px;
background-color: #53AF13;
}
form input {
height: 30px;
background-color: #98CF71;
border-color: #53AF13;
font-size: 1em;
}
.fireButtonCss {
height: 30px;
width: 70px;
font-size: 17px;
border-radius: 0;
border: none;
background-color: #336812;
color: #98CF71;
}
.hit {
background: url("ship.png") no-repeat center center;
}
.miss {
background: url("miss.png") no-repeat center center;
}