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.

37 lines
588B

  1. #toast-container {
  2. width: 350px;
  3. }
  4. .toast {
  5. float: right
  6. }
  7. #toast-container:before:hover {
  8. opacity: 1;
  9. cursor: pointer;
  10. }
  11. #toast-close-all {
  12. border: 0;
  13. position: absolute;
  14. pointer-events: auto;
  15. z-index: 999999999999999999999;
  16. background: #BD362F;
  17. border-radius: 3px;
  18. color: #fff;
  19. opacity: 0.8;
  20. top: 2px;
  21. width: 50px;
  22. height: 50px;
  23. font-size: 30px;
  24. left: 0px;
  25. text-align: center;
  26. -webkit-text-shadow: 0 1px 0 #fff;
  27. text-shadow: 0 1px 0 #fff;
  28. -moz-box-shadow: 0 0 12px #999;
  29. -webkit-box-shadow: 0 0 12px #999;
  30. box-shadow: 0 0 12px #999;
  31. }