Advertisement
Guest User

Untitled

a guest
Oct 19th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. /* ---- reset ---- */
  2.  
  3. body {
  4. margin: 0;
  5. font:normal 75% Arial, Helvetica, sans-serif;
  6. }
  7.  
  8. canvas {
  9. display: block;
  10. vertical-align: bottom;
  11. }
  12.  
  13. /* ---- particles.js container ---- */
  14.  
  15. #particles-js {
  16. position: absolute;
  17. width: 100%;
  18. height: 100%;
  19. background-color: #000000;
  20. background-image: url("");
  21. background-repeat: no-repeat;
  22. background-size: cover;
  23. background-position: 50% 50%;
  24. }
  25.  
  26. /* ---- stats.js ---- */
  27.  
  28. .count-particles{
  29. background: #000022;
  30. position: absolute;
  31. top: 48px;
  32. left: 0;
  33. width: 80px;
  34. color: #13E8E9;
  35. font-size: .8em;
  36. text-align: left;
  37. text-indent: 4px;
  38. line-height: 14px;
  39. padding-bottom: 2px;
  40. font-family: Helvetica, Arial, sans-serif;
  41. font-weight: bold;
  42. }
  43.  
  44. .js-count-particles{
  45. font-size: 1.1em;
  46. }
  47.  
  48. #stats,
  49. .count-particles{
  50. -webkit-user-select: none;
  51. }
  52.  
  53. #stats{
  54. border-radius: 3px 3px 0 0;
  55. overflow: hidden;
  56. }
  57.  
  58. .count-particles{
  59. border-radius: 0 0 3px 3px;
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement