CSSBattle

Daily Targets (260412)

코드
<p><p s>
<style>
  &>* {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F3AC3C
  }
  p {
    width: 120;
    height: 170;
    background:
      /* 원 모양 */
      radial-gradient(#F3AC3C 40px, #0000 0) 10px 30px / 100px 100px no-repeat,
      /* 줄무늬 패턴 */
      linear-gradient(90deg, #442929 40px, #0000 0) 0 / 80px
  }

  [s] {
    width: 40;
    margin-left: 20
  }
</style>