- インスタ風
- 目立つカラー
- ちょっと楽しい
HTML
<ul class="list-sticker">
<li>インスタ風</li>
<li>目立つカラー</li>
<li>ちょっと楽しい</li>
</ul>
CSS
.list-sticker {
list-style: none;
padding: 0;
margin: 24px 0;
display: flex;
flex-wrap: wrap;
gap: 12px;
}
.list-sticker li {
background: #f9a8d4;
color: #fff;
font-weight: bold;
font-size: 14px;
padding: 10px 18px;
border-radius: 8px;
transform: rotate(-2deg);
box-shadow: 2px 2px 0 #ec4899;
transition: transform 0.2s ease;
}
.list-sticker li:hover {
transform: rotate(0deg) scale(1.05);
}