CSSBattle

Daily Targets (260113)

코드
<p><i>
<style>
  &>*{
    background:#45B45B
  }
  *{
    margin:0
  }
  p {
    /* 좌우측 줄무늬 패턴 */
    -webkit-box-reflect: right;
    margin: 30 0;
    width: 50%;
    height: 240;
    background: linear-gradient(#194247 120px, #45B45B 0) 20px 60px / 50px 130px repeat-y
  }
  i{
    /* 중앙 상단 작은 원 */
    position: fixed;
    top: 30;
    left: 175;
    width: 50;
    height: 50;
    border-radius: 50%;
    background: #194247
  }
</style>