-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
111 lines (97 loc) · 1.61 KB
/
style.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
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
*{
margin: 0;
}
body{
margin: 0 auto;
padding: 0;
}
.whole{
display: flex;
justify-content: center;
flex-direction: row;
background-color: #331a00;
align-items: center;
height: 100vh;
width: 100%;
}
.main-game-container{
width: 850px;
height: 850px;
transform: scale(0.8);
}
.right {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
height: 100%;
width: 100%;
background-color: #331a00;
color: white;
border: 1px solid white;
}
.right img {
width: 100px;
height: 70px;
background-color: white;
}
.controls {
display: flex;
width: 100%;
justify-items: space-around;
}
.controls span {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
width: 50%;
}
.bomber-info {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
.bomb-pwr {
color: red;
height: 50px;
}
.bombr-spd {
color: yellow;
height: 50px;
}
.bomb-num {
color: cyan;
height: 50px;
}
.left {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
height: 100%;
width: 100%;
background-color: #331a00;
color: white;
border: 1px solid white;
}
.left img {
width: 100px;
height: 70px;
background-color: white;
}
.start-btn{
width: 80px;
height: 40px;
font-weight: bold;
font-size: 1.2em;
}
.start-screen{
display: flex;
flex-direction: column;
align-items: center;
}
.modal-header{
text-align: center;
}