-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
53 lines (51 loc) · 849 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
*{
margin: 0;
padding: 0;
}
body{
background-color: #548687;
text-align: center;
}
.main-box{
height: 70vh;
justify-content: center;
align-items: center;
display:flex;
}
.games{
height: 60vh;
width: 60vw;
display: flex;
gap: 2vmin;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.box{
height: 18vh;
width: 18vw;
font-size: 8vmin;
border: none;
border-radius: 1rem;
background-color: pink;
}
#reset-bt{
height: 2vh;
width:10vw;
font-size: 3vmin;
color: violet;
border: none;
border-radius: 1rem;
background-color: aqua;
margin-top: 14px;
}
.str{
height: 6vh;
width:50vw;
font-size: 3vmin;
color: aqua;
border: none;
border-radius: 1rem;
background-color:violet;
margin-top: 2vmin;
}