-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtype.css
More file actions
40 lines (40 loc) · 709 Bytes
/
type.css
File metadata and controls
40 lines (40 loc) · 709 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
*{
margin: 0;
padding: 0;
}
body{
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.game{
width: 700px;
height: 500px;
background-color: rgb(129, 255, 127);
position: relative;
}
.danger-line{
width: 100%;
height: 15px;
background-color: rgb(56, 191, 29);
position: absolute;
bottom: 0;
}
.basket{
width: 90px;
height: 60px;
background-color: yellow;
position: absolute;
bottom: 15px;
left: calc(50% - 25px);
border-radius: 0% 0% 50% 50%;
}
.ball{
width: 40px;
height: 40px;
background-color: rgb(222, 40, 216);
position: absolute;
border-radius: 50%;
}