forked from mongolchic/Battleship
-
Notifications
You must be signed in to change notification settings - Fork 1
/
bs.css
86 lines (74 loc) · 1.75 KB
/
bs.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
86
body {
background-color: orange;
text-align: center;
font-family: 'Orbitron', sans-serif;
}
td {
height: 60px;
width: 60px;
border: 1px solid grey;
}
table {
border-size: 1px;
border-style: solid;
border-color: black;
background-image:url("http://thumbs.dreamstime.com/z/ocean-waves-seamless-pattern-18754624.jpg");
background-size: 800px 800px;
border-collapse: collapse;
margin-left: auto;
margin-right: auto;
}
.statusHead {
height:25px;
}
.col1 {
height: 25px;
width: 150px;
}
.tinyLifeStatusCell {
height: 25px;
width: 25px;
border: none;
}
.full {
background-image: url("http://orig02.deviantart.net/8baa/f/2012/058/0/5/8_bit_heart_stock_by_xquatrox-d4r844m.png");
background-size: cover;
background-repeat: no-repeat;
}
.shipStatus {
background-image: none;
float: right;
margin-top: 60px;
margin-right: 120px;
}
.tableContainer {
text-align: center;
}
.miss {
background-image:url("http://www.clipartbest.com/cliparts/McL/L7p/McLL7pkKi.png");
background-size: 45px 45px;
background-repeat: no-repeat;
background-position: center;
}
.destroyed {
background-image: url("http://www.clipartbest.com/cliparts/pi5/oLR/pi5oLR49T.png");
background-size: 60px 60px;
background-position: center;
}
.showShip {
background-image: url("http://images.freeimages.com/images/premium/previews/3674/36746882-cartoon-cruise-ship.jpg");
background-size: 80px 60px;
background-position: center;
}
.showSubmarine {
background-image: url("http://www.drawingnow.com/file/videos/image/how-to-draw-a-submarine.jpg");
background-size: 80px 60px;
background-position: center;
}
.container {
margin-left:auto;
margin-right: auto;
display: flex;
justify-content: space-around;
flex-direction: row;
}