-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
66 lines (56 loc) · 1.3 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
body {
background-color: beige;
font-family: 'Poppins', sans-serif;
min-height: 95vh;
display: grid;
place-items: center;
}
main {
text-align: center;
}
.game-wrapper {
display: grid;
grid-template-columns: repeat(3, 1fr);
max-width: 102px;
margin: auto;
}
button {
background-color: transparent;
border: solid 1px #323232;
color: #323232;
cursor: pointer;
font-family: 'Poppins', sans-serif;
font-weight: 500;
}
.game-wrapper button {
width: 34px;
height: 34px;
}
.game-wrapper button:disabled {
cursor: not-allowed;
}
.game-wrapper button:first-child,
.game-wrapper button:nth-child(4),
.game-wrapper button:nth-child(7) {
border-left-color: transparent;;
}
.game-wrapper button:nth-child(3),
.game-wrapper button:nth-child(6),
.game-wrapper button:last-child {
border-right-color: transparent;;
}
.game-wrapper button:first-child,
.game-wrapper button:nth-child(2),
.game-wrapper button:nth-child(3) {
border-top-color: transparent;
}
.game-wrapper button:nth-child(7),
.game-wrapper button:nth-child(8),
.game-wrapper button:last-child {
border-bottom-color: transparent;
}
button[type="reset"],
.play-again {
padding: 0.5rem 1rem;
margin-top: 1rem;
}