選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

_toastr.scss 588B

123456789101112131415161718192021222324252627282930313233343536
  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. }