-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
61 lines (51 loc) · 1020 Bytes
/
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
html{
--background: #211522;
--foreground: #613659;
--text: #D3B1C2;
color: var(--text);
background: var(--background);
}
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
nav{
display: flex;
justify-content:space-evenly;
}
.wrapper{
display:flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 90vh;
}
.container{
display: grid;
/* min-width: 50%;
min-height: 50%; */
background: var(--foreground);
grid-template: repeat(3, minmax(200px, 1fr)) / repeat(3, minmax(200px, 1fr));
justify-items: center;
align-items: center;
border-radius: 5px;
}
.gameBoardSquare {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
border: solid 2px var(--background);
color: green;
font-size: 3rem;
}
.display__Score{
display: flex;
justify-content: space-between;
width: 50vw;
}
.disable{
pointer-events: none;
}