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.

demo.css 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. body {
  2. font: 14px/1.4 sans-serif;
  3. color: #111;
  4. background: #fafafa;
  5. }
  6. a {
  7. color: #366097;
  8. }
  9. h2, h1 {
  10. text-align: center;
  11. font-family: georgia, serif;
  12. font-size: 3em;
  13. font-weight: normal;
  14. }
  15. h2 {
  16. font-size: 2.5em;
  17. margin-bottom: .7em;
  18. }
  19. pre, ol {
  20. margin: 0
  21. }
  22. table {
  23. border-collapse: collapse;
  24. width: 100%;
  25. }
  26. table, td, th {
  27. border: 1px solid #fafafa;
  28. }
  29. td, th {
  30. padding: .4em;
  31. }
  32. tbody th {
  33. text-align: right;
  34. width: 10em;
  35. }
  36. code, label {
  37. background: #fff;
  38. border-radius: .3em;
  39. padding: .2em .3em;
  40. border: 1px solid #ededed;
  41. }
  42. label {
  43. white-space: nowrap;
  44. display: inline-block;
  45. margin: 0 .3em .3em 0;
  46. cursor: pointer;
  47. font-size: .9em;
  48. }
  49. input:not([type=checkbox]):not([type=radio]), select {
  50. width: 100%;
  51. font-size: 1.4em;
  52. box-sizing: border-box;
  53. }
  54. input {
  55. padding: .2em;
  56. }
  57. .error {
  58. color: red;
  59. }
  60. #page {
  61. min-width: 960px;
  62. margin: auto;
  63. }
  64. #intro {
  65. text-align: center;
  66. font-size: 1.2em;
  67. }
  68. /* Input
  69. -------------------------------------- */
  70. #tabs {
  71. border-bottom: 1px solid #111;
  72. text-align: center;
  73. }
  74. #tabs a {
  75. background: #111;
  76. border: 1px solid #111;
  77. padding: .4em 1em;
  78. margin: 0 .5em -1px;
  79. color: #eee;
  80. display: inline-block;
  81. text-decoration: none;
  82. font-weight: bold;
  83. font-size: 1.1em;
  84. border-top-left-radius: .2em;
  85. border-top-right-radius: .2em;
  86. }
  87. #tabs a.active {
  88. color: #111;
  89. background: #fafafa;
  90. border-bottom-color: #fafafa;
  91. }
  92. #input {
  93. float: left;
  94. width: 40%
  95. }
  96. #input th {
  97. width: 7em !important;
  98. }
  99. #input section {
  100. padding: 1em;
  101. }
  102. .examples li {
  103. margin-bottom: .7em;
  104. }
  105. .examples code {
  106. cursor: pointer;
  107. }
  108. #rfc-input input {
  109. font-family: monospace;
  110. }
  111. #options-input input, #options-input select {
  112. font-size: 1em;
  113. }
  114. .option-name {
  115. position: relative;
  116. cursor: help;
  117. }
  118. .option-name .help {
  119. border-radius: .3em;
  120. font-weight: normal;
  121. display: none;
  122. position: absolute;
  123. padding: 1em;
  124. background: #333;
  125. color: #fafafa;
  126. border: 1px solid #000;
  127. left: 110%;
  128. right: -100%;
  129. width: 350px;
  130. text-align: left;
  131. top: -1em;
  132. box-shadow: 3px 3px 3px #888;
  133. line-height: 1.6;
  134. font-size: .9em;
  135. }
  136. .option-name .help code {
  137. color: #fff;
  138. background: #000;
  139. }
  140. .option-name:hover code:first-child{
  141. background: #222;
  142. color: #fafafa;
  143. }
  144. .option-name:hover .help {
  145. display: block;
  146. }
  147. /* Output
  148. -------------------------------------- */
  149. #output {
  150. float: right;
  151. width: 58%
  152. }
  153. #output pre {
  154. white-space: pre-wrap;
  155. }
  156. #output td {
  157. background: #fff;
  158. }
  159. #output td, #output th {
  160. vertical-align: top;
  161. }
  162. #output li {
  163. font-family: monospace;
  164. }
  165. #output li:nth-child(even) {
  166. background: #f1f1f1;
  167. }
  168. #dates {
  169. font-size: .9em;
  170. }
  171. #dates td:first-child {
  172. color: #ccc;
  173. }
  174. #dates td:first-child {
  175. text-align: right;
  176. }
  177. #dates td.b {
  178. background: #eaeaea;
  179. }
  180. #dates td.b {
  181. background: #f0f0f0;
  182. }
  183. #output a {
  184. color: inherit
  185. }