<div id = "cloud">
<span class='shadow'></span>
</div>
body {
background: #ACEAFF;
}
#cloud {
width: 350px; height: 120px;
background: #f2f9fe;
background: gradient(linear, 0 0, 0 100%, color-stop(0.05, #f2f9fe), to(#d6f0fd));
background: linear-gradient(#f2f9fe 5%, #d6f0fd 100%);
background: linear-gradient(#f2f9fe 5%, #d6f0fd 100%);
background: linear-gradient(#f2f9fe 5%, #d6f0fd 100%);
background: linear-gradient(#f2f9fe 5%, #d6f0fd 100%);
border-radius: 100px;
position: relative;
margin: 180px auto 100px;
}
#cloud:after, #cloud:before {
content: "";
position: absolute;
background: #f2f9fe;
z-index: -1;
}
#cloud:after {
width: 100px;
height: 100px;
top: -50px;
left: 50px;
border-radius: 100px;
}
#cloud:before {
width: 180px;
height: 180px;
top: -90px;
right: 50px;
border-radius: 200px;
}
.shadow {
width: 300px;
position: absolute;
bottom: -10px;
left: 20px;
background: #000;
z-index: -1;
box-shadow: 0 0 25px 8px rgba(0,0,0,0.4);
box-shadow: 0 0 25px 3px rgba(0,0,0,0.3);
border-radius: 50%;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.