-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
52 lines (51 loc) · 939 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
:root{
--white: #F5F7F8;
--black: #45474B;
--yellow: #F4CE14;
--green: #495E57;
background-color: var(--white);
color: var(--black);
font-size: larger;
font-weight: 900;
}
.container{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
flex-direction: column;
gap: 10px;
}
.XOGrid{
display: grid;
grid-template-columns: repeat(3,1fr);
grid-template-columns: repeat(3,1fr);
gap: 0;
}
.cell{
width: 150px;
height: 150px;
text-align: center;
font-size: larger;
}
.bottom{
border-bottom: 2px solid var(--black);
}
.right{
border-right: 2px solid var(--black);
}
.left{
border-left: 2px solid var(--black);
}
.top{
border-top: 2px solid var(--black);
}
.pacifico-regular {
font-family: "Pacifico", cursive;
font-weight: 400;
font-style: normal;
}
.flex{
display: flex;
flex-direction: column;
}