Blog-style website for karathan using the self-made Stellar Theme powered by HTML5Up http://blog.karathan.at

_reset.scss 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. ///
  2. /// Stellar by HTML5 UP
  3. /// html5up.net | @ajlkn
  4. /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
  5. ///
  6. // Reset.
  7. // Based on meyerweb.com/eric/tools/css/reset (v2.0 | 20110126 | License: public domain)
  8. html, body, div, span, applet, object,
  9. iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
  10. pre, a, abbr, acronym, address, big, cite,
  11. code, del, dfn, em, img, ins, kbd, q, s, samp,
  12. small, strike, strong, sub, sup, tt, var, b,
  13. u, i, center, dl, dt, dd, ol, ul, li, fieldset,
  14. form, label, legend, table, caption, tbody,
  15. tfoot, thead, tr, th, td, article, aside,
  16. canvas, details, embed, figure, figcaption,
  17. footer, header, hgroup, menu, nav, output, ruby,
  18. section, summary, time, mark, audio, video {
  19. margin: 0;
  20. padding: 0;
  21. border: 0;
  22. font-size: 100%;
  23. font: inherit;
  24. vertical-align: baseline;
  25. }
  26. article, aside, details, figcaption, figure,
  27. footer, header, hgroup, menu, nav, section {
  28. display: block;
  29. }
  30. body {
  31. line-height: 1;
  32. }
  33. ol, ul {
  34. list-style:none;
  35. }
  36. blockquote, q {
  37. quotes: none;
  38. &:before,
  39. &:after {
  40. content: '';
  41. content: none;
  42. }
  43. }
  44. table {
  45. border-collapse: collapse;
  46. border-spacing: 0;
  47. }
  48. body {
  49. -webkit-text-size-adjust: none;
  50. }
  51. mark {
  52. background-color: transparent;
  53. color: inherit;
  54. }
  55. input::-moz-focus-inner {
  56. border: 0;
  57. padding: 0;
  58. }
  59. input, select, textarea {
  60. -moz-appearance: none;
  61. -webkit-appearance: none;
  62. -ms-appearance: none;
  63. appearance: none;
  64. }