-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXmas.css
43 lines (43 loc) · 778 Bytes
/
Xmas.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
#container{
display: flex;
justify-content: space-between;
position: relative;
width: 500px;
height: 350px;
border: 1px solid black;
}
#bar{
height: inherit;
width: 150px;
background-color: antiquewhite;
}
#tree{
height: inherit;
width: inherit;
background-image: url("Xmas.png");
background-size: 100% cover;
background-color: rgb(207, 253, 253);
}
button{
position: absolute;
left: 20px;
width: 70px;
height: 70px;
background-color: blueviolet;
border-radius: 10px;
border-color: rgb(47, 0, 156)
}
#create-ball{
top: 40px;
}
#start-shining{
top:250px;
}
.ball{
position: absolute;
left: 55px;
top: 100px;
width: 20px;
height: 20px;
background-size: cover;
}