Advertisement
C1oseReaper

main css

Feb 19th, 2020
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.99 KB | None | 0 0
  1. /* Reset */
  2.  
  3. html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  4. margin: 0;
  5. padding: 0;
  6. border: 0;
  7. font-size: 100%;
  8. font: inherit;
  9. vertical-align: baseline;
  10. }
  11.  
  12. article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  13. display: block;
  14. }
  15.  
  16. body {
  17. line-height: 1;
  18. }
  19.  
  20. ol, ul {
  21. list-style: none;
  22. }
  23.  
  24. blockquote, q {
  25. quotes: none;
  26. }
  27.  
  28. blockquote:before, blockquote:after, q:before, q:after {
  29. content: '';
  30. content: none;
  31. }
  32.  
  33. table {
  34. border-collapse: collapse;
  35. border-spacing: 0;
  36. }
  37.  
  38. body {
  39. -webkit-text-size-adjust: none;
  40. }
  41.  
  42. /* Box Model */
  43.  
  44. *, *:before, *:after {
  45. -moz-box-sizing: border-box;
  46. -webkit-box-sizing: border-box;
  47. box-sizing: border-box;
  48. }
  49.  
  50. /* Basic */
  51.  
  52. @-ms-viewport {
  53. width: device-width;
  54. }
  55.  
  56. @media screen and (max-width: 480px) {
  57.  
  58. html, body {
  59. min-width: 320px;
  60. }
  61.  
  62. }
  63.  
  64. body {
  65. background: #1b1f22;
  66. }
  67.  
  68. body.is-loading *, body.is-loading *:before, body.is-loading *:after, body.is-switching *, body.is-switching *:before, body.is-switching *:after {
  69. -moz-animation: none !important;
  70. -webkit-animation: none !important;
  71. -ms-animation: none !important;
  72. animation: none !important;
  73. -moz-transition: none !important;
  74. -webkit-transition: none !important;
  75. -ms-transition: none !important;
  76. transition: none !important;
  77. -moz-transition-delay: none !important;
  78. -webkit-transition-delay: none !important;
  79. -ms-transition-delay: none !important;
  80. transition-delay: none !important;
  81. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement