toastr.css 617 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*========================================================
  2. DARK LAYOUT
  3. =========================================================*/
  4. #toast-container > div {
  5. opacity: 0.9;
  6. -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
  7. filter: alpha(opacity=90);
  8. max-width: none;
  9. }
  10. #toast-container > div:hover {
  11. box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.75);
  12. }
  13. .toast {
  14. background-color: #5c6bc6;
  15. }
  16. .toast-success {
  17. background-color: #21b978;
  18. }
  19. .toast-error {
  20. background-color: #ea5455;
  21. }
  22. .toast-info {
  23. background-color: #3085d6;
  24. }
  25. .toast-warning {
  26. background-color: #ff9f43;
  27. }