Nu skal vi ned i CSS’en og lave styling på body og de 3 div bokse.
body {
background-color: purple;
overflow: hidden;
}
#circle0 {
position: absolute;
margin-top: -400px;
height: 1000px;
width: 1000px;
border-radius:50%;
background-color: #9311B8;
}
#circle1 {
position: absolute;
margin-top: -300px;
margin-left: 100px;
height: 800px;
width: 800px;
border-radius:50%;
background-color: #A911ED;
}
#circle2 {
position: absolute;
margin-top: -200px;
margin-left: 200px;
height: 600px;
width: 600px;
border-radius:50%;
background-color: #A30EC7;
}
Nu går vi op i HTML’en igen og laver opsætningen til vores bambus uro. Følg vejledningen på billedet.
Læg mærke til at du kan kopiere første sæt og derefter blot ændre på id navnene
.windChime0 {
margin-left: 350px;
margin-top: 300px;
}
@keyframes vip {
0%{transform: rotate(2deg)}
20%{transform: rotate(-2deg)}
40%{transform: rotate(2deg)}
60%{transform: rotate(-2deg)}
80%{transform: rotate(2deg)}
90%{transform: rotate(-2deg)}
100%{transform: rotate(2deg)}
}
.ring {
position:absolute;
height: 50px;
width: 50px;
border-radius: 50%;
border: 2px solid black;
margin-top: -330px;
margin-left: 125px;
}
.lock {
position: absolute;
height: 150px;
width: 2px;
background-color: black;
margin-left: 150px;
margin-top: -280px;
z-index: 10;
}