Ohm-Management - Projektarbeit B-ME
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.

generic.sass 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. $body-background-color: $white !default
  2. $body-size: 16px !default
  3. $body-rendering: optimizeLegibility !default
  4. $body-family: $family-primary !default
  5. $body-color: $text !default
  6. $body-weight: $weight-normal !default
  7. $body-line-height: 1.5 !default
  8. $code-family: $family-code !default
  9. $code-padding: 0.25em 0.5em 0.25em !default
  10. $code-weight: normal !default
  11. $code-size: 0.875em !default
  12. $hr-background-color: $background !default
  13. $hr-height: 2px !default
  14. $hr-margin: 1.5rem 0 !default
  15. $strong-color: $text-strong !default
  16. $strong-weight: $weight-bold !default
  17. html
  18. background-color: $body-background-color
  19. font-size: $body-size
  20. -moz-osx-font-smoothing: grayscale
  21. -webkit-font-smoothing: antialiased
  22. min-width: 300px
  23. overflow-x: hidden
  24. overflow-y: scroll
  25. text-rendering: $body-rendering
  26. text-size-adjust: 100%
  27. article,
  28. aside,
  29. figure,
  30. footer,
  31. header,
  32. hgroup,
  33. section
  34. display: block
  35. body,
  36. button,
  37. input,
  38. select,
  39. textarea
  40. font-family: $body-family
  41. code,
  42. pre
  43. -moz-osx-font-smoothing: auto
  44. -webkit-font-smoothing: auto
  45. font-family: $code-family
  46. body
  47. color: $body-color
  48. font-size: 1rem
  49. font-weight: $body-weight
  50. line-height: $body-line-height
  51. // Inline
  52. a
  53. color: $link
  54. cursor: pointer
  55. text-decoration: none
  56. strong
  57. color: currentColor
  58. &:hover
  59. color: $link-hover
  60. code
  61. background-color: $code-background
  62. color: $code
  63. font-size: $code-size
  64. font-weight: $code-weight
  65. padding: $code-padding
  66. hr
  67. background-color: $hr-background-color
  68. border: none
  69. display: block
  70. height: $hr-height
  71. margin: $hr-margin
  72. img
  73. height: auto
  74. max-width: 100%
  75. input[type="checkbox"],
  76. input[type="radio"]
  77. vertical-align: baseline
  78. small
  79. font-size: 0.875em
  80. span
  81. font-style: inherit
  82. font-weight: inherit
  83. strong
  84. color: $strong-color
  85. font-weight: $strong-weight
  86. // Block
  87. fieldset
  88. border: none
  89. pre
  90. +overflow-touch
  91. background-color: $pre-background
  92. color: $pre
  93. font-size: 0.875em
  94. overflow-x: auto
  95. padding: 1.25rem 1.5rem
  96. white-space: pre
  97. word-wrap: normal
  98. code
  99. background-color: transparent
  100. color: currentColor
  101. font-size: 1em
  102. padding: 0
  103. table
  104. td,
  105. th
  106. text-align: left
  107. vertical-align: top
  108. th
  109. color: $text-strong