-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (50 loc) · 946 Bytes
/
style.css
File metadata and controls
50 lines (50 loc) · 946 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
50
*{
margin: 0;
font-family: Helvetica, sans-serif;
box-sizing: border-box;
}
body{
height: 95vh;
display: flex;
justify-content: center;
align-items: center;
}
.container{
width: 400px;
height: 400px;
background-color: #ffffff;
border-radius: 20px;
display: grid;
grid-template-columns: auto auto auto;
gap: 20px;
padding: 20px;
border: 10px solid #fc7b7f;
}
.squareC{
background-color: #E9E9E9;
width: 100px;
height: 100px;
border-radius: 5px;
display: flex;
align-items: center;
justify-content: center;
font-size: 7rem;
cursor: pointer;
}
h1{
margin: 0 200px;
padding: 20px;
border-radius: 20px;
}
#playerOneDis{
background-color: #f17cc0;
}
#playerTwoDis{
background-color: #67b3ff;
}
.pOneColor{
background-color: #f17cc0;
}
.pTwoColor{
background-color: #67b3ff;
}