-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (52 loc) · 987 Bytes
/
style.css
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
/* body{
background-color: white;
display: flex;
justify-content: center;
} */
.container{
/* height: 98vh;
width: 80vh;
display: flex;
flex-direction: column;
justify-content: space-between; */
position: relative;
}
#rod-1{
height: 20px;
width: 200px;
background-color: blue;
text-align: center;
font-size: small;
color: white;
border-radius: 20px;
display: flex;
flex-direction: column;
justify-content: center;
position: fixed;
top: 0px;
left: 50%;
}
#rod-2{
height: 20px;
width: 200px;
background-color: purple;
text-align: center;
font-size: small;
color: white;
border-radius: 20px;
display: flex;
flex-direction: column;
justify-content: center;
position: fixed;
bottom: 0px;
left: 50%;
}
#ball{
height: 20px;
width: 20px;
border-radius: 50%;
background-color: red;
position: fixed;
top: 20px;
left: 52.5%;
}