jekyll-lux-covid-theme 0.0.17 → 0.0.20
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/footer.html +8 -8
- data/_sass/minima/_footer.scss +21 -1
- data/_sass/minima/_layout.scss +13 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f27a14612b96d22fd7ab21483baf689e71925f2820502378d3b464e2bc20e15e
|
4
|
+
data.tar.gz: 252ce2d990163f96ee048242a22b7adce84147295fb6ae9d77ba7242fd51aedb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '08f87a90b3bffa035074b47745af2a8bdef2b27cb0b7af2bef9f5eba0ad12a9346ff94b2cdec013e056e9a2a83b8aaabd0612e9748dc2469b287ced513a16bf0'
|
7
|
+
data.tar.gz: 7304d89012e2c81745ba1cc97e15ea9fc2a95fb6890e4ed9eafecc4aa0a5975f7fb410ce880d69f07ef929b25166496fa2bc42f4a2631e8bd0cb881c5e9bd280
|
data/_includes/footer.html
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
<footer class="partners">
|
2
2
|
<div class="partners-container">
|
3
|
-
<img class="img-banner-logos mesr" alt="MESR" src="{{ '/assets/logos/gov_mesr.svg' | relative_url }}"
|
4
|
-
<img class="img-banner-logos fnr" alt="FNR" src="{{ '/assets/logos/fnr.svg' | relative_url }}"
|
5
|
-
<img class="img-banner-logos unilu" alt="University of Luxembourg" src="{{ '/assets/logos/unilu.svg' | relative_url }}"
|
6
|
-
<img class="img-banner-logos list" alt="LIST" src="{{ '/assets/logos/LIST.png' | relative_url }}"
|
7
|
-
<img class="img-banner-logos liser" alt="LISER" src="{{ '/assets/logos/LISER.jpg' | relative_url }}"
|
8
|
-
<img class="img-banner-logos lih" alt="LIH" src="{{ '/assets/logos/lih.jpg' | relative_url }}"
|
3
|
+
<a href="http://www.mesr.public.lu/"><img class="img-banner-logos mesr" alt="MESR" src="{{ '/assets/logos/gov_mesr.svg' | relative_url }}" height="40px"/></a>
|
4
|
+
<a href="http://www.fnr.lu/"><img class="img-banner-logos fnr" alt="FNR" src="{{ '/assets/logos/fnr.svg' | relative_url }}" height="40px"/></a>
|
5
|
+
<a href="http://www.uni.lu/"><img class="img-banner-logos unilu" alt="University of Luxembourg" src="{{ '/assets/logos/unilu.svg' | relative_url }}" height="60px"/></a>
|
6
|
+
<a href="http://www.list.lu/"><img class="img-banner-logos list" alt="LIST" src="{{ '/assets/logos/LIST.png' | relative_url }}" /></a>
|
7
|
+
<a href="http://www.liser.lu/"><img class="img-banner-logos liser" alt="LISER" src="{{ '/assets/logos/LISER.jpg' | relative_url }}" /></a>
|
8
|
+
<a href="http://www.lih.lu/"><img class="img-banner-logos lih" alt="LIH" src="{{ '/assets/logos/lih.jpg' | relative_url }}" /></a>
|
9
9
|
</div>
|
10
10
|
</footer>
|
11
11
|
|
@@ -27,8 +27,8 @@
|
|
27
27
|
<div class="powered_by">
|
28
28
|
<ul>
|
29
29
|
<li>Powered by:</li>
|
30
|
-
<li><img class="mini-logo" src="{{ 'assets/logos/lcsb.svg' | relative_url }}" /></li>
|
31
|
-
<li><img class="mini-logo" src="{{ 'assets/logos/elixirlu.svg' | relative_url }}" /></li>
|
30
|
+
<li><a href="http://www.lcsb.lu/"><img class="mini-logo" src="{{ 'assets/logos/lcsb.svg' | relative_url }}" /></a></li>
|
31
|
+
<li><a href="http://www.elixir-luxembourg.org/"><img class="mini-logo" src="{{ 'assets/logos/elixirlu.svg' | relative_url }}" /></a></li>
|
32
32
|
</ul>
|
33
33
|
</div>
|
34
34
|
</p>
|
data/_sass/minima/_footer.scss
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
// =====
|
1
|
+
// ===== PARTNERS ==================================
|
2
2
|
|
3
3
|
footer.partners {
|
4
4
|
border-top: 1px solid #f1f1f1;
|
@@ -11,6 +11,10 @@ footer.partners {
|
|
11
11
|
flex-wrap: wrap;
|
12
12
|
align-content: space-evenly;
|
13
13
|
justify-content: space-evenly;
|
14
|
+
padding-top: 10px;
|
15
|
+
@media screen and (max-width: 900px) {
|
16
|
+
padding-bottom: 42px;
|
17
|
+
}
|
14
18
|
@media screen and (max-width: 700px) {
|
15
19
|
padding-bottom: 30px;
|
16
20
|
}
|
@@ -19,6 +23,22 @@ footer.partners {
|
|
19
23
|
}
|
20
24
|
}
|
21
25
|
|
26
|
+
.unilu {
|
27
|
+
max-height: 60px;
|
28
|
+
max-width: 60px;
|
29
|
+
margin-top: unset;
|
30
|
+
margin-right: unset;
|
31
|
+
margin-bottom: unset;
|
32
|
+
}
|
33
|
+
|
34
|
+
.logos-align{
|
35
|
+
width: 90%;
|
36
|
+
text-align:center;
|
37
|
+
margin-left: 5%;
|
38
|
+
}
|
39
|
+
|
40
|
+
// ===== FOOTER ==================================
|
41
|
+
|
22
42
|
$logos_width: 140px !default;
|
23
43
|
$logos_height: 40px !default;
|
24
44
|
|
data/_sass/minima/_layout.scss
CHANGED
@@ -472,4 +472,16 @@ html {
|
|
472
472
|
ul li {
|
473
473
|
display: inline;
|
474
474
|
}
|
475
|
-
}
|
475
|
+
}
|
476
|
+
|
477
|
+
// style for home
|
478
|
+
@media screen and (min-width: 1100px) {
|
479
|
+
.flexable {
|
480
|
+
display: flex;
|
481
|
+
}
|
482
|
+
|
483
|
+
.flex-left {
|
484
|
+
min-width: 700px;
|
485
|
+
max-width: 700px;
|
486
|
+
}
|
487
|
+
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-lux-covid-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.20
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- jaceklebioda_lux
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-04-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|