Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <div class="half-circle1">
  2. <div class="trim"></div></div>
  3. <div class="space"></div>
  4. <div class="half-circle2">
  5. <div class="trim"></div></div>
  6. <div class="half-circle3">
  7. <div class="trim3"></div></div>
  8. <style>
  9.   html {
  10.     background: #6592CF;
  11.   }
  12.   body{
  13.     justify-content:center;
  14.     display:flex;
  15.   }
  16.   .half-circle1,.half-circle2, .half-circle3{
  17.     width:80px;
  18.     height:80px;
  19.     border-radius:100px 100px 0 0;
  20.     background:#6592CF;
  21.     box-shadow:0px 0px 0 20px #060F55;
  22.     top:52;
  23.     left:-20;
  24.     position:relative;
  25.   }
  26.  
  27.   .half-circle2{
  28.     left:100;
  29.   }
  30.   .half-circle3{
  31.     top:152;
  32.     border-radius:0px 0px 100px 100px;
  33.     left:-80;
  34.   }
  35.   .trim,.trim3{
  36.     width:120px;
  37.     height:80px;
  38.     background:#6592CF;
  39.     position:absolute;
  40.     bottom:-40;
  41.     left:-20;
  42.   }
  43.   .trim3{
  44.     top:-40;
  45.   }
  46.  
  47. </style>
  48.