-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
78 lines (73 loc) · 1.34 KB
/
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
*{
padding: 0;
margin: 0;
}
body{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
background-color: rgb(94, 92, 70);
text-align: center;
}
.gamename{
font-size: 2rem;
margin-top: 2rem;
margin-bottom: 2rem;
color: rgb(176, 240, 240);
}
.gamebox{
height: 70vmin;
display: flex;
justify-content: center;
align-items: center;
}
.container{
height: 60vmin;
width: 60vmin;
display: grid;
grid-template-columns: repeat(3,1fr);
grid-template-rows: repeat(3,1fr);
gap: 1rem;
}
.boxes{
height: 18vmin;
width: 18vmin;
background-color: rgb(202, 202, 89);
border: none;
border-radius: 1rem;
font-size: 4rem;
text-align: center;
color: black;
}
.reset{
padding: 0.8rem 1.5rem;
font-size: 2rem;
border: solid 2px black;
border-radius: 5px;
color: antiquewhite;
background-color: rgb(24, 23, 23);
}
#newgame{
padding: 0.8rem 1.5rem;
font-size: 2rem;
border: solid 2px black;
border-radius: 5px;
color: antiquewhite;
background-color: rgb(24, 23, 23);
}
.msg-box{
height: 15rem;
display: flex;
flex-direction: column;
}
#msg{
font-size: 2rem;
margin-top: 2rem;
margin-bottom: 2rem;
color: rgb(176, 240, 240);
}
.hide{
display: none;
}