Skip to content

Latest commit

 

History

History
36 lines (32 loc) · 610 Bytes

003_push-button.md

File metadata and controls

36 lines (32 loc) · 610 Bytes

Battle #1 - Pilot Battle

#3 - Push Button

Link to the problem

result

<div class="back"></div>
<div class="front"></div>
<style>
  body {
    background: #6592CF;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  div {
    position: absolute;
  }
  .front {
    width: 50px;
    height: 50px;
    background: #EEB850;
    border-radius: 50%;
    border: 50px solid #243D83;
    outline: 50px solid #6592CF;
  }
  .back {
    width: 300px;
    height: 150px;
    background: #243D83;
  }
</style>