Skip to content

Commit 0168211

Browse files
committedMar 18, 2021
Add top bar referring to FBK homepage to comply with guidelines
1 parent 7f2476d commit 0168211

File tree

7 files changed

+52
-5
lines changed

7 files changed

+52
-5
lines changed
 

‎_includes/hero.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<section class="hero {% if page.hero_height %} {{ page.hero_height }} {% else %} is-medium {% endif %} is-bold is-primary" {% if page.hero_image %} style="background: url('{{ page.hero_image }}') no-repeat center center; background-size: cover;" {% endif %}>
1+
<section class="hero {% if page.hero_height %} {{ page.hero_height }} {% else %} is-medium {% endif %} is-primary" {% if page.hero_image %} style="background: url('{{ page.hero_image }}') no-repeat center center; background-size: cover;" {% endif %}>
22
<div class="hero-body">
33
<div class="container">
44
{% if page.heroImageLeft %}<img src="{{ page.heroImageLeft }}" class="logo" />{% endif %}

‎_includes/parentFBK.html

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<section class="parentFBK">
2+
<div class="header container">
3+
<div class="loghi">
4+
<a href="http://www.fbk.eu" title="FBK">
5+
<img src="/assets/images/logos/FBK_white_horizontal.png" alt="FBK" class="logo">
6+
</a>
7+
<img src="/assets/images/logos/ST_acronym_white.png" alt="ST" class="logo right">
8+
</div>
9+
</div>
10+
</section>

‎_layouts/default.html

+8-3
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,15 @@
99
<html>
1010
{% include head.html %}
1111
<body>
12-
{% include header.html %}
13-
{% unless page.hide_hero %}
14-
{% include hero.html %}
12+
{% unless page.hide_parentFBK %}
13+
{% include parentFBK.html %}
1514
{% endunless %}
15+
<section class="page-top">
16+
{% include header.html %}
17+
{% unless page.hide_hero %}
18+
{% include hero.html %}
19+
{% endunless %}
20+
</section>
1621
{% include callouts.html %}
1722
<section class="section">
1823
<div class="container">

‎assets/css/custom.css

+33-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
max-height: 100px;
134134
}
135135

136-
.hero .logo.right {
136+
.logo.right {
137137
position: absolute;
138138
right: 0px;
139139
left: auto;
@@ -391,4 +391,36 @@ ul.no-bullet {
391391
.tooltip:hover .tooltip-text {
392392
visibility: visible;
393393
opacity: 1;
394+
}
395+
396+
.parentFBK {
397+
background: #2f2f2f;
398+
padding: 5px 0;
399+
}
400+
401+
.parentFBK img {
402+
max-height: 25px;
403+
vertical-align: middle;
404+
}
405+
406+
section.page-top {
407+
background-image: linear-gradient(141deg, #006081 0%, #0068b4 71%, #0054ce 100%);
408+
}
409+
410+
.navbar.is-primary {
411+
border-bottom: 2px solid #00599b;
412+
}
413+
414+
@media screen and (max-width: 1023px) {
415+
.parentFBK img {
416+
max-height: 35px;
417+
}
418+
419+
.parentFBK a:first-of-type {
420+
padding: 0.5rem 0.75rem;
421+
}
422+
423+
.parentFBK img:last-of-type {
424+
right: 0.75rem;
425+
}
394426
}
13.6 KB
Loading
56.5 KB
Loading

‎assets/images/logos/ST_white.png

77.8 KB
Loading

0 commit comments

Comments
 (0)
Please sign in to comment.