Back to battles
#44
Stripes
<div></div>
<style>
body {
background: #1a4341;
display: grid;
place-content: center;
}
div {
width: 160px;
height: 180px;
background: repeating-linear-gradient(
to bottom,
#f3ac3c 0 20px,
#1a4341 20px 40px
);
}
div::after,
div::before {
content: '';
display: block;
width: 250px;
height: 280px;
border-radius: 50%;
background: #1a4341;
}
div::before {
translate: -220.5px -50px;
}
div::after {
translate: 130.5px -330px;
}
</style>08
Transition
3/3