_hover.scss 232 B

123456789101112
  1. #home{
  2. .content{
  3. p:last-child{
  4. a:hover{
  5. color: white;
  6. background-color: $green;
  7. -webkit-transition: background-color 0.3s ease;
  8. transition: background-color 0.3s ease;
  9. }
  10. }
  11. }
  12. }