CSSBattle

Daily Targets (260517)

코드
<p><p b><p l ><p r>
<style>
  & {
    border: 20px solid #594C94;
    background: #EEEDED
  }

  p {
    /* 반원 */
    width: 180;
    height: 90;
    margin: 20 auto;
    background: #594C94;
    border-radius: 0 0 99q 99q
  }

  [b] {
    /* 하단 반원 */
    margin-top: 40;
    rotate: 180deg
  }

  [l], [r] {
    position: fixed;
    top: 85
  }

  [l] {
    /* 좌측 반원 */
    left: -5;
    rotate: -90deg
  }

  [r] {
    /* 우측 반원 */
    right: -5;
    rotate: 90deg
  }
</style>