-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (48 loc) · 826 Bytes
/
Copy pathstyle.css
File metadata and controls
49 lines (48 loc) · 826 Bytes
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
*{
margin:0;
padding:0;
box-sizing: border-box;
}
body{
background:#303030;
color:white;
font-family:Poppins;
text-align:center;
}
main{
position:absolute;
left:50%;
top:50%;
transform:translate(-50%,-50%);
user-select: none;
}
section{
background:white;
display:grid;
grid-template-columns:repeat(3,minmax(100px,15vw)) ;
grid-template-rows: repeat(3,minmax(100px,15vw));
gap:max(10px,1vw);
padding:max(10px,1vw);
}
.p{
display:grid;
place-content: center;
min-width:100px;
min-height:100px;
color: white;
font-size:7em;
font-weight:300;
background: #303030;
}
h1{
text-align: center;
margin-bottom:1.5em;
font-size:max(3em,5vw);
font-weight:900;
}
.X{
background:red;
}
.O{
background:blue;
}