Skip to content

Latest commit

 

History

History
65 lines (62 loc) · 1.15 KB

17.Fidget_Spinner.md

File metadata and controls

65 lines (62 loc) · 1.15 KB

Totally_Triangle

<div class="box"></div>
<div class="cir-1"></div>
<div class="cir-2"></div>
<div class="cir-3"></div>
<div class="cir-4"></div>

<style>
  body{
    background:#09042A;
  }
  .cir-1{
    width: 60px;
    height: 60px;
    background: #F5BB9C;
    border:10px solid #09042A;
    border-radius:50%;
    position:absolute;
    top:57px;
    left:160px;
  }
  .cir-2{
    width: 60px;
    height: 60px;
    background: #F5BB9C;
    border-radius:50%;
    position:absolute;
    border:10px solid #09042A;
    top:163px;
    left:160px;
  }
   .cir-3{
    width: 60px;
    height: 60px;
    background: #09042A;
     border:10px solid #E78481;
    border-radius:50%;
    position:absolute;
    top:110px;
    left:100px;
  }
  .cir-4{
    width: 60px;
    height: 60px;
    background: #09042A;
    border:10px solid #E78481;
    border-radius:50%;
    position:absolute;
    top:110px;
    left:220px;
  }
  .box{
    width: 60px;
    height: 60px;
     background: #E78481;
     position:absolute;
    top:120px;
    left:170px;
  }
</style>