hendroazgards

Untitled

Mar 16th, 2021
3,929
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.90 KB | None | 0 0
  1. <div>
  2. <div class=yellow></div>
  3. <span class=small-circle></span>
  4.   <div class=block></div>
  5.   <div class=block2></div>
  6. </div>
  7.  
  8. <style>
  9.   body {
  10.     justify-content:center;
  11.     display:flex;
  12.     align-items:center;
  13.     background: #E38F66;
  14.   }
  15.   div{
  16.     border-radius:50%;
  17.     background:#AA445F;
  18.     width:200px;
  19.     height:200px;
  20.     position:relative;
  21.   }
  22.   div .yellow{
  23.     height:140px;
  24.     width:140px;
  25.     background:#F7EC7D;
  26.     border-radius:50%;
  27.     position:absolute;
  28.     top:30;
  29.     left:30;
  30.   }
  31.   .small-circle{
  32.     height:80px;
  33.     width:80px;
  34.     background:#AA445F;
  35.     border-radius:50%;
  36.     position:absolute;
  37.     top:60;
  38.     left:60;
  39.   }
  40.   .block, .block2{
  41.     height:100px;
  42.     width:100px;
  43.     background:#AA445F;
  44.     border-radius:100px 0px 0px 0px;
  45.   }
  46.  
  47.   .block2{
  48.     border-radius:0px 0px 100px 0px;
  49.     position:absolute;
  50.     left:100;
  51.   }
  52. </style>
  53.  
Advertisement
Add Comment
Please, Sign In to add comment