CSSBattle

Daily Targets (260703)

코드
<e></e>
<m></m>
<c></c>
<style>
  & {
    background: #9BE9FD
  }

  &>*{
    /* 머리*/
    position: relative;
    margin: 50 100;
    background: linear-gradient(#9BE9FD) 50% 50px / 120px 99% no-repeat #222;
    border-radius: 50%;

    * {
      position: absolute;
      background: #222
    }
  }
  
  e {
    /* 눈 */
    top: 80;
    left: 60;
    right: 60;
    height: 30;
    background: linear-gradient(90deg, #222 30px, #0000 0) 0 0 / 50px
  }

  m {
    /* 입 */
    top: 140;
    left: 65;
    right: 65;
    height: 20
  }

  c {
    /* 턱 */
    top: 180;
    left: 50;
    right: 50;
    height: 20
  }
</style>