logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

reset.scss (1795B)


  1. /* http://meyerweb.com/eric/tools/css/reset/
  2. v2.0 | 20110126
  3. License: none (public domain)
  4. */
  5. html, body, div, span, applet, object, iframe,
  6. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  7. a, abbr, acronym, address, big, cite, code,
  8. del, dfn, em, img, ins, kbd, q, s, samp,
  9. small, strike, strong, sub, sup, tt, var,
  10. b, u, i, center,
  11. dl, dt, dd, ol, ul, li,
  12. fieldset, form, label, legend,
  13. table, caption, tbody, tfoot, thead, tr, th, td,
  14. article, aside, canvas, details, embed,
  15. figure, figcaption, footer, header, hgroup,
  16. menu, nav, output, ruby, section, summary,
  17. time, mark, audio, video {
  18. margin: 0;
  19. padding: 0;
  20. border: 0;
  21. font-size: 100%;
  22. font: inherit;
  23. vertical-align: baseline;
  24. }
  25. /* HTML5 display-role reset for older browsers */
  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. }
  39. blockquote:before, blockquote:after,
  40. q:before, q:after {
  41. content: '';
  42. content: none;
  43. }
  44. table {
  45. border-collapse: collapse;
  46. border-spacing: 0;
  47. }
  48. ::-webkit-scrollbar {
  49. width: 8px;
  50. height: 8px;
  51. }
  52. ::-webkit-scrollbar-thumb {
  53. background: lighten($ui-base-color, 4%);
  54. border: 0px none $base-border-color;
  55. border-radius: 50px;
  56. }
  57. ::-webkit-scrollbar-thumb:hover {
  58. background: lighten($ui-base-color, 6%);
  59. }
  60. ::-webkit-scrollbar-thumb:active {
  61. background: lighten($ui-base-color, 4%);
  62. }
  63. ::-webkit-scrollbar-track {
  64. border: 0px none $base-border-color;
  65. border-radius: 0;
  66. background: rgba($base-overlay-background, 0.1);
  67. }
  68. ::-webkit-scrollbar-track:hover {
  69. background: $ui-base-color;
  70. }
  71. ::-webkit-scrollbar-track:active {
  72. background: $ui-base-color;
  73. }
  74. ::-webkit-scrollbar-corner {
  75. background: transparent;
  76. }