Malleys,
 Вырубание топором
<style>
@media all {
  .buttonRED:hover, .test {
    background-color: #ee5f5b;
  }
  .buttonRED {
    background-color: #B61E29;
    border: 1px solid #000;
    width:100px;
  }
  
  .buttonRED:active {
    background: #ff6;
  }
}
</style>
<div class='test'>Test</div>
<div class='buttonRED'>Красная кнопка</div>
<button id = 'clear'>Удалить стили</button>
<script>
clear.onclick = function () {
   var style = document.querySelector('style');
    style.textContent = style.textContent.replace('buttonRED:hover','empty');
    style.textContent = style.textContent.replace('buttonRED:active','empty');
 
}
</script>