-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
69 lines (59 loc) · 1.06 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: black;
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
p {
color: white;
}
.gridContainer {
margin-top: 3rem;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
width: 30rem;
/* border: 2px solid black; */
}
.playButton {
background-color: rgb(235, 248, 245);
width: 1fr;
height: 10rem;
font-size: 8rem;
}
.startBtn {
background-color: rgb(254, 167, 27);
width: 11rem;
height: 6rem;
margin-top: 2rem;
font-size: 1.5rem;
}
.startBtn:hover {
background-color: rgb(248, 240, 2);
}
.playButton:hover {
background-color: rgb(181, 130, 227);
}
p {
font-size: 3rem;
}
.winningSquare {
background-color: rgb(255, 238, 0);
width: 1fr;
height: 10rem;
font-size: 8rem;
}
.winningSquare:hover {
background-color: rgb(255, 238, 0);
width: 1fr;
height: 10rem;
font-size: 8rem;
}