-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
88 lines (74 loc) · 1.18 KB
/
styles.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
*{
margin: 0;
padding: 0;
}
.mynavbar{
background-color: rgb(28, 11, 11);
height: 65px;
color: antiquewhite;
display: flex;
align-items: center;
font-size: 1.30rem;
}
.mynavbar ul{
list-style-type: none;
}
.game-container{
margin-top: 20px;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
gap: 40px;
}
.container-1{
display: grid;
grid-template-rows: repeat(3,10vw);
grid-template-columns: repeat(3,10vw);
justify-content: center;
}
.box{
border: 2px solid black ;
margin: 0;
padding: 0;
font-size: 8vw;
display: flex;
justify-content: center;
align-items: center;
}
.box:hover{
background-color: antiquewhite;
}
.bl-0{
border-left: 0;
}
.bt-0{
border-top: 0;
}
.br-0{
border-right: 0;
}
.bb-0{
border-bottom: 0;
}
.info{
font-size: 20px;
}
.game-info{
display: flex;
align-items: center;
justify-content: space-between;
}
#reset{
margin: 20px;
}
.animated-gif{
position: absolute;
top: 200px;
left: 40%;
width: 0;
}
.game-over{
background-color: rgb(164, 231, 181);
opacity: 0.8;
}