penny271
2/16/2020 - 9:13 PM

scss ボタン 02-17-2020

.main {
  margin: 20px;
  text-align: center;

  h3 {
    margin-bottom: 15px;
    color: #555;
  }

  .button {
    display: inline-block;
    padding: 8px 24px;
    color: white;
    opacity: 0.8;
    border-radius: 4px;
    background-color: #f778b8;
    cursor: pointer;
    box-shadow: 0 5px #e04893;
    

    // .buttonにカーソルを合わせた時のコードを追加してください
    &:hover {
      opacity: 1;
    }
    
    
    // .buttonクリックした時のコードを追加してください
    &:active {
      position: relative;
      top: 7px;
      box-shadow: none;
    }
    
  }
}