_survey.scss 428 B

12345678910111213141516171819
  1. #open-survey-modal {
  2. position: fixed;
  3. bottom: 0;
  4. left: 2%;
  5. display: none;
  6. transition: padding-bottom .2s linear;
  7. background: $danger;
  8. color: #fff;
  9. padding: .5rem 1.5rem;
  10. border-top-left-radius: $border-radius;
  11. border-top-right-radius: $border-radius;
  12. box-shadow: 0 0 15px rgba(0, 0, 0, .3);
  13. &:hover {
  14. text-decoration: none;
  15. background-color: darken($danger, 9%);
  16. padding-bottom: 1rem;
  17. }
  18. }