Advertisement
Guest User

Untitled

a guest
Oct 19th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 KB | None | 0 0
  1. /* =============================================================================
  2. HTML5 CSS Reset Minified - Eric Meyer
  3. ========================================================================== */
  4.  
  5. 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}
  6. body{line-height:1}
  7. article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
  8. nav ul{list-style:none}
  9. blockquote,q{quotes:none}
  10. blockquote:before,blockquote:after,q:before,q:after{content:none}
  11. a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;text-decoration:none}
  12. mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}
  13. del{text-decoration:line-through}
  14. abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}
  15. table{border-collapse:collapse;border-spacing:0}
  16. hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
  17. input,select{vertical-align:middle}
  18. li{list-style:none}
  19.  
  20.  
  21. /* =============================================================================
  22. My CSS
  23. ========================================================================== */
  24.  
  25. /* ---- base ---- */
  26.  
  27. html,body{
  28. width:100%;
  29. height:100%;
  30. background:#111;
  31. }
  32.  
  33. html{
  34. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  35. }
  36.  
  37. body{
  38. font:normal 75% Arial, Helvetica, sans-serif;
  39. }
  40.  
  41. canvas{
  42. display:block;
  43. vertical-align:bottom;
  44. }
  45.  
  46.  
  47. /* ---- stats.js ---- */
  48.  
  49. .count-particles{
  50. background: #000022;
  51. position: absolute;
  52. top: 48px;
  53. left: 0;
  54. width: 80px;
  55. color: #13E8E9;
  56. font-size: .8em;
  57. text-align: left;
  58. text-indent: 4px;
  59. line-height: 14px;
  60. padding-bottom: 2px;
  61. font-family: Helvetica, Arial, sans-serif;
  62. font-weight: bold;
  63. }
  64.  
  65. .js-count-particles{
  66. font-size: 1.1em;
  67. }
  68.  
  69. #stats,
  70. .count-particles{
  71. -webkit-user-select: none;
  72. margin-top: 5px;
  73. margin-left: 5px;
  74. }
  75.  
  76. #stats{
  77. border-radius: 3px 3px 0 0;
  78. overflow: hidden;
  79. }
  80.  
  81. .count-particles{
  82. border-radius: 0 0 3px 3px;
  83. }
  84.  
  85.  
  86. /* ---- particles.js container ---- */
  87.  
  88. #particles-js{
  89. width: 100%;
  90. height: 100%;
  91. background-color: #060606;
  92. background-image: url('http://i.imgur.com/bm7hI8C.png');
  93. background-size: cover;
  94. background-position: 50% 0%;
  95. background-repeat: no-repeat;
  96. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement