CSSBattle

Daily Targets (260218)

코드
<p><p s><i>
<style>
  &>*{
    background: #FEF6E2
  }

  p {
    /* 반 도넛 표현 */
    width: 160;
    height: 80;
    border: 50px solid #A82828;
    border-top: 0;
    border-radius: 0 0 999px 999px;
    margin: 40 auto 0
  }

  [s] {
    margin-top: -40;
    transform: scaleY(-1)
  }

  i {
    /* 라운딩 표현 */
    position: fixed;
    bottom: 53;
    left: -50;
    width: 50;
    height: 50;
    border-radius: 50%;
    background: #A82828;
    box-shadow: 210px -2px 0 #A82828
  }
</style>