-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (46 loc) · 845 Bytes
/
style.css
File metadata and controls
53 lines (46 loc) · 845 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
51
52
53
body {
background-color: black;
}
.playground {
margin: 5em;
display: grid;
grid-template-columns: auto auto auto;
grid-gap: .1em;
justify-items: center;
justify-content: center;
}
.playground div {
border: 3px;
border-color: red;
border: 1px solid red;
width: 10vw;
height: 10vw;
background-color: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 5vw;
}
.ground1 {
background-color: red;
}
.player {
height: 5em;
display: flex;
align-items: center;
justify-content: center;
}
button {
height: 2em;
width: 6em;
border-bottom: 2px solid white;
background: white;
padding: .3em 0;
border-radius: 0.7em;
}
button:hover {
cursor: pointer;
height: 5em;
width: 6em;
background: white;
}