<div class="hold">
<div class="rec"></div>
<div class="rec"></div>
<div class="rec"></div>
<div class="text">Front <i>in</i> <span>Floripa</span></div>
</div>
@import url('https://fonts.googleapis.com/css?family=Montserrat:500,600,700,900');
*,
*:before,
*:after {
box-sizing: border-box;
}
body {
background: #666;
}
.hold {
border: solid 5px #666;
width: 280px;
height: 280px;
border-radius: 50%;
overflow: hidden;
margin: 20px auto 0;
position: relative;
box-shadow: 0 0 0 5px #fff;
background-color: #fff;
}
.hold:before,
.hold:after {
position: absolute;
border: solid 7px #666;
border-bottom: none;
content: '';
background-color: #fff;
width: 20px;
height: 110px;
z-index: 2;
border-radius: 10px 10px 0 0;
top: 40px;
}
.hold:before {
left: 60px;
}
.hold:after {
right: 60px;
}
.rec {
position: absolute;
left: -25%;
top: 10px;
height: 140px;
width: 50%;
background-image: linear-gradient(to right, white 70%, #666 70%);
background-size: 10px 50%;
overflow: hidden;
}
.rec:nth-child(2) {
left: 50%;
margin-left: -25%;
}
.rec:nth-child(3) {
left: 74%;
}
.rec:before {
content: '';
position: absolute;
top: -50%;
left: -2%;
background-color: #fff;
width: 104%;
height: 120%;
border-radius: 50%;
box-shadow: 0 0 0 3px #666;
}
.rec:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
border: solid 6px #666;
padding: 3px;
background-color: #fff;
border-radius: 3px;
}
.text {
position: absolute;
bottom: 35px;
text-align: center;
width: 100%;
color: #666;
font-family: 'Montserrat', sans-serif;
font-size: 20px;
text-transform: uppercase;
font-weight: 500;
line-height: 1.1;
}
.text:before,
.text:after {
content: '';
position: absolute;
top: 3px;
width: 35px;
height: 8px;
background-image: radial-gradient(ellipse farthest-corner at center top, #fff 45%, #666 45%, #666 70%, #fff 70%);
background-size: 50% 100%;
}
.text:before {
left: 40px;
}
.text:after {
right: 38px;
}
.text span {
display: block;
font-size: 42px;
font-weight: 900;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.