_alerts.scss 798 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /******************************************************************
  2. Site Name:
  3. Author:
  4. Stylesheet: Alert Styles
  5. If you want to use these alerts in your design, you can. If not,
  6. you can just remove this stylesheet.
  7. ******************************************************************/
  8. // alerts and notices
  9. %alert {
  10. margin: 10px;
  11. padding: 5px 18px;
  12. border: 1px solid;
  13. }
  14. .alert-help {
  15. @extend %alert;
  16. border-color: darken($alert-yellow, 5%);
  17. background: $alert-yellow;
  18. }
  19. .alert-info {
  20. @extend %alert;
  21. border-color: darken($alert-blue, 5%);
  22. background: $alert-blue;
  23. }
  24. .alert-error {
  25. @extend %alert;
  26. border-color: darken($alert-red, 5%);
  27. background: $alert-red;
  28. }
  29. .alert-success {
  30. @extend %alert;
  31. border-color: darken($alert-green, 5%);
  32. background: $alert-green;
  33. }