ポップなポテっとボタン(ふわっと浮く)

HTML
<div class="push-button_box">
  <a href="#" class="push-button bubble-pop">クリックしてね</a>
</div>
CSS
.push-button_box{
  width:30%;
  margin:50px auto;
}
.push-button.bubble-pop {
  display: inline-block;
  padding: 14px 24px;
  background: #fcd34d;
  color: #92400e;
  font-weight: bold;
  font-size: 15px;
  text-align: center;
  border-radius: 50px;
  border: 2px solid #facc15;
  box-shadow: 0 4px 0 #eab308;
  text-decoration: none;
  transition: all 0.15s ease;
}

.push-button.bubble-pop:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #eab308;
}

🌟 有料会員限定素材を配布中!

ここでしか手に入らない特別デザイン素材を今すぐチェック!

有料会員ページを見る
目次