mi-jekyll-theme 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +46 -0
- data/_includes/functions/gallery.html +69 -0
- data/_includes/functions/proposals.html +27 -0
- data/_includes/functions/resolve-dates.html +27 -0
- data/_includes/functions/resolve-names.html +9 -0
- data/_includes/functions/resolve-types.html +5 -0
- data/_includes/functions/resolve-urls.html +5 -0
- data/_includes/functions/resolve-voraussetzungen.html +18 -0
- data/_includes/functions/zeitplan.html +26 -0
- data/_includes/image.html +8 -0
- data/_includes/news-overview.html +32 -0
- data/_includes/news.html +10 -0
- data/_includes/proposal.html +30 -0
- data/_includes/reading-time.html +8 -0
- data/_includes/termine-auf-veranstaltungsseite.html +33 -0
- data/_includes/timetable-day-float.html +111 -0
- data/_includes/timetable-day.html +140 -0
- data/_includes/veranstaltungsinfo-klein.html +55 -0
- data/_includes/workshop-overview.html +36 -0
- data/_includes/zwischenstand.html +16 -0
- data/_layouts/bigtext.html +8 -0
- data/_layouts/codesnippets.html +43 -0
- data/_layouts/default.html +89 -0
- data/_layouts/einspalter.html +7 -0
- data/_layouts/faq.html +40 -0
- data/_layouts/hauptspalteMarginalie.html +8 -0
- data/_layouts/home.html +25 -0
- data/_layouts/lehrveranstaltung.html +61 -0
- data/_layouts/links.html +70 -0
- data/_layouts/markdownAjax.html +15 -0
- data/_layouts/modul-overview.html +9 -0
- data/_layouts/news.html +40 -0
- data/_layouts/page-einspalter.html +23 -0
- data/_layouts/page.html +24 -0
- data/_layouts/post.html +17 -0
- data/_layouts/projekt.html +81 -0
- data/_layouts/workshop.html +43 -0
- data/_layouts/zweispalter.html +7 -0
- data/_sass/lib/README.md +1 -0
- data/_sass/lib/_highlights.scss +84 -0
- data/_sass/lib/_overrides.scss +16 -0
- data/_sass/lib/_reset.scss +53 -0
- data/_sass/lib/_svg-icons.scss +20 -0
- data/_sass/lib/_variables-mi-colors.scss +11 -0
- data/_sass/lib/_variables.scss +21 -0
- data/_sass/lib/bulma.sass +8 -0
- data/_sass/lib/sass/base/_all.sass +5 -0
- data/_sass/lib/sass/base/generic.sass +127 -0
- data/_sass/lib/sass/base/helpers.sass +203 -0
- data/_sass/lib/sass/base/minireset.sass +80 -0
- data/_sass/lib/sass/components/_all.sass +15 -0
- data/_sass/lib/sass/components/breadcrumb.sass +74 -0
- data/_sass/lib/sass/components/card.sass +67 -0
- data/_sass/lib/sass/components/dropdown.sass +68 -0
- data/_sass/lib/sass/components/level.sass +74 -0
- data/_sass/lib/sass/components/media.sass +44 -0
- data/_sass/lib/sass/components/menu.sass +50 -0
- data/_sass/lib/sass/components/message.sass +79 -0
- data/_sass/lib/sass/components/modal.sass +111 -0
- data/_sass/lib/sass/components/nav.sass +125 -0
- data/_sass/lib/sass/components/navbar.sass +301 -0
- data/_sass/lib/sass/components/pagination.sass +134 -0
- data/_sass/lib/sass/components/panel.sass +101 -0
- data/_sass/lib/sass/components/tabs.sass +141 -0
- data/_sass/lib/sass/elements/_all.sass +16 -0
- data/_sass/lib/sass/elements/box.sass +24 -0
- data/_sass/lib/sass/elements/button.sass +201 -0
- data/_sass/lib/sass/elements/container.sass +25 -0
- data/_sass/lib/sass/elements/content.sass +145 -0
- data/_sass/lib/sass/elements/form.sass +603 -0
- data/_sass/lib/sass/elements/icon.sass +21 -0
- data/_sass/lib/sass/elements/image.sass +36 -0
- data/_sass/lib/sass/elements/notification.sass +35 -0
- data/_sass/lib/sass/elements/other.sass +39 -0
- data/_sass/lib/sass/elements/progress.sass +35 -0
- data/_sass/lib/sass/elements/table.sass +98 -0
- data/_sass/lib/sass/elements/tag.sass +89 -0
- data/_sass/lib/sass/elements/title.sass +55 -0
- data/_sass/lib/sass/grid/_all.sass +4 -0
- data/_sass/lib/sass/grid/columns.sass +328 -0
- data/_sass/lib/sass/grid/tiles.sass +32 -0
- data/_sass/lib/sass/layout/_all.sass +5 -0
- data/_sass/lib/sass/layout/footer.sass +5 -0
- data/_sass/lib/sass/layout/hero.sass +155 -0
- data/_sass/lib/sass/layout/section.sass +13 -0
- data/_sass/lib/sass/utilities/_all.sass +8 -0
- data/_sass/lib/sass/utilities/animations.sass +5 -0
- data/_sass/lib/sass/utilities/controls.sass +41 -0
- data/_sass/lib/sass/utilities/derived-variables.sass +81 -0
- data/_sass/lib/sass/utilities/functions.sass +28 -0
- data/_sass/lib/sass/utilities/initial-variables.sass +64 -0
- data/_sass/lib/sass/utilities/mixins.sass +224 -0
- data/_sass/lib/sass/utilities/variables.sass +150 -0
- data/_sass/mi-jekyll.scss +821 -0
- data/assets/images/favicon.ico +0 -0
- data/assets/images/mi-box-100.png +0 -0
- data/assets/images/mi-box-150.png +0 -0
- data/assets/images/mi-box-470.png +0 -0
- data/assets/images/mi-box.svg +34 -0
- data/assets/images/th-logo.png +0 -0
- data/assets/js/mi-jekyll.js +359 -0
- data/assets/libs/octokit-rest.min.js +16 -0
- data/assets/styles/mi-jekyll.scss +11 -0
- data/assets/th-logo.png +0 -0
- metadata +191 -0
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
=arrow($color)
|
|
2
|
+
border: 1px solid $color
|
|
3
|
+
border-right: 0
|
|
4
|
+
border-top: 0
|
|
5
|
+
content: " "
|
|
6
|
+
display: block
|
|
7
|
+
height: 0.5em
|
|
8
|
+
pointer-events: none
|
|
9
|
+
position: absolute
|
|
10
|
+
transform: rotate(-45deg)
|
|
11
|
+
width: 0.5em
|
|
12
|
+
|
|
13
|
+
=block
|
|
14
|
+
&:not(:last-child)
|
|
15
|
+
margin-bottom: 1.5rem
|
|
16
|
+
|
|
17
|
+
=clearfix
|
|
18
|
+
&:after
|
|
19
|
+
clear: both
|
|
20
|
+
content: " "
|
|
21
|
+
display: table
|
|
22
|
+
|
|
23
|
+
=center($width, $height: 0)
|
|
24
|
+
position: absolute
|
|
25
|
+
@if $height != 0
|
|
26
|
+
left: calc(50% - (#{$width} / 2))
|
|
27
|
+
top: calc(50% - (#{$height} / 2))
|
|
28
|
+
@else
|
|
29
|
+
left: calc(50% - (#{$width} / 2))
|
|
30
|
+
top: calc(50% - (#{$width} / 2))
|
|
31
|
+
|
|
32
|
+
=delete
|
|
33
|
+
+unselectable
|
|
34
|
+
-moz-appearance: none
|
|
35
|
+
-webkit-appearance: none
|
|
36
|
+
background-color: rgba($black, 0.2)
|
|
37
|
+
border: none
|
|
38
|
+
border-radius: 290486px
|
|
39
|
+
cursor: pointer
|
|
40
|
+
display: inline-block
|
|
41
|
+
flex-grow: 0
|
|
42
|
+
flex-shrink: 0
|
|
43
|
+
font-size: $size-normal
|
|
44
|
+
height: 20px
|
|
45
|
+
max-height: 20px
|
|
46
|
+
max-width: 20px
|
|
47
|
+
min-height: 20px
|
|
48
|
+
min-width: 20px
|
|
49
|
+
outline: none
|
|
50
|
+
position: relative
|
|
51
|
+
vertical-align: top
|
|
52
|
+
width: 20px
|
|
53
|
+
&:before,
|
|
54
|
+
&:after
|
|
55
|
+
background-color: $white
|
|
56
|
+
content: ""
|
|
57
|
+
display: block
|
|
58
|
+
left: 50%
|
|
59
|
+
position: absolute
|
|
60
|
+
top: 50%
|
|
61
|
+
transform: translateX(-50%) translateY(-50%) rotate(45deg)
|
|
62
|
+
transform-origin: center center
|
|
63
|
+
&:before
|
|
64
|
+
height: 2px
|
|
65
|
+
width: 50%
|
|
66
|
+
&:after
|
|
67
|
+
height: 50%
|
|
68
|
+
width: 2px
|
|
69
|
+
&:hover,
|
|
70
|
+
&:focus
|
|
71
|
+
background-color: rgba($black, 0.3)
|
|
72
|
+
&:active
|
|
73
|
+
background-color: rgba($black, 0.4)
|
|
74
|
+
// Sizes
|
|
75
|
+
&.is-small
|
|
76
|
+
height: 16px
|
|
77
|
+
max-height: 16px
|
|
78
|
+
max-width: 16px
|
|
79
|
+
min-height: 16px
|
|
80
|
+
min-width: 16px
|
|
81
|
+
width: 16px
|
|
82
|
+
&.is-medium
|
|
83
|
+
height: 24px
|
|
84
|
+
max-height: 24px
|
|
85
|
+
max-width: 24px
|
|
86
|
+
min-height: 24px
|
|
87
|
+
min-width: 24px
|
|
88
|
+
width: 24px
|
|
89
|
+
&.is-large
|
|
90
|
+
height: 32px
|
|
91
|
+
max-height: 32px
|
|
92
|
+
max-width: 32px
|
|
93
|
+
min-height: 32px
|
|
94
|
+
min-width: 32px
|
|
95
|
+
width: 32px
|
|
96
|
+
|
|
97
|
+
=fa($size, $dimensions)
|
|
98
|
+
display: inline-block
|
|
99
|
+
font-size: $size
|
|
100
|
+
height: $dimensions
|
|
101
|
+
line-height: $dimensions
|
|
102
|
+
text-align: center
|
|
103
|
+
vertical-align: top
|
|
104
|
+
width: $dimensions
|
|
105
|
+
|
|
106
|
+
=hamburger($dimensions)
|
|
107
|
+
cursor: pointer
|
|
108
|
+
display: block
|
|
109
|
+
height: $dimensions
|
|
110
|
+
position: relative
|
|
111
|
+
width: $dimensions
|
|
112
|
+
span
|
|
113
|
+
background-color: currentColor
|
|
114
|
+
display: block
|
|
115
|
+
height: 1px
|
|
116
|
+
left: 50%
|
|
117
|
+
margin-left: -7px
|
|
118
|
+
position: absolute
|
|
119
|
+
top: 50%
|
|
120
|
+
transition: none $speed $easing
|
|
121
|
+
transition-property: background, left, opacity, transform
|
|
122
|
+
width: 15px
|
|
123
|
+
&:nth-child(1)
|
|
124
|
+
margin-top: -6px
|
|
125
|
+
&:nth-child(2)
|
|
126
|
+
margin-top: -1px
|
|
127
|
+
&:nth-child(3)
|
|
128
|
+
margin-top: 4px
|
|
129
|
+
&:hover
|
|
130
|
+
background-color: rgba(black, 0.05)
|
|
131
|
+
// Modifers
|
|
132
|
+
&.is-active
|
|
133
|
+
span
|
|
134
|
+
&:nth-child(1)
|
|
135
|
+
margin-left: -5px
|
|
136
|
+
transform: rotate(45deg)
|
|
137
|
+
transform-origin: left top
|
|
138
|
+
&:nth-child(2)
|
|
139
|
+
opacity: 0
|
|
140
|
+
&:nth-child(3)
|
|
141
|
+
margin-left: -5px
|
|
142
|
+
transform: rotate(-45deg)
|
|
143
|
+
transform-origin: left bottom
|
|
144
|
+
|
|
145
|
+
=loader
|
|
146
|
+
animation: spinAround 500ms infinite linear
|
|
147
|
+
border: 2px solid $border
|
|
148
|
+
border-radius: 290486px
|
|
149
|
+
border-right-color: transparent
|
|
150
|
+
border-top-color: transparent
|
|
151
|
+
content: ""
|
|
152
|
+
display: block
|
|
153
|
+
height: 1em
|
|
154
|
+
position: relative
|
|
155
|
+
width: 1em
|
|
156
|
+
|
|
157
|
+
=overflow-touch
|
|
158
|
+
-webkit-overflow-scrolling: touch
|
|
159
|
+
|
|
160
|
+
=overlay($offset: 0)
|
|
161
|
+
bottom: $offset
|
|
162
|
+
left: $offset
|
|
163
|
+
position: absolute
|
|
164
|
+
right: $offset
|
|
165
|
+
top: $offset
|
|
166
|
+
|
|
167
|
+
=placeholder
|
|
168
|
+
$placeholders: ':-moz' ':-webkit-input' '-moz' '-ms-input'
|
|
169
|
+
@each $placeholder in $placeholders
|
|
170
|
+
&:#{$placeholder}-placeholder
|
|
171
|
+
@content
|
|
172
|
+
|
|
173
|
+
=unselectable
|
|
174
|
+
-webkit-touch-callout: none
|
|
175
|
+
-webkit-user-select: none
|
|
176
|
+
-moz-user-select: none
|
|
177
|
+
-ms-user-select: none
|
|
178
|
+
user-select: none
|
|
179
|
+
|
|
180
|
+
// Responsiveness
|
|
181
|
+
|
|
182
|
+
=from($device)
|
|
183
|
+
@media screen and (min-width: $device)
|
|
184
|
+
@content
|
|
185
|
+
|
|
186
|
+
=until($device)
|
|
187
|
+
@media screen and (max-width: $device - 1px)
|
|
188
|
+
@content
|
|
189
|
+
|
|
190
|
+
=mobile
|
|
191
|
+
@media screen and (max-width: $tablet - 1px)
|
|
192
|
+
@content
|
|
193
|
+
|
|
194
|
+
=tablet
|
|
195
|
+
@media screen and (min-width: $tablet), print
|
|
196
|
+
@content
|
|
197
|
+
|
|
198
|
+
=tablet-only
|
|
199
|
+
@media screen and (min-width: $tablet) and (max-width: $desktop - 1px)
|
|
200
|
+
@content
|
|
201
|
+
|
|
202
|
+
=touch
|
|
203
|
+
@media screen and (max-width: $desktop - 1px)
|
|
204
|
+
@content
|
|
205
|
+
|
|
206
|
+
=desktop
|
|
207
|
+
@media screen and (min-width: $desktop)
|
|
208
|
+
@content
|
|
209
|
+
|
|
210
|
+
=desktop-only
|
|
211
|
+
@media screen and (min-width: $desktop) and (max-width: $widescreen - 1px)
|
|
212
|
+
@content
|
|
213
|
+
|
|
214
|
+
=widescreen
|
|
215
|
+
@media screen and (min-width: $widescreen)
|
|
216
|
+
@content
|
|
217
|
+
|
|
218
|
+
=widescreen-only
|
|
219
|
+
@media screen and (min-width: $widescreen) and (max-width: $fullhd - 1px)
|
|
220
|
+
@content
|
|
221
|
+
|
|
222
|
+
=fullhd
|
|
223
|
+
@media screen and (min-width: $fullhd)
|
|
224
|
+
@content
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
////////////////////////////////////////////////
|
|
2
|
+
////////////////////////////////////////////////
|
|
3
|
+
// 1. Initial variables
|
|
4
|
+
|
|
5
|
+
// Colors
|
|
6
|
+
$black: hsl(0, 0%, 4%) !default
|
|
7
|
+
$black-bis: hsl(0, 0%, 7%) !default
|
|
8
|
+
$black-ter: hsl(0, 0%, 14%) !default
|
|
9
|
+
|
|
10
|
+
$grey-darker: hsl(0, 0%, 21%) !default
|
|
11
|
+
$grey-dark: hsl(0, 0%, 29%) !default
|
|
12
|
+
$grey: hsl(0, 0%, 48%) !default
|
|
13
|
+
$grey-light: hsl(0, 0%, 71%) !default
|
|
14
|
+
$grey-lighter: hsl(0, 0%, 86%) !default
|
|
15
|
+
|
|
16
|
+
$white-ter: hsl(0, 0%, 96%) !default
|
|
17
|
+
$white-bis: hsl(0, 0%, 98%) !default
|
|
18
|
+
$white: hsl(0, 0%, 100%) !default
|
|
19
|
+
|
|
20
|
+
$orange: hsl(14, 100%, 53%) !default
|
|
21
|
+
$yellow: hsl(48, 100%, 67%) !default
|
|
22
|
+
$green: hsl(141, 71%, 48%) !default
|
|
23
|
+
$turquoise: hsl(171, 100%, 41%) !default
|
|
24
|
+
$blue: hsl(217, 71%, 53%) !default
|
|
25
|
+
$purple: hsl(271, 100%, 71%) !default
|
|
26
|
+
$red: hsl(348, 100%, 61%) !default
|
|
27
|
+
|
|
28
|
+
// Typography
|
|
29
|
+
$family-sans-serif: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !default
|
|
30
|
+
$family-monospace: monospace !default
|
|
31
|
+
$render-mode: optimizeLegibility !default
|
|
32
|
+
|
|
33
|
+
$size-1: 3rem !default
|
|
34
|
+
$size-2: 2.5rem !default
|
|
35
|
+
$size-3: 2rem !default
|
|
36
|
+
$size-4: 1.5rem !default
|
|
37
|
+
$size-5: 1.25rem !default
|
|
38
|
+
$size-6: 1rem !default
|
|
39
|
+
$size-7: 0.75rem !default
|
|
40
|
+
|
|
41
|
+
$weight-light: 300 !default
|
|
42
|
+
$weight-normal: 400 !default
|
|
43
|
+
$weight-semibold: 500 !default
|
|
44
|
+
$weight-bold: 700 !default
|
|
45
|
+
|
|
46
|
+
// Body
|
|
47
|
+
$body-background: #fff !default
|
|
48
|
+
$body-size: 16px !default
|
|
49
|
+
|
|
50
|
+
// Responsiveness
|
|
51
|
+
// 960, 1152, and 1344 have been chosen because they are divisible by both 12 and 16
|
|
52
|
+
$tablet: 769px !default
|
|
53
|
+
// 960px container + 40px
|
|
54
|
+
$desktop: 1000px !default
|
|
55
|
+
// 1152px container + 40
|
|
56
|
+
$widescreen: 1192px !default
|
|
57
|
+
// 1344px container + 40
|
|
58
|
+
$fullhd: 1384px !default
|
|
59
|
+
|
|
60
|
+
// Miscellaneous
|
|
61
|
+
$easing: ease-out !default
|
|
62
|
+
$radius-small: 2px !default
|
|
63
|
+
$radius: 3px !default
|
|
64
|
+
$radius-large: 5px !default
|
|
65
|
+
$speed: 86ms !default
|
|
66
|
+
|
|
67
|
+
////////////////////////////////////////////////
|
|
68
|
+
////////////////////////////////////////////////
|
|
69
|
+
// 2. Primary colors
|
|
70
|
+
|
|
71
|
+
$primary: $turquoise !default
|
|
72
|
+
|
|
73
|
+
$info: $blue !default
|
|
74
|
+
$success: $green !default
|
|
75
|
+
$warning: $yellow !default
|
|
76
|
+
$danger: $red !default
|
|
77
|
+
|
|
78
|
+
$light: $white-ter !default
|
|
79
|
+
$dark: $grey-darker !default
|
|
80
|
+
|
|
81
|
+
////////////////////////////////////////////////
|
|
82
|
+
////////////////////////////////////////////////
|
|
83
|
+
// 3. Applied variables
|
|
84
|
+
|
|
85
|
+
// Invert colors
|
|
86
|
+
$orange-invert: findColorInvert($orange) !default
|
|
87
|
+
$yellow-invert: findColorInvert($yellow) !default
|
|
88
|
+
$green-invert: findColorInvert($green) !default
|
|
89
|
+
$turquoise-invert: findColorInvert($turquoise) !default
|
|
90
|
+
$blue-invert: findColorInvert($blue) !default
|
|
91
|
+
$purple-invert: findColorInvert($purple) !default
|
|
92
|
+
$red-invert: findColorInvert($red) !default
|
|
93
|
+
|
|
94
|
+
$primary-invert: $turquoise-invert !default
|
|
95
|
+
$info-invert: $blue-invert !default
|
|
96
|
+
$success-invert: $green-invert !default
|
|
97
|
+
$warning-invert: $yellow-invert !default
|
|
98
|
+
$danger-invert: $red-invert !default
|
|
99
|
+
$light-invert: $dark !default
|
|
100
|
+
$dark-invert: $light !default
|
|
101
|
+
|
|
102
|
+
// General colors
|
|
103
|
+
$background: $white-ter !default
|
|
104
|
+
|
|
105
|
+
$border: $grey-lighter !default
|
|
106
|
+
$border-hover: $grey-light !default
|
|
107
|
+
|
|
108
|
+
// Text colors
|
|
109
|
+
$text: $grey-dark !default
|
|
110
|
+
$text-invert: findColorInvert($text) !default
|
|
111
|
+
$text-light: $grey !default
|
|
112
|
+
$text-strong: $grey-darker !default
|
|
113
|
+
|
|
114
|
+
// Code colors
|
|
115
|
+
$code: $red !default
|
|
116
|
+
$code-background: $background !default
|
|
117
|
+
|
|
118
|
+
$pre: $text !default
|
|
119
|
+
$pre-background: $background !default
|
|
120
|
+
|
|
121
|
+
// Link colors
|
|
122
|
+
$link: $primary !default
|
|
123
|
+
$link-invert: $primary-invert !default
|
|
124
|
+
$link-visited: $purple !default
|
|
125
|
+
|
|
126
|
+
$link-hover: $grey-darker !default
|
|
127
|
+
$link-hover-border: $grey-light !default
|
|
128
|
+
|
|
129
|
+
$link-focus: $grey-darker !default
|
|
130
|
+
$link-focus-border: $primary !default
|
|
131
|
+
|
|
132
|
+
$link-active: $grey-darker !default
|
|
133
|
+
$link-active-border: $grey-dark !default
|
|
134
|
+
|
|
135
|
+
// Typography
|
|
136
|
+
$family-primary: $family-sans-serif !default
|
|
137
|
+
$family-code: $family-monospace !default
|
|
138
|
+
|
|
139
|
+
$size-small: $size-7 !default
|
|
140
|
+
$size-normal: $size-6 !default
|
|
141
|
+
$size-medium: $size-5 !default
|
|
142
|
+
$size-large: $size-4 !default
|
|
143
|
+
|
|
144
|
+
////////////////////////////////////////////////
|
|
145
|
+
////////////////////////////////////////////////
|
|
146
|
+
// 4. Lists and maps
|
|
147
|
+
|
|
148
|
+
$colors: ("white": ($white, $black), "black": ($black, $white), "light": ($light, $light-invert), "dark": ($dark, $dark-invert), "primary": ($primary, $primary-invert), "info": ($info, $info-invert), "success": ($success, $success-invert), "warning": ($warning, $warning-invert), "danger": ($danger, $danger-invert)) !default
|
|
149
|
+
|
|
150
|
+
$sizes: $size-1 $size-2 $size-3 $size-4 $size-5 $size-6 $size-7 !default
|
|
@@ -0,0 +1,821 @@
|
|
|
1
|
+
//
|
|
2
|
+
// IMPORTS
|
|
3
|
+
//
|
|
4
|
+
@import "lib/variables";
|
|
5
|
+
@import "lib/bulma";
|
|
6
|
+
@import "lib/overrides";
|
|
7
|
+
// Syntax highlighting @import is at the bottom of this file
|
|
8
|
+
|
|
9
|
+
/**************/
|
|
10
|
+
/* BASE RULES */
|
|
11
|
+
/**************/
|
|
12
|
+
|
|
13
|
+
.button {
|
|
14
|
+
font-size: $bfs;
|
|
15
|
+
background-color: $mi-pink;
|
|
16
|
+
color: $mi-bg;
|
|
17
|
+
font-weight: bold;
|
|
18
|
+
position: absolute;
|
|
19
|
+
margin-left: 5px;
|
|
20
|
+
padding: 1px 10px;
|
|
21
|
+
text-align: center;
|
|
22
|
+
display: inline-block;
|
|
23
|
+
font-size: 10px;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
body,
|
|
27
|
+
html {
|
|
28
|
+
line-height: 130%;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.is-underlined{
|
|
32
|
+
padding-bottom: $bfs /2;
|
|
33
|
+
margin-bottom: $bfs *2 !important;
|
|
34
|
+
margin-top: $bfs * 2;
|
|
35
|
+
border-bottom: solid 1px $mi-grau;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/*hr{
|
|
39
|
+
-moz-border-bottom-colors: none;
|
|
40
|
+
-moz-border-left-colors: none;
|
|
41
|
+
-moz-border-right-colors: none;
|
|
42
|
+
-moz-border-top-colors: none;
|
|
43
|
+
border-color: #aaa -moz-use-text-color -moz-use-text-color;
|
|
44
|
+
border-image: none;
|
|
45
|
+
border-style: dotted none none;
|
|
46
|
+
border-width: 1px 0 0;
|
|
47
|
+
box-sizing: content-box;
|
|
48
|
+
height: 0;
|
|
49
|
+
} */
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
/**************/
|
|
53
|
+
/* index */
|
|
54
|
+
/**************/
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
/**************/
|
|
58
|
+
/* Footer */
|
|
59
|
+
/**************/
|
|
60
|
+
|
|
61
|
+
.footer {
|
|
62
|
+
border-top: solid 1px $mi-pink;
|
|
63
|
+
|
|
64
|
+
.menu-list {
|
|
65
|
+
li+li {
|
|
66
|
+
border-top: solid 1px rgba(0, 0, 0, 0.2);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
a {
|
|
70
|
+
padding-left: 0;
|
|
71
|
+
font-size: $bfs * 0.8;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
/**************/
|
|
79
|
+
/* Header */
|
|
80
|
+
/**************/
|
|
81
|
+
|
|
82
|
+
.is-header {
|
|
83
|
+
background-repeat: no-repeat;
|
|
84
|
+
background-size: cover;
|
|
85
|
+
background-position: center center;
|
|
86
|
+
overflow: hidden;
|
|
87
|
+
position: relative;
|
|
88
|
+
|
|
89
|
+
&.has-gradient::before{
|
|
90
|
+
content: '';
|
|
91
|
+
top: 0;
|
|
92
|
+
bottom: 0;
|
|
93
|
+
position: absolute;
|
|
94
|
+
right: 0;
|
|
95
|
+
left: 0;
|
|
96
|
+
background-size: auto;
|
|
97
|
+
background-image: linear-gradient(to left,rgba(0,173,47,0), rgba(0,173,47,100));
|
|
98
|
+
background-repeat: no-repeat;
|
|
99
|
+
background-position: bottom;
|
|
100
|
+
opacity: 1;
|
|
101
|
+
z-index: 0;
|
|
102
|
+
}
|
|
103
|
+
.title {
|
|
104
|
+
font-weight: 100;
|
|
105
|
+
font-size: $bfs * 2;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
/**************/
|
|
111
|
+
/* Timetable */
|
|
112
|
+
/**************/
|
|
113
|
+
|
|
114
|
+
$tt-grid-height: 60px;
|
|
115
|
+
|
|
116
|
+
.timetable {
|
|
117
|
+
.datum {
|
|
118
|
+
height: $tt-grid-height;
|
|
119
|
+
|
|
120
|
+
@media (max-width: 999px) {
|
|
121
|
+
height: auto !important;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
@media (max-width: 999px) {
|
|
126
|
+
.datum:nth-of-type(2) {
|
|
127
|
+
margin-top: $bfs *2;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
h2 {
|
|
131
|
+
border-bottom: $dotted-line;
|
|
132
|
+
padding-bottom: $bfs /4;
|
|
133
|
+
padding-top: $bfs *2;
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.timetable-wrap {
|
|
138
|
+
position: relative;
|
|
139
|
+
|
|
140
|
+
.timetable-grid {
|
|
141
|
+
height: $tt-grid-height;
|
|
142
|
+
border-top: $dotted-line;
|
|
143
|
+
|
|
144
|
+
@media (max-width: 999px) {
|
|
145
|
+
border-top: none;
|
|
146
|
+
height: auto;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.grid-time {
|
|
150
|
+
font-size: $bfs /2;
|
|
151
|
+
|
|
152
|
+
@media (max-width: 999px) {
|
|
153
|
+
display: none;
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.veranstaltung-wrap {
|
|
159
|
+
float: left;
|
|
160
|
+
width: 20%;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.veranstaltungen-wrap {
|
|
164
|
+
position: absolute;
|
|
165
|
+
top: 0;
|
|
166
|
+
left: 30px;
|
|
167
|
+
|
|
168
|
+
&:after {
|
|
169
|
+
content: "";
|
|
170
|
+
display: block;
|
|
171
|
+
clear: both;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.veranstaltung {
|
|
176
|
+
width: 100%;
|
|
177
|
+
background-color: #999;
|
|
178
|
+
|
|
179
|
+
border-bottom: solid 1px rgba(255, 255, 255, 0.7);
|
|
180
|
+
border-right: solid 1px rgba(255, 255, 255, 0.7);
|
|
181
|
+
padding: $bfs /2;
|
|
182
|
+
|
|
183
|
+
@media (max-width: 999px) {
|
|
184
|
+
height: auto !important;
|
|
185
|
+
padding-top: $bfs;
|
|
186
|
+
padding-bottom: $bfs * 1.5;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.title,
|
|
190
|
+
.subtitle {
|
|
191
|
+
color: #fff;
|
|
192
|
+
font-size: 0.9rem;
|
|
193
|
+
line-height: 120%;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.title+.subtitle {
|
|
197
|
+
margin-top: $bfs * -0.8;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.title {
|
|
201
|
+
font-weight: bold;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
&.training {
|
|
205
|
+
background-color: $mi-lila;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
&.workshop {
|
|
209
|
+
background-color: $mi-gruen;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
&.seminar {
|
|
213
|
+
background-color: $mi-pink;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
&.vortrag {
|
|
217
|
+
background-color: $mi-pink;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
&.feedback {
|
|
221
|
+
background-color: $mi-blau;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
&.orga {
|
|
225
|
+
background-color: $mi-grau;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
&.ganztagesworkshop {
|
|
229
|
+
background-color: $mi-gruen;
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
/**************/
|
|
237
|
+
/* Veranstaltungsübersicht
|
|
238
|
+
/**************/
|
|
239
|
+
|
|
240
|
+
.is-tab-wrap {
|
|
241
|
+
display: flex;
|
|
242
|
+
flex-wrap: wrap;
|
|
243
|
+
|
|
244
|
+
.card {
|
|
245
|
+
display: flex;
|
|
246
|
+
flex-direction: column;
|
|
247
|
+
|
|
248
|
+
&.is-training .card-header {
|
|
249
|
+
background-color: $mi-lila;
|
|
250
|
+
|
|
251
|
+
>.card-header-title {
|
|
252
|
+
color: #fff;
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
& .card-content {
|
|
257
|
+
flex-grow: 1;
|
|
258
|
+
|
|
259
|
+
dl.overview-card {
|
|
260
|
+
dd,
|
|
261
|
+
dt {
|
|
262
|
+
display: inline-block;
|
|
263
|
+
float: none;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
dd+dt:before {
|
|
267
|
+
content: " // ";
|
|
268
|
+
font-weight: 100;
|
|
269
|
+
color: #999;
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
&.is-workshop .card-header {
|
|
275
|
+
background-color: $mi-gruen;
|
|
276
|
+
|
|
277
|
+
>.card-header-title {
|
|
278
|
+
color: #fff;
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
&.is-ganztagesworkshop .card-header {
|
|
283
|
+
background-color: $mi-gruen;
|
|
284
|
+
|
|
285
|
+
>.card-header-title {
|
|
286
|
+
color: #fff;
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
&.is-vortrag .card-header {
|
|
291
|
+
background-color: $mi-pink;
|
|
292
|
+
|
|
293
|
+
>.card-header-title {
|
|
294
|
+
color: #fff;
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
&.is-feedback .card-header {
|
|
299
|
+
background-color: $mi-blau;
|
|
300
|
+
|
|
301
|
+
>.card-header-title {
|
|
302
|
+
color: #fff;
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
&.is-pruefung .card-header {
|
|
307
|
+
background-color: $mi-black;
|
|
308
|
+
|
|
309
|
+
>.card-header-title {
|
|
310
|
+
color: #fff;
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
&.is-support-all .card-header {
|
|
315
|
+
background-color: $mi-grau;
|
|
316
|
+
|
|
317
|
+
>.card-header-title {
|
|
318
|
+
color: #fff;
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.is-tab-content {
|
|
324
|
+
flex-basis: 30%;
|
|
325
|
+
margin-right: 3%;
|
|
326
|
+
|
|
327
|
+
@media (max-width: 999px) {
|
|
328
|
+
flex-basis: 47%;
|
|
329
|
+
margin-right: 3%;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
@media (max-width: 768px) {
|
|
333
|
+
flex-basis: 100%;
|
|
334
|
+
margin-right: 0;
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
/**************/
|
|
340
|
+
/* News
|
|
341
|
+
/**************/
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
.news-box{
|
|
345
|
+
margin-bottom: $bfs * 2;
|
|
346
|
+
|
|
347
|
+
dl{
|
|
348
|
+
margin-bottom: 0;
|
|
349
|
+
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.card{
|
|
353
|
+
transition: all 0.3s;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.card:hover{
|
|
357
|
+
background-color: #000;
|
|
358
|
+
color: #fff;
|
|
359
|
+
|
|
360
|
+
h3{
|
|
361
|
+
color: #fff;
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.bm--card-equal-height {
|
|
366
|
+
display: flex;
|
|
367
|
+
flex-direction: column;
|
|
368
|
+
height: 100%;
|
|
369
|
+
}
|
|
370
|
+
.bm--card-equal-height .card-footer {
|
|
371
|
+
margin-top: auto;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
figure.image{
|
|
375
|
+
margin: 0;
|
|
376
|
+
|
|
377
|
+
img{
|
|
378
|
+
object-fit: cover;
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
//////////////
|
|
384
|
+
// Links
|
|
385
|
+
//////////////
|
|
386
|
+
.panel {
|
|
387
|
+
margin-bottom: 2rem;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.panel-block.is-active {
|
|
391
|
+
color: $mi-pink;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
.link-overview .link-overview__item+.link-overview__item {
|
|
395
|
+
border-top: solid 1px $mi-grau;
|
|
396
|
+
margin-top: 1rem;
|
|
397
|
+
padding-top: 1rem;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
/**************/
|
|
401
|
+
/* Content */
|
|
402
|
+
/**************/
|
|
403
|
+
|
|
404
|
+
* {
|
|
405
|
+
word-wrap: normal;
|
|
406
|
+
hyphens: auto;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.section {
|
|
410
|
+
padding-top: $bfs;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.section:nth-of-type(2) {
|
|
414
|
+
padding-top: $bfs *2;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
.is-overview-item {
|
|
418
|
+
margin-bottom: $bfs *2;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
.cite{
|
|
422
|
+
padding: $bfs;
|
|
423
|
+
background-color: $mi-bg;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
.content {
|
|
427
|
+
li{
|
|
428
|
+
margin-left: 1em;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
p,
|
|
432
|
+
li,
|
|
433
|
+
table {
|
|
434
|
+
max-width: $bfs * 36;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
h1 {
|
|
438
|
+
font-size: $bfs * 1.6;
|
|
439
|
+
font-weight: 500;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
h2 {
|
|
443
|
+
font-size: $bfs * 1.4;
|
|
444
|
+
font-weight: 500;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
h3 {
|
|
448
|
+
font-size: $bfs;
|
|
449
|
+
font-weight: 600;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
h4 {
|
|
453
|
+
font-size: $bfs;
|
|
454
|
+
font-weight: 600;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
h5 {
|
|
458
|
+
font-size: $bfs;
|
|
459
|
+
font-weight: 600;
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
h6 {
|
|
463
|
+
font-size: $bfs;
|
|
464
|
+
font-weight: 600;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
/*ul{
|
|
468
|
+
margin-left: 1em;
|
|
469
|
+
}*/
|
|
470
|
+
|
|
471
|
+
dl {
|
|
472
|
+
margin-bottom: $bfs;
|
|
473
|
+
|
|
474
|
+
dt {
|
|
475
|
+
display: block;
|
|
476
|
+
float: left;
|
|
477
|
+
min-width: 10px;
|
|
478
|
+
padding: $bfs /8 0;
|
|
479
|
+
font-weight: bold;
|
|
480
|
+
color: $info;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
dd {
|
|
484
|
+
/*border-bottom: solid 1px $grey-light; */
|
|
485
|
+
padding: $bfs /8 0;
|
|
486
|
+
margin-left: 0;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
dt::after {
|
|
490
|
+
content: ":";
|
|
491
|
+
display: inline-block;
|
|
492
|
+
padding-right: $bfs /4;
|
|
493
|
+
}
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
table {
|
|
497
|
+
|
|
498
|
+
a,
|
|
499
|
+
a:not(.button) {
|
|
500
|
+
border: none;
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
th {
|
|
504
|
+
font-weight: 600;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.no-border {
|
|
508
|
+
|
|
509
|
+
th,
|
|
510
|
+
td {
|
|
511
|
+
border: none;
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
table {
|
|
517
|
+
@extend .table;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
table.tab-schwerpunktmodule {
|
|
521
|
+
th {
|
|
522
|
+
width: 40%;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
th+th+th {
|
|
526
|
+
width: 20%;
|
|
527
|
+
}
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
.footnotes {
|
|
531
|
+
border-top: solid 1px #9313ce;
|
|
532
|
+
padding-bottom: $bfs;
|
|
533
|
+
border-bottom: solid 1px #9313ce;
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
.img-responsive {
|
|
537
|
+
width: 100%;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
figure {
|
|
541
|
+
border-top: dotted 1px $mi-gruen;
|
|
542
|
+
padding-top: $bfs;
|
|
543
|
+
margin-top: $bfs;
|
|
544
|
+
|
|
545
|
+
figcaption {
|
|
546
|
+
display: block;
|
|
547
|
+
padding-bottom: $bfs /2;
|
|
548
|
+
padding-top: $bfs;
|
|
549
|
+
margin-bottom: $bfs;
|
|
550
|
+
font-style: normal;
|
|
551
|
+
color: $mi-gruen;
|
|
552
|
+
border-top: dotted 1px $mi-gruen;
|
|
553
|
+
text-align: left;
|
|
554
|
+
}
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
td.pm {
|
|
558
|
+
background-color: $mi-blau;
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
td.spp {
|
|
562
|
+
background-color: $mi-gruen;
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
td.spmw,
|
|
566
|
+
td.spm {
|
|
567
|
+
background-color: $mi-pink;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
td.pm-grau,
|
|
571
|
+
td.wpm {
|
|
572
|
+
background-color: lighten($mi-black, 50%);
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
.lighten {
|
|
576
|
+
* {
|
|
577
|
+
color: #aaa;
|
|
578
|
+
}
|
|
579
|
+
}
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
.zweispalter {
|
|
583
|
+
h2 {
|
|
584
|
+
border-top: dotted 1px $grey-light;
|
|
585
|
+
padding-top: $bfs;
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
.content {
|
|
589
|
+
@media (min-width: 999px) {
|
|
590
|
+
>* {
|
|
591
|
+
margin-left: 50% !important;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
h3 {
|
|
595
|
+
font-size: $bfs;
|
|
596
|
+
font-weight: 700;
|
|
597
|
+
color: $mi-black;
|
|
598
|
+
line-height: 130%;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
&>h1,
|
|
602
|
+
&>h2,
|
|
603
|
+
&>h3 {
|
|
604
|
+
margin-left: 0 !important;
|
|
605
|
+
float: left;
|
|
606
|
+
width: 48%;
|
|
607
|
+
padding-left: 20%;
|
|
608
|
+
margin-top: 0 !important;
|
|
609
|
+
text-align: right;
|
|
610
|
+
hyphens: none;
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
&>h4,
|
|
614
|
+
&>h5,
|
|
615
|
+
&>h6 {
|
|
616
|
+
font-weight: 600;
|
|
617
|
+
margin-top: $bfs;
|
|
618
|
+
margin-bottom: $bfs /2;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
&>h1,
|
|
622
|
+
&>h2 {
|
|
623
|
+
/*border-top: dotted 1px #aaa; */
|
|
624
|
+
padding-top: $bfs;
|
|
625
|
+
text-align: left;
|
|
626
|
+
padding-right: 10%;
|
|
627
|
+
padding-left: 0;
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
&>h1+p,
|
|
631
|
+
&>h2+p {
|
|
632
|
+
margin-top: $bfs * 4 !important;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
&>h2:not(:first-child) {
|
|
636
|
+
margin-top: $bfs *3 !important;
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
}
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
.modulbeschreibung {
|
|
643
|
+
h2 {
|
|
644
|
+
border-top: dotted 1px $grey-light;
|
|
645
|
+
padding-top: $bfs;
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
.content {}
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
.faq {
|
|
652
|
+
clear: both;
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
.toc {
|
|
656
|
+
border-left: solid 1px $mi-pink;
|
|
657
|
+
|
|
658
|
+
.menu-list {
|
|
659
|
+
padding-left: $bfs *2;
|
|
660
|
+
}
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
.is-small {
|
|
664
|
+
font-size: 80%;
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
.is-less-important {
|
|
668
|
+
opacity: 0.7;
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
.is-hidden {
|
|
672
|
+
display: none;
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
.more-button {
|
|
676
|
+
font-size: $bfs * 1.5 !important;
|
|
677
|
+
display: inline-block;
|
|
678
|
+
margin-left: $bfs /2;
|
|
679
|
+
transition: all 0.5s;
|
|
680
|
+
|
|
681
|
+
&:hover {
|
|
682
|
+
cursor: pointer;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
&.active {
|
|
686
|
+
transform: rotate(180deg);
|
|
687
|
+
}
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
#nomenklatur {
|
|
691
|
+
overflow-x: auto;
|
|
692
|
+
|
|
693
|
+
table {
|
|
694
|
+
max-width: 65rem;
|
|
695
|
+
}
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
@media (max-width: 999px) {
|
|
699
|
+
|
|
700
|
+
html,
|
|
701
|
+
body {
|
|
702
|
+
|
|
703
|
+
/*font-size: 60%;
|
|
704
|
+
line-height: 110%;*/
|
|
705
|
+
.content {
|
|
706
|
+
h1 {
|
|
707
|
+
font-size: $bfs * 1.4;
|
|
708
|
+
font-weight: 500;
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
h2 {
|
|
712
|
+
font-size: $bfs * 1.2;
|
|
713
|
+
font-weight: 500;
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
h3 {
|
|
717
|
+
font-size: $bfs;
|
|
718
|
+
font-weight: 700;
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
h4 {
|
|
722
|
+
font-size: $bfs;
|
|
723
|
+
font-weight: 600;
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
h5 {
|
|
727
|
+
font-size: $bfs;
|
|
728
|
+
font-weight: 600;
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
h6 {
|
|
732
|
+
font-size: $bfs;
|
|
733
|
+
font-weight: 600;
|
|
734
|
+
}
|
|
735
|
+
}
|
|
736
|
+
}
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
@media print {
|
|
740
|
+
|
|
741
|
+
section.hero,
|
|
742
|
+
.is-non-print {
|
|
743
|
+
display: none;
|
|
744
|
+
}
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
@media screen {
|
|
748
|
+
.is-print {
|
|
749
|
+
display: none;
|
|
750
|
+
}
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
// Settled on moving the import of syntax highlighting to the bottom of the CSS
|
|
754
|
+
// ... Otherwise it really bloats up the top of the CSS file and makes it difficult to find the start
|
|
755
|
+
//@import "highlights";
|
|
756
|
+
@import "lib/svg-icons";
|
|
757
|
+
|
|
758
|
+
.highlight {
|
|
759
|
+
background-color: $mi-pink;
|
|
760
|
+
color: #fff;
|
|
761
|
+
border: none;
|
|
762
|
+
box-shadow: none;
|
|
763
|
+
margin: 20px 0;
|
|
764
|
+
overflow: auto;
|
|
765
|
+
padding: 7px 7px 7px 10px;
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
pre code {
|
|
769
|
+
background-color: transparent;
|
|
770
|
+
color: #fff;
|
|
771
|
+
font-family: $family-monospace;
|
|
772
|
+
}
|
|
773
|
+
|
|
774
|
+
.codesnippet{
|
|
775
|
+
figure.highlight{
|
|
776
|
+
text-align: left;
|
|
777
|
+
background-color: $mi-grau;
|
|
778
|
+
color: #000;
|
|
779
|
+
margin: 0;
|
|
780
|
+
padding: 0;
|
|
781
|
+
|
|
782
|
+
code{
|
|
783
|
+
color: #000;
|
|
784
|
+
}
|
|
785
|
+
}
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
|
|
789
|
+
/* Für die fianle Version werden ein paar Angaben nicht gezeigt */
|
|
790
|
+
|
|
791
|
+
.bearbeiten,
|
|
792
|
+
.doc-status {
|
|
793
|
+
display: none;
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
.js-video {
|
|
797
|
+
height: 0;
|
|
798
|
+
padding-top: 25px;
|
|
799
|
+
padding-bottom: 56.5%;
|
|
800
|
+
position: relative;
|
|
801
|
+
overflow: hidden;
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
.js-video.widescreen {
|
|
805
|
+
padding-bottom: 56.34%;
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
.js-video.vimeo {
|
|
809
|
+
padding-top: 0;
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
.js-video embed,
|
|
813
|
+
.js-video iframe,
|
|
814
|
+
.js-video object,
|
|
815
|
+
.js-video video {
|
|
816
|
+
top: 0;
|
|
817
|
+
left: 0;
|
|
818
|
+
width: 100%;
|
|
819
|
+
height: 100%;
|
|
820
|
+
position: absolute;
|
|
821
|
+
}
|