Skip to content

Commit

Permalink
docs: add conf banner (#1605)
Browse files Browse the repository at this point in the history
  • Loading branch information
droshev authored May 22, 2021
1 parent ffd3a36 commit 4618c55
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 1 deletion.
34 changes: 33 additions & 1 deletion docs/_sass/_landingPage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -256,9 +256,12 @@ $learn-section-side-margin: 0 2rem;
}
}

.intro-section__banner{
width: 100%;
}

.intro-section {
padding: 100px 120px;
background-image: url("../images/land-page-assets/hero_background.jpg");
background-repeat: no-repeat;
background-size: cover;

Expand All @@ -277,6 +280,16 @@ $learn-section-side-margin: 0 2rem;

@include text();
}

&__conf {
width: 100%;

&--mobile{
width: 100%;

}
}

}

.libraries-section {
Expand Down Expand Up @@ -939,6 +952,25 @@ $learn-section-side-margin: 0 2rem;
}
}

@media (max-width: 768px){
.intro-section__conf{
display: none;
}
.intro-section__conf--mobile{
display: block;
}
}

@media (min-width: 769px){
.intro-section__conf{
display: block;
}
.intro-section__conf--mobile{
display: none;
}

}

@media (min-width: 768px) {
.about-section {
&__item {
Expand Down
Binary file added docs/images/land-page-assets/con_banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ <h2 class="vh">Main Navigation</h2>

</nav>
</div>

<div class="intro-section__banner" id="intro-conf">
<img class="intro-section__conf" src="/images/land-page-assets/con_banner.png" alt="Fundamental Lib Conference Banner">
<img class="intro-section__conf--mobile" src="/images/land-page-assets/con_banner_mobile.png" alt="Fundamental Lib Conference Mobile Banner">
</div>

<div class="intro-section" id="intro-section">
<div class="intro-section__container">
Expand Down

0 comments on commit 4618c55

Please sign in to comment.