-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
51 lines (50 loc) · 955 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: #4F6D7A;
text-align: center;
}
.container{
height: 70vh;
text-align: center;
display: flex;
flex-direction: column;
gap: 5vmin;
justify-content: center;
margin-top: 15px;
align-items: center;
}
.game{
height: 60vmin;
width: 60vmin;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 1.5vmin;
}
.box{
height: 18vmin;
width: 18vmin;
border-radius: 1.5rem;
box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
font-size: 8vmin;
background-color: #DBE9EE;
color: black;
}
#btn{
border-radius: 1.1rem;
background-color: #4A6FA5;
height: 4rem;
width: 7rem;
font-size: 0.9632rem;
font-weight: 600;
color: #000000;
}
.hide{
display: none;
font-size: x-large;
}