Skip to content
Snippets Groups Projects
Commit 3c6b081c authored by Olivier Goulet's avatar Olivier Goulet
Browse files

feat: add another graphic

parent 1ff944dd
No related branches found
No related tags found
No related merge requests found
......@@ -51,6 +51,7 @@ page_css_file: "/public/css/neptune-preview.css"
</div>
<section class="executive-message-section row bg-secondary dark padding-bottom-60">
<img class="executive-message-section-decor" src="../images/graphics/waves-3.svg" alt="">
<div class="container">
<div class="executive-message-section-intro">
<img src="../images/intro.png" alt="">
......
This diff is collapsed.
This diff is collapsed.
......@@ -775,9 +775,25 @@ main,
// Annual Report
.executive-message-section {
position: relative;
padding-top: 6rem;
padding-bottom: 6rem;
background: linear-gradient(@secondary-800, @secondary-500);
overflow: hidden;
&-decor {
position: absolute;
top: 30%;
left: -5%;
width: 110%;
height: auto;
z-index: 0;
}
& > .container {
position: relative;
z-index: 2;
}
@media (min-width: @screen-sm-min) {
padding-top: 0;
......@@ -803,6 +819,23 @@ main,
}
.page-2025-annual-report {
.key-initiatives-section {
position: relative;
&::before {
// Need a pseudoelement to give background opacity
content: '';
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
background: url(./images/graphics/waves-alt.svg);
background-repeat: no-repeat;
background-size: cover;
opacity: 0.3;
}
}
.bg-key-initiative {
background: linear-gradient(@white, @secondary-50);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment