-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (63 loc) · 1.08 KB
/
style.css
File metadata and controls
71 lines (63 loc) · 1.08 KB
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
67
68
69
70
71
body{
display: flex;
flex-direction: column;
background-color: black;
margin-top: 9rem;
}
.game {
width: 300px;
margin: auto;
text-align: center;
color: white;
}
.title{
font-size: 30px;
background-color: black;
padding-left: 3rem;
}
span{
font-size: 30px;
color: rgb(25, 245, 25);
}
.square{
width: 90px;
height: 90px;
float: left;
background-color: rgb(253, 253, 252);
margin: 5px;
color: black;
font-size: 70px;
}
.square:hover{
background-color: rgb(188, 247, 193);
cursor: pointer;
transition: 0.3s ease;
}
.onePerson:hover , .twoPerson:hover{
color: rgba(255, 255, 255, 0.705);
cursor: pointer;
}
.info, title{
gap: 2rem;
display: flex;
gap: 2rem;
margin: auto;
color: white;
}
.twoPerson{
display: none;
}
.countero{
padding-left: 3rem;
}
.counterx{
padding-left: 2rem;
}
.counter{
padding-left: .5rem;
}
.container{
display: flex;
flex-direction: row;
margin: auto;
}