jekyll-lux-covid-theme 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,444 @@
1
+ html {
2
+ overflow: -moz-scrollbars-vertical;
3
+ overflow-y: scroll;
4
+ }
5
+
6
+ /**
7
+ * Site header
8
+ */
9
+ .site-header {
10
+ min-height: $spacing-unit * 1.865;
11
+ height: $banner-height;
12
+ // Positioning context for the mobile navigation icon
13
+ position: relative;
14
+ margin-top: 30px;
15
+
16
+ @media print {
17
+ margin-top: 0px;
18
+ display: none;
19
+ }
20
+ }
21
+
22
+
23
+ .content-wrapper {
24
+ flex: 1 0 auto;
25
+ }
26
+
27
+
28
+ /**
29
+ * SVG BANNER
30
+ */
31
+
32
+ .site-title {
33
+ @include relative-font-size(1.625);
34
+ font-weight: 300;
35
+ line-height: $base-line-height * $base-font-size * 2.25;
36
+ letter-spacing: -1px;
37
+ margin-bottom: 0;
38
+ float: left;
39
+
40
+ &,
41
+ &:visited {
42
+ color: $grey-color-dark;
43
+ }
44
+ }
45
+
46
+ .site-nav {
47
+ margin-top: 10px;
48
+ float: left;
49
+ margin-left: 50px;
50
+ line-height: $base-line-height * $base-font-size * 2.25;
51
+
52
+ .page-tabs {
53
+ padding-right: 50px;
54
+ }
55
+
56
+ .nav-trigger {
57
+ display: none;
58
+ }
59
+
60
+ .menu-icon {
61
+ display: none;
62
+ }
63
+
64
+ a.page-link2.active {
65
+ color: #222;
66
+ }
67
+
68
+ .page-link:hover, .page-link2:hover {
69
+ text-decoration: none;
70
+ }
71
+
72
+ .page-link:hover:after {
73
+ border-color: #ed1c24;
74
+ }
75
+
76
+ @media (min-width: 640px) {
77
+ .page-link:after {
78
+ content: " ";
79
+ width: 22px;
80
+ border-bottom: solid 3px #cbcfda;
81
+ position: absolute;
82
+ top: 30px;
83
+ left: 10px;
84
+ float: left;
85
+ }
86
+ .page-link2.active {
87
+ border-bottom: 3px solid #808080;
88
+ }
89
+ }
90
+
91
+ @media (max-width: 640px) {
92
+ .page-link.active:before, .page-link2.active:before {
93
+ content: "\2023";
94
+ margin-right: 10px;
95
+ position: absolute;
96
+ left: 20px;
97
+ color: rgb(23, 168, 225);
98
+ }
99
+ .page-link.active, .page-link2.active {
100
+ font-weight: 600;
101
+ color: rgb(23, 168, 225);
102
+ }
103
+ .page-link, .page-link2 {
104
+ color: #222;
105
+ }
106
+ }
107
+
108
+ @media (min-width: 640px) {
109
+ .page-link2:hover {
110
+ border-bottom: 3px solid #808080;
111
+ }
112
+
113
+ .page-link:hover, .page-link2:hover {
114
+ color: #ed1c24 !important;
115
+ &:not(.active) { // padding-top: 20px;
116
+ }
117
+ }
118
+
119
+ .page-link2 {
120
+ position: relative;
121
+
122
+ // New version (full underline)
123
+ min-width: 40px;
124
+ margin: 0 15px 0 8px;
125
+ padding: 0 2px 0 2px;
126
+ border-bottom: 3px solid #e0e0e0;
127
+
128
+ float: left;
129
+
130
+ -moz-transition: padding 0.8s ease;
131
+ -webkit-transition: padding 0.8s ease;
132
+ -o-transition: padding 0.8s ease;
133
+ transition: padding 0.8s ease;
134
+
135
+ -moz-transition: border 0.3s ease;
136
+ -webkit-transition: border 0.3s ease;
137
+ -o-transition: border 0.3s ease;
138
+ transition: border 0.3s ease;
139
+
140
+ z-index: 8;
141
+ }
142
+
143
+ .page-link {
144
+ position: relative;
145
+
146
+ min-width: 60px;
147
+ margin: 0 0 0 -1px;
148
+ padding: 2px 10px 4px 9px;
149
+ margin-bottom: 5px;
150
+
151
+ float: left;
152
+
153
+ -moz-transition: padding 0.8s ease;
154
+ -webkit-transition: padding 0.8s ease;
155
+ -o-transition: padding 0.8s ease;
156
+ transition: padding 0.8s ease;
157
+
158
+ -moz-transition: border 0.3s ease;
159
+ -webkit-transition: border 0.3s ease;
160
+ -o-transition: border 0.3s ease;
161
+ transition: border 0.3s ease;
162
+
163
+ z-index: 8;
164
+ }
165
+
166
+ .active:after {
167
+ border-color: $brand-color;
168
+ }
169
+ }
170
+
171
+ .page-link, .page-link2 {
172
+ // color: $text-color;
173
+ line-height: $base-line-height;
174
+ font-weight: 600;
175
+ text-align: left;
176
+
177
+ // Gaps between nav items, but not on the last one
178
+ &:not(:last-child) {
179
+ // margin-right: -6px;
180
+ }
181
+ }
182
+
183
+ @include media-query($on-palm) {
184
+ position: absolute;
185
+ top: -25px;
186
+ right: $spacing-unit / 2;
187
+ background-color: $background-color;
188
+ border: 1px solid $grey-color-light;
189
+ border-radius: 5px;
190
+ text-align: right;
191
+ max-width: calc(100% - 30px);
192
+
193
+ label[for="nav-trigger"] {
194
+ display: block;
195
+ float: right;
196
+ width: 36px;
197
+ height: 36px;
198
+ z-index: 2;
199
+ cursor: pointer;
200
+ }
201
+
202
+ .menu-icon {
203
+ display: block;
204
+ float: right;
205
+ width: 36px;
206
+ height: 26px;
207
+ line-height: 0;
208
+ padding-top: 10px;
209
+ text-align: center;
210
+
211
+ > svg path {
212
+ fill: $grey-color-dark;
213
+ }
214
+ }
215
+
216
+ input ~ .trigger {
217
+ clear: both;
218
+ display: none;
219
+ }
220
+
221
+ input:checked ~ div {
222
+ width: 100%;
223
+ }
224
+
225
+ input:checked ~ .trigger {
226
+ display: block;
227
+ padding-bottom: 15px;
228
+ padding-right: 15px;
229
+ width: calc(100% - 15px);
230
+ }
231
+
232
+ .page-link, .page-link2 {
233
+ display: block;
234
+ padding: 7px 10px;
235
+
236
+ &:not(:last-child) {
237
+ margin-right: 0;
238
+ border-bottom: solid 1px #eceaea;
239
+ }
240
+ margin-left: 20px;
241
+ }
242
+ }
243
+ }
244
+
245
+
246
+
247
+ /**
248
+ * Site footer
249
+ */
250
+ .site-footer {
251
+ padding: $spacing-unit 0;
252
+ bottom: 0;
253
+ display:flex;
254
+ justify-content:center;
255
+ align-items:center;
256
+ width:100%;
257
+ margin-top: -$footer-height + $spacing-unit;
258
+ flex-shrink: 0;
259
+ height: $footer-height;
260
+ line-height: 15px;
261
+
262
+ @media print {
263
+ display: none;
264
+ }
265
+ }
266
+
267
+ .footer-wrapper {
268
+ width: 100%;
269
+ padding: $spacing-unit 0;
270
+ border-top: 1px solid $grey-color-light;
271
+ }
272
+
273
+ .footer-heading {
274
+ @include relative-font-size(1.125);
275
+ margin-bottom: $spacing-unit / 2;
276
+ }
277
+
278
+ .contact-list,
279
+ .social-media-list {
280
+ list-style: none;
281
+ margin-left: 0;
282
+ }
283
+
284
+ .social-media-list {
285
+ margin: 0;
286
+ padding: 0;
287
+ list-style-type: none;
288
+ text-align: center;
289
+
290
+ li {
291
+ display: inline;
292
+ a {
293
+ text-decoration: none;
294
+ padding: .2em 1em;
295
+ }
296
+ }
297
+ }
298
+
299
+ .footer-cp {
300
+ @include relative-font-size(0.8);
301
+ color: $grey-color;
302
+ margin-left: -$spacing-unit / 2;
303
+ @extend %clearfix;
304
+ position: relative;
305
+ text-align: center;
306
+ }
307
+
308
+
309
+ @include media-query($on-palm) {
310
+ .footer-col {
311
+ float: none;
312
+ width: -webkit-calc(100% - (#{$spacing-unit} / 2));
313
+ width: calc(100% - (#{$spacing-unit} / 2));
314
+ }
315
+ }
316
+
317
+ .site-footer-share {
318
+ margin-bottom: 4px;
319
+ }
320
+
321
+
322
+
323
+ /**
324
+ * Page content
325
+ */
326
+ .page-content {
327
+ margin-top: 30px;
328
+ margin-left: 5%;
329
+ @include media-query($on-palm) {
330
+ margin-top: 5px;
331
+ padding-top: 0px;
332
+ margin-left: 1%;
333
+ }
334
+ padding: $spacing-unit 0;
335
+ padding-bottom: $footer-height;
336
+
337
+ @media print {
338
+ margin-top: 2px;
339
+ margin-left: unset;
340
+ }
341
+ }
342
+
343
+ .page-heading {
344
+ @include relative-font-size(2);
345
+ }
346
+
347
+ .post-list-heading {
348
+ @include relative-font-size(1.75);
349
+ }
350
+
351
+ .post-list {
352
+ margin-left: 0;
353
+ list-style: none;
354
+
355
+ > li {
356
+ margin-bottom: $spacing-unit;
357
+ }
358
+ }
359
+
360
+ .post-meta {
361
+ font-size: $small-font-size;
362
+ color: $grey-color;
363
+ }
364
+
365
+ .post-link {
366
+ display: block;
367
+ @include relative-font-size(1.5);
368
+ }
369
+
370
+
371
+
372
+ /**
373
+ * Posts
374
+ */
375
+ .post-header {
376
+ margin-bottom: $spacing-unit;
377
+ }
378
+
379
+ .post-title {
380
+ @include relative-font-size(2.625);
381
+ letter-spacing: -1px;
382
+ line-height: 1;
383
+
384
+ @include media-query($on-laptop) {
385
+ @include relative-font-size(2.25);
386
+ }
387
+ }
388
+
389
+ .post-content {
390
+ margin-bottom: $spacing-unit;
391
+
392
+ h2 {
393
+ @include relative-font-size(2);
394
+
395
+ @include media-query($on-laptop) {
396
+ @include relative-font-size(1.75);
397
+ }
398
+ }
399
+
400
+ h3 {
401
+ @include relative-font-size(1.625);
402
+
403
+ @include media-query($on-laptop) {
404
+ @include relative-font-size(1.375);
405
+ }
406
+ }
407
+
408
+ h4 {
409
+ @include relative-font-size(1.25);
410
+
411
+ @include media-query($on-laptop) {
412
+ @include relative-font-size(1.125);
413
+ }
414
+ }
415
+ }
416
+
417
+ .pager-active {
418
+ background-color: #cbdce9;
419
+ }
420
+
421
+
422
+ .center-image {
423
+ margin: 0 auto;
424
+ display: block;
425
+ }
426
+
427
+ .print-button {
428
+ @media print {
429
+ display: none;
430
+ }
431
+
432
+ float: right;
433
+ color: #252525;
434
+ margin-right: 40px;
435
+ margin-top: 14px;
436
+
437
+ @include media-query($on-palm) {
438
+ display: none;
439
+ }
440
+
441
+ span {
442
+ padding-left: 5px;
443
+ }
444
+ }
@@ -0,0 +1,192 @@
1
+ .custom-header {
2
+ min-width: 375px;
3
+ margin-top: 3px;
4
+ min-height: 100px;
5
+ }
6
+
7
+ .rss-subscribe {
8
+ float: right;
9
+ font-size: smaller;
10
+ height: 50px;
11
+ }
12
+
13
+ div.alert {
14
+ padding: .75rem 1.25rem;
15
+ border: 1px solid transparent;
16
+ border-radius: 3px;
17
+ margin: 10px;
18
+ font-weight: 300;
19
+ }
20
+
21
+ div.alert > h3 {
22
+ font-weight: 600;
23
+ margin-bottom: 3px
24
+ }
25
+
26
+ div.alert.warning {
27
+ border-color: #feedbb;
28
+ background-color: #fef5cf;
29
+ color: #846102;
30
+ }
31
+
32
+ div.alert.info {
33
+ border-color: #baeeff;
34
+ background-color: #c3e5ff;
35
+ color: #045689;
36
+ }
37
+
38
+ div.alert.success {
39
+ border-color: #eeffff;
40
+ background-color: #d5eadb;
41
+ color: #048956;
42
+ }
43
+
44
+ div.alert.danger {
45
+ border-color: #f6c6cf;
46
+ background-color: #f8ddd3;
47
+ color: #721a1c;
48
+ }
49
+
50
+ div.alert.primary {
51
+ border-color: #b9dbfe;
52
+ background-color: #cde6fe;
53
+ color: #014184;
54
+ }
55
+
56
+ // Normal (desktop) ========================================================
57
+ .img-research {
58
+ bottom: -2px;
59
+ margin-left: 62px;
60
+ padding: 20px 27px 0px 27px;
61
+ position: relative;
62
+ height: 66px;
63
+ margin-right: 250px;
64
+ }
65
+
66
+ .img-banner {
67
+ bottom: -20px;
68
+ position: relative;
69
+ }
70
+
71
+ .img-banner-main {
72
+ margin-left: 2%;
73
+ height: 30px;
74
+ }
75
+
76
+ .img-banner-motto {
77
+ width: 180px;
78
+ margin-left: 10px;
79
+ }
80
+
81
+ .social-media-list {
82
+ float: right;
83
+ padding-right: 2%;
84
+ position: relative;
85
+ }
86
+
87
+ .svg-icon {
88
+ margin: 0px;
89
+ padding: 0px;
90
+ }
91
+
92
+ // Big screen ====================================================================================
93
+
94
+ @media(max-width: 1050px) {
95
+ .img-research {
96
+ margin-right: 13%;
97
+ }
98
+
99
+ .img-logo-big {
100
+ display: none;
101
+ }
102
+ }
103
+
104
+ // Normal screen =================================================================================
105
+ @media (max-width: 900px) {
106
+ .img-research {
107
+ margin-right: 0%;
108
+ }
109
+
110
+ .img-banner-main {
111
+ height: 23px
112
+ }
113
+
114
+ .img-banner-motto {
115
+ width: 130px;
116
+ }
117
+ }
118
+
119
+ // Small-screen ==================================================================================
120
+
121
+ @media (max-width: 700px) {
122
+ .img-banner-main {
123
+ display: none;
124
+ }
125
+
126
+ .img-banner-motto {
127
+ display: none;
128
+ }
129
+ }
130
+
131
+ @media (max-width: 640px) {
132
+ .img-banner-main {
133
+ margin-left: 3%;
134
+ }
135
+
136
+ .img-research {
137
+ padding: 0px;
138
+ height: 50px;
139
+ margin-right: 20px;
140
+ }
141
+
142
+ .img-banner {
143
+ bottom: -10px;
144
+ }
145
+
146
+ .img-banner-main {
147
+ display: unset;
148
+ }
149
+
150
+ .img-banner-motto {
151
+ display: none;
152
+ }
153
+
154
+ }
155
+
156
+ // Ultra-small screen ==================================================================================
157
+
158
+ @media (max-width: 500px) {
159
+ .img-banner-main {
160
+ margin-left: 9px;
161
+ bottom: -8px;
162
+ max-width: 160px;
163
+ }
164
+
165
+ .img-research {
166
+ padding: 0px;
167
+ height: 40px;
168
+ margin-left: 10px;
169
+ margin-right: 0px;
170
+ }
171
+
172
+ .img-uni-lu {
173
+ margin-left: 20px;
174
+ width: 40px;
175
+ height: auto;
176
+ padding: 12px 17px 0px 16px;
177
+ }
178
+
179
+ .img-lcsb {
180
+ display: none;
181
+ bottom: -6px;
182
+ margin-right: 10%;
183
+ position: relative;
184
+ width: 80px;
185
+ }
186
+
187
+ .social-media-list {
188
+ text-align: center;
189
+ position:relative;
190
+ right:33%;
191
+ }
192
+ }
@@ -0,0 +1,38 @@
1
+ h3.result {
2
+ font-size: large;
3
+ }
4
+
5
+ #search_query {
6
+ border: solid 2px #eee;
7
+ padding: 8px;
8
+ height: 20px;
9
+ font-size: 20px;
10
+ width: 500px;
11
+ min-width: 400px;
12
+ }
13
+
14
+ button.search[type=submit] {
15
+ border: solid 2px #eee;
16
+ padding: 1px;
17
+ height: 35px;
18
+ width: 150px;
19
+ font-size: 20px;
20
+ color: #4c4c4c;
21
+ background: #efefef;
22
+ border-radius: 8px;
23
+ margin-top: 3px;
24
+ }
25
+
26
+ #search_header {
27
+ margin-top: 50px;
28
+ display: none
29
+ }
30
+
31
+ #search_results_table {
32
+ margin-top: 20px;
33
+ width: 100%;
34
+ }
35
+
36
+ #search_results_placeholder_td {
37
+ border: none;
38
+ }