firework.css 669 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* Firework JS */
  2. .firework {
  3. background-color: #888;
  4. border-color: #888;
  5. border-radius: 6px;
  6. color: #fff;
  7. left: 200px;
  8. padding: 5px;
  9. position: fixed;
  10. opacity: 0;
  11. text-align: center;
  12. top: 0px;
  13. width: 600px;
  14. z-index: 99;
  15. font-size:120%;
  16. }
  17. .firework a {
  18. color: rgba(255, 255, 255, 0.9);
  19. cursor: pointer;
  20. float: right;
  21. margin: 0 -5px 0 0;
  22. padding: 0 5px;
  23. }
  24. .firework.success {
  25. background-color: #669936f0;
  26. border-color: #669936;
  27. color: #fff
  28. }
  29. .firework.danger {
  30. background-color: #E65A27f0;
  31. border-color: #E65A27;
  32. color: #fff
  33. }
  34. .firework.warning {
  35. color: #5F612C;
  36. background-color: #dbd567f0;
  37. border-color: #DBD667;
  38. }