forked from mrobock/steph_max_battleship
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathview.css
More file actions
145 lines (138 loc) · 2.74 KB
/
Copy pathview.css
File metadata and controls
145 lines (138 loc) · 2.74 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
body {
margin: auto;
background-image: url("images/battleship.jpg");
/*text-align: center;*/
}
#table {
margin: 15px auto;
text-align: center;
box-shadow: 5px 5px 5px #2d2d2d;
}
h1 {
font-family: 'Black Ops One', cursive;
color: white;
text-shadow: 2px 2px 4px black;
font-size: 70px;
text-align: center;
letter-spacing: 4px;
}
h3 {
font-family: 'Quantico', sans-serif;
font-size: 28px;
margin: 20px auto 20px auto;
text-shadow: 2px 2px 4px white;
color: #2B3034;
}
.header {
width: 100%;
margin: 20px auto 20px auto;
box-shadow: 5px 5px 5px #2d2d2d;
float: none;
background-color: #B32033;
border: 6px solid #f2f2f2;
padding: 0px;
}
.board {
border: 2px solid #566b77;
background-color: rgba(45, 71, 86, .85);
}
.board td {
height: 55px;
width: 55px;
}
.miss {
background-color: #738792;
}
.hit {
background-color: #B32033;
}
button {
background: #101E2B;
border-radius: 6px;
border-color: #273440;
font-family: 'Black Ops One', cursive;
font-size: 20px;
color: white;
/*text-shadow: 1px 1px 2px #595959;*/
text-align: center;
margin: 0 0 20px 0;
}
.shipTracker {
font-size: 18px;
padding: 0px;
}
.shipTrackerTable {
margin: -10px auto 50px auto;
border-collapse: separate;;
border-spacing: 0;
border: 3px solid rgba(45, 71, 86, .85);
border-radius: 9px;
box-shadow: 5px 5px 5px #2d2d2d;
}
.shipTrackerTable td {
background-color: rgba(45, 71, 86, .85);
/*border-bottom: 2px solid rgba(45, 71, 86, .65);*/
/*border-color: rgba(0, 0, 0, 0);
border-radius: 9px;*/
width: 140px;
height: 48px;
text-align: center;
font-family: 'Play', sans-serif;
font-size: 18px;
color: white;
}
.shipTrackerTable th {
height: 50px;
background-color: rgba(136,151,159, .75);
border-bottom: 2px solid rgba(45, 71, 86, .65);
/*border-radius: 9px;*/
text-align: center;
font-family: 'Quantico', sans-serif;
font-size: 18px;
color: #2B3034;
}
.boomImage {
width: 50px;
}
@media all and (max-width: 599px) and (min-width: 50px) {
h1{
font-size: 40px;
}
}
@media all and (max-width: 599px) and (min-width: 50px) {
h3{
font-size: 24px;
margin-top: 0px;
}
}
@media all and (max-width: 599px) and (min-width: 50px) {
.shipTrackerTable td, .shipTrackerTable th {
font-size: 14px;
height: 30px;
width: 105px;
}
}
@media all and (max-width: 599px) and (min-width: 50px) {
.board td {
height: 35px;
width: 35px;
}
}
@media all and (max-width: 599px) and (min-width: 50px) {
#table {
margin-top: -20px;
}
}
@media all and (max-width: 599px) and (min-width: 50px) {
button {
font-size: 14px;
}
}
#footer {
text-align: right;
font-family: 'Play', sans-serif;
font-size: 16px;
color: rgba(136,151,159, .75);
margin-right: 50px;
margin-top: -30px;
}