コピペOK!

Webコーディング帳

ふんわり浮く

Button

HTML

            
<div class="btn anime-fuwari">
  <span>Button</span>
</div>             
        

CSS

            
.anime-fuwari {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.anime-fuwari:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
// ボタンのスタイル
.btn {
  background-color: #eb6100;
  width: 240px;
  height: 54px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto;
  box-shadow: 0px 4px 4px rgba($color: #000000, $alpha: .16);
  cursor: pointer;
  color: #fff;
}