particles.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /* =============================================================================
  2. HTML5 CSS Reset Minified - Eric Meyer
  3. ========================================================================== */
  4. html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}
  5. body{line-height:1}
  6. article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
  7. nav ul{list-style:none}
  8. blockquote,q{quotes:none}
  9. blockquote:before,blockquote:after,q:before,q:after{content:none}
  10. a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;text-decoration:none}
  11. mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}
  12. del{text-decoration:line-through}
  13. abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}
  14. table{border-collapse:collapse;border-spacing:0}
  15. hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
  16. input,select{vertical-align:middle}
  17. li{list-style:none}
  18. /* =============================================================================
  19. My CSS
  20. ========================================================================== */
  21. /* ---- base ---- */
  22. html,body{
  23. width:100%;
  24. height:100%;
  25. background:#111;
  26. }
  27. html{
  28. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  29. }
  30. body{
  31. font:normal 75% Arial, Helvetica, sans-serif;
  32. }
  33. canvas{
  34. display:block;
  35. vertical-align:bottom;
  36. }
  37. /* ---- stats.js ---- */
  38. .count-particles{
  39. background: #000022;
  40. position: absolute;
  41. top: 48px;
  42. left: 0;
  43. width: 80px;
  44. color: #13E8E9;
  45. font-size: .8em;
  46. text-align: left;
  47. text-indent: 4px;
  48. line-height: 14px;
  49. padding-bottom: 2px;
  50. font-family: Helvetica, Arial, sans-serif;
  51. font-weight: bold;
  52. }
  53. .js-count-particles{
  54. font-size: 1.1em;
  55. }
  56. #stats,
  57. .count-particles{
  58. -webkit-user-select: none;
  59. margin-top: 5px;
  60. margin-left: 5px;
  61. }
  62. #stats{
  63. border-radius: 3px 3px 0 0;
  64. overflow: hidden;
  65. }
  66. .count-particles{
  67. border-radius: 0 0 3px 3px;
  68. }
  69. /* ---- particles.js container ---- */
  70. #particles-js{
  71. width: 100%;
  72. height: 100%;
  73. background-color: #b61924;
  74. background-image: url('');
  75. background-size: cover;
  76. background-position: 50% 50%;
  77. background-repeat: no-repeat;
  78. }