<div>
  Click me!
</div>

<h1 class="hover">Hovered!</h1>
<h1 class="active">Active!</h1>
h1 {
  opacity: 0;
  transition: all .5s;
}

div {
  height: 20px;
  width: 80px;
  border-radius: 20px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  
  background-color: #2D26FF;
  color: #ffffff;
  transition: all .5s;
  
  &:hover {
    background-color: green;
    & ~ h1.hover {
      opacity: 1;
    }
  }
  
  &:active {
    background-color: red;
    
    & ~ h1.active {
      opacity: 1;
    }
    & ~ h1.hover {
      opacity: 0;
    }
  }
}
View Compiled
Run Pen

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.