-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (64 loc) · 1.05 KB
/
style.css
File metadata and controls
78 lines (64 loc) · 1.05 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
.row div {
border: 1px solid darkorange;
width: 55px;
height: 55px;
display: inline-block;
}
.row {
display: flex;
margin: 0;
}
h1, h2{
color:yellow;
margin: 10px;
}
.playerName {
display: inline-block;
}
.gameBoard {
display: inline-block;
background-color:rgba(255,0,255,0.1);
}
.gameArena {
display: inline-block;
margin: 0 40px 40px 40px;
}
.background {
background-image: url('images/background.jpg');
}
.docked {
width: 570px;
height: 70px;
border: 3px solid green;
display: block;
}
.miss {
/*background-color: white;*/
background-image: url('images/miss.png');
background-size: 100% 100%;
}
.hit {
/*background-color: red;*/
background-image: url('images/blast.png');
background-size: 100% 100%;
}
.shipIsHere {
/*background-color: blueviolet;*/
background-image: url('images/rocket3.png');
background-size: 100%;
}
.hidden {
display: none;
}
.fire {
width: 80%;
z-index: 1;
}
.fires {
font-size:150px;
z-index: -1;
color: yellow;
position: absolute;
text-align: center;
top:40%;
}