Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

shorthandData.js 3.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. 'use strict';
  2. module.exports = {
  3. margin: ['margin-top', 'margin-bottom', 'margin-left', 'margin-right'],
  4. padding: ['padding-top', 'padding-bottom', 'padding-left', 'padding-right'],
  5. background: [
  6. 'background-image',
  7. 'background-size',
  8. 'background-position',
  9. 'background-repeat',
  10. 'background-origin',
  11. 'background-clip',
  12. 'background-attachment',
  13. 'background-color',
  14. ],
  15. font: [
  16. 'font-style',
  17. 'font-variant',
  18. 'font-weight',
  19. 'font-stretch',
  20. 'font-size',
  21. 'font-family',
  22. 'line-height',
  23. ],
  24. border: [
  25. 'border-top-width',
  26. 'border-bottom-width',
  27. 'border-left-width',
  28. 'border-right-width',
  29. 'border-top-style',
  30. 'border-bottom-style',
  31. 'border-left-style',
  32. 'border-right-style',
  33. 'border-top-color',
  34. 'border-bottom-color',
  35. 'border-left-color',
  36. 'border-right-color',
  37. ],
  38. 'border-top': ['border-top-width', 'border-top-style', 'border-top-color'],
  39. 'border-bottom': ['border-bottom-width', 'border-bottom-style', 'border-bottom-color'],
  40. 'border-left': ['border-left-width', 'border-left-style', 'border-left-color'],
  41. 'border-right': ['border-right-width', 'border-right-style', 'border-right-color'],
  42. 'border-width': [
  43. 'border-top-width',
  44. 'border-bottom-width',
  45. 'border-left-width',
  46. 'border-right-width',
  47. ],
  48. 'border-style': [
  49. 'border-top-style',
  50. 'border-bottom-style',
  51. 'border-left-style',
  52. 'border-right-style',
  53. ],
  54. 'border-color': [
  55. 'border-top-color',
  56. 'border-bottom-color',
  57. 'border-left-color',
  58. 'border-right-color',
  59. ],
  60. 'list-style': ['list-style-type', 'list-style-position', 'list-style-image'],
  61. 'border-radius': [
  62. 'border-top-right-radius',
  63. 'border-top-left-radius',
  64. 'border-bottom-right-radius',
  65. 'border-bottom-left-radius',
  66. ],
  67. transition: [
  68. 'transition-delay',
  69. 'transition-duration',
  70. 'transition-property',
  71. 'transition-timing-function',
  72. ],
  73. animation: [
  74. 'animation-name',
  75. 'animation-duration',
  76. 'animation-timing-function',
  77. 'animation-delay',
  78. 'animation-iteration-count',
  79. 'animation-direction',
  80. 'animation-fill-mode',
  81. 'animation-play-state',
  82. ],
  83. 'border-block-end': [
  84. 'border-block-end-width',
  85. 'border-block-end-style',
  86. 'border-block-end-color',
  87. ],
  88. 'border-block-start': [
  89. 'border-block-start-width',
  90. 'border-block-start-style',
  91. 'border-block-start-color',
  92. ],
  93. 'border-image': [
  94. 'border-image-source',
  95. 'border-image-slice',
  96. 'border-image-width',
  97. 'border-image-outset',
  98. 'border-image-repeat',
  99. ],
  100. 'border-inline-end': [
  101. 'border-inline-end-width',
  102. 'border-inline-end-style',
  103. 'border-inline-end-color',
  104. ],
  105. 'border-inline-start': [
  106. 'border-inline-start-width',
  107. 'border-inline-start-style',
  108. 'border-inline-start-color',
  109. ],
  110. 'column-rule': ['column-rule-width', 'column-rule-style', 'column-rule-color'],
  111. columns: ['column-width', 'column-count'],
  112. flex: ['flex-grow', 'flex-shrink', 'flex-basis'],
  113. 'flex-flow': ['flex-direction', 'flex-wrap'],
  114. grid: [
  115. 'grid-template-rows',
  116. 'grid-template-columns',
  117. 'grid-template-areas',
  118. 'grid-auto-rows',
  119. 'grid-auto-columns',
  120. 'grid-auto-flow',
  121. 'grid-column-gap',
  122. 'grid-row-gap',
  123. ],
  124. 'grid-area': ['grid-row-start', 'grid-column-start', 'grid-row-end', 'grid-column-end'],
  125. 'grid-column': ['grid-column-start', 'grid-column-end'],
  126. 'grid-gap': ['grid-row-gap', 'grid-column-gap'],
  127. 'grid-row': ['grid-row-start', 'grid-row-end'],
  128. 'grid-template': ['grid-template-columns', 'grid-template-rows', 'grid-template-areas'],
  129. outline: ['outline-color', 'outline-style', 'outline-width'],
  130. 'text-decoration': ['text-decoration-color', 'text-decoration-style', 'text-decoration-line'],
  131. 'text-emphasis': ['text-emphasis-style', 'text-emphasis-color'],
  132. mask: [
  133. 'mask-image',
  134. 'mask-mode',
  135. 'mask-position',
  136. 'mask-size',
  137. 'mask-repeat',
  138. 'mask-origin',
  139. 'mask-clip',
  140. 'mask-composite',
  141. ],
  142. };