The version of vichan running on lainchan.org
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.

60 lines
755B

  1. /* fireworks styles */
  2. body {
  3. margin: 0px;
  4. padding: 0px;
  5. }
  6. #fireworks-template {
  7. display:none;
  8. }
  9. #fireContainer {
  10. position:absolute;
  11. left:0px;
  12. top:0px;
  13. z-index:706;
  14. }
  15. .firework {
  16. /* containing box which flies out first */
  17. position:absolute;
  18. left:0px;
  19. top:0px;
  20. font-size:1px;
  21. width:4px;
  22. height:4px;
  23. border:1px solid #333;
  24. background:#666;
  25. }
  26. .fireworkParticle {
  27. /* elements that explode from the container */
  28. position:absolute;
  29. font-size:1px;
  30. width:10px;
  31. height:10px;
  32. overflow:hidden;
  33. }
  34. .fireworkParticle img {
  35. display:block;
  36. width:100px;
  37. }
  38. #sound {
  39. position:absolute;
  40. left:-706px;
  41. top:-706px;
  42. }
  43. #debug {
  44. position:absolute;
  45. left:8px;
  46. top:8px;
  47. width:220px;
  48. height:165px;
  49. overflow:hidden;
  50. color:#666;
  51. display:none;
  52. }