<div class="box">
<div class="box__inner">
<h1 class="box__title">
<span class="box__title-text">今月のおすすめ珈琲</span>
</h1>
<ul class="list">
<li class="list__item">イエメン マタリ</li>
<li class="list__item">エチオピア イルガチェフェ</li>
<li class="list__item">タンザニア キリマンジェロ</li>
</ul>
</div>
</div>
.box {
font-size: 16px;
background: repeating-linear-gradient(
-45deg,
#fff 0 5px,
#ffaebc 5px 10px
);
margin: 1rem;
// height: 200px;
padding: 1rem;
max-width: 500px;
&__inner {
background-color: #fff;
min-height: 100px;
text-align: center;
padding: 1rem;
}
&__title {
font-family: 'Zen Maru Gothic', sans-serif;
margin: 0 0 .5rem;
text-align: center;
font-size: 1.5rem;
padding: .5rem;
letter-spacing: .25rem;
&-text {
position: relative;
&:before {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 2.25rem;
height: 3px;
border-radius: 3px;
background-color: #ffaebc;
transform: translateX( -150% ) rotate(50deg);
transform-origin: right bottom;
}
&:after {
content: '';
position: absolute;
right: 0;
bottom: 0;
width: 2.25rem;
height: 3px;
border-radius: 3px;
background-color: #ffaebc;
transform: translateX( 150% ) rotate(-50deg);
transform-origin: left bottom;
}
}
}
}
.list {
display: inline-block;
margin: 0;
padding: 0;
&__item {
font-family: 'Zen Maru Gothic', sans-serif;
text-align: left;
padding: .25rem 0;
}
}
View Compiled
This Pen doesn't use any external JavaScript resources.