-
Notifications
You must be signed in to change notification settings - Fork 0
/
style2.css
62 lines (56 loc) · 1 KB
/
style2.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
.game {
text-align: center;
height: 60vmin;
width: 60vmin;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 0.5rem;
}
button:hover{
background-color:lightgoldenrodyellow;
}
.container{
height: 70vh;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.box{
height:18vmin;
width: 18vmin;
border-radius: 1rem;
background-color: rgb(242, 245, 243);
color: rgb(162, 30, 30);
font-size: 8vmin;
}
body{
background-color: rgb(45, 104, 106);
text-align: center;
}
.reset{
margin-top: 0.5rem;
padding: 1rem;
background-color: crimson;
color: aliceblue;
border-radius: 0.5rem;
}
.new{
margin-top: 0.5rem;
padding: 1rem;
background-color: crimson;
color: aliceblue;
border-radius: 0.5rem;
}
.container-one{
margin-top: 100vmin;
}
.hide{
display: none;
}
.win{
color: azure;
font-size: xx-large;
}