BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

skeleton-fixes.scss 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /**
  2. * Fixes needed to use skeleton.css
  3. * to its best advantage
  4. */
  5. /* Set heading fonts 50% of default and bump down a level */
  6. @mixin heading-attributes {
  7. letter-spacing: -1px !important;
  8. margin: 1rem 0 !important;
  9. }
  10. h1:not(#logo) {
  11. font-size: 1.8rem !important;
  12. @include heading-attributes;
  13. }
  14. h2 {
  15. font-size: 1.5rem !important;
  16. @include heading-attributes;
  17. }
  18. h3 {
  19. font-size: 1.2rem !important;
  20. @include heading-attributes;
  21. }
  22. h4 {
  23. font-size: 0.9rem !important;
  24. @include heading-attributes;
  25. }
  26. h5 {
  27. font-size: 0.75rem !important;
  28. @include heading-attributes;
  29. }
  30. h6 {
  31. font-size: 0.75rem !important;
  32. @include heading-attributes;
  33. }
  34. /* Larger than phablet */
  35. @media (min-width: 550px) {
  36. h1 {
  37. font-size: 1.8rem !important;
  38. }
  39. h2 {
  40. font-size: 1.5rem !important;
  41. }
  42. h3 {
  43. font-size: 1.2rem !important;
  44. }
  45. h4 {
  46. font-size: 0.9rem !important;
  47. }
  48. h5 {
  49. font-size: 0.75rem !important;
  50. }
  51. h6 {
  52. font-size: 0.75rem !important;
  53. }
  54. }
  55. table.forum_index {
  56. h4 {
  57. margin: 0 !important;
  58. }
  59. }
  60. label,
  61. legend {
  62. display: inline !important;
  63. }
  64. table.torrent_search,
  65. table.torrent_requests {
  66. th,
  67. td {
  68. border-bottom: 0 !important;
  69. padding: 0.25rem !important;
  70. }
  71. }
  72. input,
  73. input[type="search"],
  74. input[type="text"] {
  75. margin: 0 !important;
  76. }
  77. ul {
  78. list-style: circle !important;
  79. }
  80. pre,
  81. blockquote,
  82. dl,
  83. figure,
  84. table,
  85. p,
  86. ul,
  87. ol,
  88. form {
  89. margin-bottom: 0 !important;
  90. }
  91. code {
  92. padding: 0 !important;
  93. }