-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
53 lines (44 loc) · 784 Bytes
/
styles.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
/* 5 */
body {
background-color: black;
}
.board {
position: relative;
width: 1024px;
height: 865px;
margin: 30px auto 0 auto;
background: url(images/board.jpg) no-repeat;
}
.grid {
position: relative;
top: 98px;
left: 172px;
}
.grid td {
width: 92px;
height: 92px;
}
.message-area {
position: absolute;
top: 0;
left: 0;
margin: 20px;
color: rgb(83, 175, 19);
font-size: 2.6rem;
}
.launcher {
position: absolute;
bottom: 0;
right: 0;
padding: 15px;
}
.launcher input {
background-color: rgb(193, 204, 186);
border-color: rgb(83, 175, 19);
}
.hit {
background: url(images/ship.png) no-repeat center center;
}
.miss {
background: url(images/miss.png) no-repeat center center;
}