Visit this JSFiddle link
<!DOCTYPE html>
<html>
<head>
<style class="cp-pen-styles">
html,
body {
width: 100%;
height: 100%;
}
body {
position: relative;
background-color: #ddd;
overflow: hidden;
}
.main,
.container {
margin: auto;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 120px;
height: 120px;
border-radius: 50%;
}
.main {
background-color: #B81365;
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.35);
cursor: pointer;
z-index: 60;
}
.main .title {
margin: auto;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 80px;
font-size: 3em;
line-height: 80px;
text-align: center;
color: #fafafa;
}
.container {
z-index: 15;
}
.plate {
margin: auto;
position: absolute;
top: -10%;
right: -20%;
bottom: 15%;
left: -25%;
width: 17px;
height: 17px;
text-align: center;
}
.main + .container .plate:nth-of-type(1) {
top: -200%;
}
.container .plate:nth-of-type(2) {
top: -150%;
right: -130%;
}
.container .plate:nth-of-type(3) {
right: -175%;
}
.container .plate:nth-of-type(4) {
right: -120%;
bottom: -140%;
}
.container .plate:nth-of-type(5) {
bottom: -195%;
}
.container .plate:nth-of-type(6) {
bottom: -145%;
left: -160%;
}
.container .plate:nth-of-type(7) {
left: -205%;
}
.container .plate:nth-of-type(8) {
top: -135%;
left: -170%;
}
</style></head><body>
<center>
Credits to:<a href="http://codepen.io/Oka/pen/BNjwNz">Colin Hall-Coates codepen</a>
</center>
<label class='main' for='check'>
<div class='title'>
<i class='fa fa-bars'></i>
</div>
</label>
<div class='container'>
<a class='plate' href='#'>
<input type="radio"></input>
</a>
<a class='plate' href='#'>
<input type="radio"></input>
</a>
<a class='plate' href='#'>
<input type="radio"></input>
</a>
<a class='plate' href='#'>
<input type="radio"></input>
</a>
<a class='plate' href='#'>
<input type="radio"></input>
</a>
<a class='plate' href='#'>
<input type="radio"></input>
</a>
<a class='plate' href='#'>
<input type="radio"></input>
</a>
<a class='plate' href='#'>
<input type="radio"></input>
</a>
</div>
</body></html>