You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

64 lines
938 B

  1. /*
  2. These styles were extracted from bootstrap,
  3. so, if you already use bootstrap, you don't
  4. need this.
  5. */
  6. .alert
  7. {
  8. padding: 15px;
  9. margin-bottom: 20px;
  10. border: 1px solid transparent;
  11. border-radius: 4px;
  12. opacity: 0.8;
  13. }
  14. .alert-info
  15. {
  16. color: #31708f;
  17. background-color: #d9edf7;
  18. border-color: #bce8f1;
  19. }
  20. .alert-danger
  21. {
  22. color: #a94442;
  23. background-color: #f2dede;
  24. border-color: #ebccd1;
  25. }
  26. .alert-warning
  27. {
  28. color: #8a6d3b;
  29. background-color: #fcf8e3;
  30. border-color: #faebcc;
  31. }
  32. .alert-success
  33. {
  34. color: #3c763d;
  35. background-color: #dff0d8;
  36. border-color: #d6e9c6;
  37. }
  38. .close
  39. {
  40. float: right;
  41. font-size: 21px;
  42. font-weight: 700;
  43. line-height: 1;
  44. color: #000;
  45. text-shadow: 0 1px 0 #fff;
  46. filter: alpha(opacity=20);
  47. opacity: .2;
  48. }
  49. .close:hover,
  50. .close:focus
  51. {
  52. color: #000;
  53. text-decoration: none;
  54. cursor: pointer;
  55. filter: alpha(opacity=50);
  56. opacity: .5;
  57. }