.cloud
.cloud_two
View Compiled
@import "compass/css3";
*{margin: 0; padding: 0; box-sizing: border-box;}
body{
background: #2EB5E5;
}
.cloud, .cloud_two{
animation: move 6s ease infinite;
@include border-radius(50%);
position: absolute;
top: 50%; left: 50%;
margin-top: -30px;
margin-left: -30px;
background: #FFFFFF;
height: 60px; width: 60px;
box-shadow:
#FFFFFF 65px -15px 0 -5px,
#FFFFFF 25px -25px,
#FFFFFF 30px 10px,
#FFFFFF 60px 15px 0 -10px,
#FFFFFF 85px 5px 0 -5px;
}
.cloud_two{
top: 52%; left: 31%;
animation-duration: 8s;
}
@keyframes move{
50% { transform: translateY(-15px); }
}
View Compiled
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.