page.scss 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  1. $font-stack: "Tex Gyre Heros";
  2. $font-color-light: #c0c0c0;
  3. @font-face {
  4. font-family: 'TeX Gyre Heros';
  5. src: url('/fonts/texgyreheros-regular-webfont.woff') format('woff');
  6. font-style: normal;
  7. }
  8. @font-face {
  9. font-family: 'TeX Gyre Heros';
  10. src: url('/fonts/texgyreheros-bold-webfont.woff') format('woff');
  11. font-style: normal;
  12. font-weight: bold;
  13. }
  14. @font-face {
  15. font-family: 'TeX Gyre Heros';
  16. src: url('/fonts/texgyreheros-italic-webfont.woff') format('woff');
  17. font-style: italic;
  18. }
  19. @font-face {
  20. font-family: 'TeX Gyre Heros';
  21. src: url('/fonts/texgyreheros-bolditalic-webfont.woff') format('woff');
  22. font-style: italic;
  23. font-weight: bold;
  24. }
  25. .voffset-halb {
  26. margin-top: 0.5rem
  27. }
  28. @for $i from 1 through 20 {
  29. .voffset-#{$i} {
  30. margin-top: #{$i}rem
  31. }}
  32. .text-center { text-align: center !important; }
  33. hr {
  34. border: 0;
  35. border-top: 1px solid #eee;
  36. border-color: #000;
  37. height: 1px;
  38. margin: 3px 0;
  39. &.hr-rot {
  40. border-color: #ff2700;
  41. margin: 8px 0;
  42. }
  43. &.hr-grau {
  44. border-color: rgb(100,100,100) !important;
  45. }
  46. }
  47. .table-eng {
  48. margin-bottom: 0px;
  49. td {
  50. padding: 1px !important;
  51. font-size: 9pt;
  52. }
  53. }
  54. .table-noten {
  55. margin-bottom: 1em;
  56. }
  57. .fach-bezeichnung {
  58. padding-left: 10mm;
  59. &.padding-5 {
  60. padding-left: 2em;
  61. }
  62. }
  63. .td-fach-note {
  64. border: 5px white solid;
  65. padding: 0;
  66. width: 12em;
  67. span {
  68. // background-color: #c0c0c0 !important;
  69. background-color: #dcdcdc !important;
  70. text-align: center;
  71. width: 10em;
  72. display: block;
  73. vertical-align: middle;
  74. margin:0 auto;
  75. &.e-note {
  76. background-color: white !important;
  77. width: 17em;
  78. margin: 0;
  79. padding: 0;
  80. }
  81. }
  82. }
  83. .td-padding-extra {
  84. padding: 2mm 0 2mm 0;
  85. }
  86. .fachgruppe-margin {
  87. padding-top: 0.3em;
  88. }
  89. .fett {
  90. font-weight: bolder;
  91. }
  92. .lernfeld-lernbereich {
  93. padding-left: 2em;
  94. }
  95. .lernbereich {
  96. padding-left: 20mm;
  97. }
  98. .pull-bottom {
  99. position: absolute;
  100. bottom: 0;
  101. padding: 0;
  102. //row zu kurz, wenn Text nicht mehrzeilig ist
  103. // width: 100%;
  104. // evtl so besser:
  105. display:block; width: auto;
  106. .schulnummer {
  107. text-align: right;
  108. }
  109. }
  110. .font-small * {
  111. font-size: 0.9rem !important;
  112. }
  113. .kleiner-10rem {
  114. font-size: 0.9rem;
  115. }
  116. .kleiner-20rem {
  117. font-size: 0.8rem;
  118. }
  119. .kleiner-30rem {
  120. font-size: 0.7rem;
  121. }
  122. .kleiner-40rem {
  123. font-size: 0.6rem;
  124. }
  125. .klein {
  126. font-size: 8pt;
  127. }
  128. .klein-7 {
  129. font-size: 7pt;
  130. }
  131. .klein-8 {
  132. font-size: 8pt;
  133. }
  134. .klein-9 {
  135. font-size: 9pt;
  136. }
  137. .eng {
  138. line-height: 1.3em;
  139. }
  140. .grau *{
  141. color: rgb(100,100,100) !important;
  142. }
  143. ul.dashes {
  144. list-style-type: none;
  145. padding-left: 1em;
  146. li:before {
  147. content: "–";
  148. position: absolute;
  149. margin-left: -1em;
  150. }
  151. }
  152. .wasserzeichen {
  153. position: absolute;
  154. opacity: 0.5;
  155. z-index: 99;
  156. color: red;
  157. font-size: 96pt;
  158. }
  159. .seitenlogo {
  160. position: absolute;
  161. bottom: 10mm;
  162. left: 10mm;
  163. }
  164. * {
  165. box-sizing: border-box;
  166. -moz-box-sizing: border-box;
  167. }
  168. html {
  169. font-size: 62.5%; }
  170. body {
  171. font-size: 1.33em; /* currently ems cause chrome bug misinterpreting rems on body element */
  172. line-height: 1.5;
  173. font-weight: normal;
  174. font-family: $font-stack;
  175. color: #333;
  176. }
  177. /* Typography
  178. –––––––––––––––––––––––––––––––––––––––––––––––––– */
  179. h1, h2, h3, h4, h5, h6 {
  180. margin-top: 0;
  181. margin-bottom: 0;
  182. font-weight: 400;
  183. }
  184. h1 { font-size: 4.0rem; line-height: 1.2; letter-spacing: -.1rem;}
  185. h2 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; }
  186. h3 { font-size: 3.0rem; line-height: 1.3; letter-spacing: -.1rem; }
  187. h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
  188. h5 { font-size: 1.8rem; line-height: 1.5; letter-spacing: -.05rem; }
  189. h6 { font-size: 1.5rem; line-height: 1.6; letter-spacing: 0; }
  190. p { margin-top: 0; }
  191. page {
  192. position: relative;
  193. padding: 10mm 25mm 10mm 25mm;
  194. display: block;
  195. border: 1px solid black;
  196. -webkit-box-shadow: 5px 5px 4px 0px rgba(192,192,192,1);
  197. -moz-box-shadow: 5px 5px 4px 0px rgba(192,192,192,1);
  198. box-shadow: 5px 5px 4px 0px rgba(192,192,192,1);
  199. -webkit-print-color-adjust: exact;
  200. }
  201. page[size="A4"][orientation="portrait"] {
  202. width: 210mm;
  203. height: 297mm;
  204. }
  205. page[size="A4"][orientation="landscape"] {
  206. width: 297mm;
  207. height: 210mm;
  208. }
  209. page[size="A3"][orientation="portrait"] {
  210. width: 420mm;
  211. height: 297mm;
  212. }
  213. page[size="A3"][orientation="landscape"] {
  214. width: 297mm;
  215. height: 420mm;
  216. }
  217. page[size="A5"][orientation="landscape"] {
  218. width: 14.8cm;
  219. height: 21cm;
  220. }
  221. page[size="A5"][orientation="portrait"] {
  222. width: 21cm;
  223. height: 14.8cm;
  224. }
  225. .grid {
  226. display: grid;
  227. grid-template-columns: auto;
  228. grid-template-rows: auto 1fr auto;
  229. grid-template-areas: "header"
  230. "main"
  231. "footer";
  232. grid-gap: 0px;
  233. align-content: start;
  234. }
  235. .header {
  236. grid-area: header;
  237. align-self: start;
  238. }
  239. .main {
  240. grid-area: main;
  241. align-self: start;
  242. }
  243. .footer {
  244. grid-area: footer;
  245. align-self: end;
  246. }
  247. .flex-grid {
  248. display: flex;
  249. }
  250. .col {
  251. flex: 1;
  252. }
  253. .subpage {
  254. font: 10pt $font-stack;
  255. background-color: white;
  256. position: relative;
  257. min-height: 100%;
  258. &.font-size-8 {
  259. font: 8pt $font-stack;
  260. }
  261. &.font-size-11 {
  262. font: 11pt $font-stack;
  263. }
  264. }
  265. table.fixed {
  266. table-layout: fixed;
  267. table th, table td {
  268. overflow: hidden;
  269. }
  270. }
  271. @media print {
  272. * {
  273. //alles was Farbe hat mitdrucken
  274. -webkit-print-color-adjust: exact;
  275. }
  276. //Bootstrap-Eigenart Links mit auszudrucken...
  277. a[href]:after {
  278. content: "";
  279. }
  280. .container {
  281. padding: 0;
  282. margin: 0;
  283. }
  284. page {
  285. page-break-after: always;
  286. margin: 0px;
  287. border: none;
  288. margin-bottom: 0px;
  289. -webkit-box-shadow:initial;
  290. -moz-box-shadow:initial;
  291. box-shadow: initial;
  292. }
  293. @page {
  294. page[size="A4"][orientation="portrait"] {
  295. size: A4 portrait;
  296. }
  297. page[size="A4"][orientation="landscape"] {
  298. size: A4 landscape;
  299. }
  300. page[size="A3"][orientation="portrait"] {
  301. size: A3 portrait;
  302. }
  303. page[size="A3"][orientation="landscape"] {
  304. size: A3 landscape;
  305. }
  306. }
  307. }