< Back to Frontend Friday Folks Index

Wig

Visit the official puzzle page (affiliate link!) to play it yourself. If you buy a course from CSSBattle through my affiliate link, I receive a share of it!

Highlighted solution (242 characters)
1
<div></div>
2
<div></div>
3
<style>
4
  body{display:flex;place-items:center;justify-content:center;background:#62306D}
5
  div {
6
    width: 80px;
7
    height: 160px;
8
    background: #F7EC7D;
9
    border-radius: 80px 0 40px 0;
10
  } 
11
 div+div{scale:-1 1}

This had to be done extremely fast as I almost missed FFF due to daylight savings time ending differently than in the US and I missed it last week. So I used a couple of minutes to do this and afterwards went on to puzzle 135.

< Back to Frontend Friday Folks Index