-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (52 loc) · 816 Bytes
/
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
*{
margin:0;
padding:0;
}
body{
text-align: center;
background-color: rgb(82, 151, 128);
}
.container{
height:70vh;
display: flex;
justify-content: center;
align-items: center;
}
.game{
height:60vh;
width:60vh;
display: flex;
flex-wrap: wrap;
}
.box{
height:18vh;
width:18vh;
margin-bottom: 8px;
margin-right: 8px;
border-radius: 20px;
border:none;
font-size: 3rem;
color:rgba(255, 0, 0, 0.708)
}
#resetBtn{
width:80px;
height:40px;
border-radius:10px ;
color:white;
background-color: black;
}
#newBtn{
width:80px;
height:40px;
border-radius:10px ;
color:white;
background-color: black;
}
#msg{
font-size: 2rem;
margin: 10px;
color:aliceblue
}
.hide{
display:none;
}