Skip to content

Commit 4618c55

Browse files
authored
docs: add conf banner (#1605)
1 parent ffd3a36 commit 4618c55

4 files changed

Lines changed: 38 additions & 1 deletion

File tree

docs/_sass/_landingPage.scss

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,9 +256,12 @@ $learn-section-side-margin: 0 2rem;
256256
}
257257
}
258258

259+
.intro-section__banner{
260+
width: 100%;
261+
}
262+
259263
.intro-section {
260264
padding: 100px 120px;
261-
background-image: url("../images/land-page-assets/hero_background.jpg");
262265
background-repeat: no-repeat;
263266
background-size: cover;
264267

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

278281
@include text();
279282
}
283+
284+
&__conf {
285+
width: 100%;
286+
287+
&--mobile{
288+
width: 100%;
289+
290+
}
291+
}
292+
280293
}
281294

282295
.libraries-section {
@@ -939,6 +952,25 @@ $learn-section-side-margin: 0 2rem;
939952
}
940953
}
941954

955+
@media (max-width: 768px){
956+
.intro-section__conf{
957+
display: none;
958+
}
959+
.intro-section__conf--mobile{
960+
display: block;
961+
}
962+
}
963+
964+
@media (min-width: 769px){
965+
.intro-section__conf{
966+
display: block;
967+
}
968+
.intro-section__conf--mobile{
969+
display: none;
970+
}
971+
972+
}
973+
942974
@media (min-width: 768px) {
943975
.about-section {
944976
&__item {
182 KB
Loading
240 KB
Loading

docs/index.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@ <h2 class="vh">Main Navigation</h2>
4242

4343
</nav>
4444
</div>
45+
46+
<div class="intro-section__banner" id="intro-conf">
47+
<img class="intro-section__conf" src="/images/land-page-assets/con_banner.png" alt="Fundamental Lib Conference Banner">
48+
<img class="intro-section__conf--mobile" src="/images/land-page-assets/con_banner_mobile.png" alt="Fundamental Lib Conference Mobile Banner">
49+
</div>
4550

4651
<div class="intro-section" id="intro-section">
4752
<div class="intro-section__container">

0 commit comments

Comments
 (0)