particles.css 865 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /* ---- stats.js ---- */
  2. .count-particles {
  3. /* background: #000022;*/
  4. position: absolute;
  5. top: 48px;
  6. left: 0;
  7. width: 80px;
  8. color: #13E8E9;
  9. font-size: .8em;
  10. text-align: left;
  11. text-indent: 4px;
  12. line-height: 14px;
  13. padding-bottom: 2px;
  14. font-family: Helvetica, Arial, sans-serif;
  15. font-weight: bold;
  16. }
  17. .js-count-particles {
  18. font-size: 1.1em;
  19. }
  20. #stats,
  21. .count-particles {
  22. -webkit-user-select: none;
  23. margin-top: 5px;
  24. margin-left: 5px;
  25. }
  26. #stats {
  27. border-radius: 3px 3px 0 0;
  28. overflow: hidden;
  29. }
  30. .count-particles {
  31. border-radius: 0 0 3px 3px;
  32. }
  33. /* ---- particles.js container ---- */
  34. #particles-js {
  35. width: 100%;
  36. height: 100%;
  37. background:#0174B7;
  38. background-image: url('');
  39. background-size: cover;
  40. background-position: 50% 50%;
  41. background-repeat: no-repeat;
  42. }