-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.css
59 lines (57 loc) · 1004 Bytes
/
game.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
body{
background-color: #548687;
text-align: center;
margin-top: 50px;
}
.container{
height: 70vh;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
.game{
height: 60vmin;
width: 60vmin;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap:10px;
}
.box{
height: 18vmin;
width: 18vmin;
align-items: center;
justify-content: center;
border-radius:10px ;
border:none;
font-size: 30px;
color:rgb(187, 9, 9);
background-color: bisque;
}
.msg-container{
margin:200px;
height:100vmin;
font-size: 30px;
color: rgb(65, 216, 19);
}
.hide{
display: none;
}
#newGame{
padding: 20px;
background-color: black;
color: bisque;
font-weight: bold;
border-radius: 40px;
border:none;
}
#resetGame{
padding: 20px;
background-color: black;
color: bisque;
font-weight: bold;
border-radius: 40px;
border:none;
}