SCSS

by Raphael Quintao

HTML

<div id="banner-message">
   <p>Hello World</p>
   <button>Hover to change color</button>
 </div>

SCSS

$blue: #0084ff;
$blue-darker: darken($blue, 5%);

body {
  background: red;
  padding: 20px;
}

#banner-message {
  border-radius: 4px;
  padding: 20px;
  font-size: 25px;
  text-align: center;
  transition: all 0.2s;
  margin: 0 auto;
  width: 300px;
  
  button {
    background: $blue-darker;
    border: none;
    border-radius: 5px;
    padding: 8px 14px;
    font-size: 15px;
  }
  
  &:hover {
    background: $blue-darker;
    color: #fff;
    width: 200px;
  }
  
  &:hover button {
    background: #fff;
    color: red;
  }
}