Skip to content
This repository has been archived by the owner on Jan 24, 2023. It is now read-only.

Sponsors #17

Merged
merged 1 commit into from
Oct 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions assets/css/hero-section.css
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
}

.container-fluid .col-md-12 {
margin-right: 0px;
padding-right: 0px;
margin-right: 0;
padding-right: 0;
}
}
28 changes: 24 additions & 4 deletions assets/css/sponsorship-section.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,30 @@
/* border-radius: 15px;*/
/*}*/

#sponsors img {
width: 465px;
}
/*#sponsors img {*/
/* width: 465px;*/
/*}*/

#sponsors .image-container {
height: 330px;
height: 200px;
}

#sponsors .image-restrictions {
max-height: 330px;
max-width: 275px;
position: relative;
top: 50%;
transform: translateY(-50%);
}

@media (max-width: 975px) {
#sponsors .image-restrictions {
max-width: 225px;
}
}

@media (max-width: 767px) {
#sponsors .image-restrictions {
max-width: 150px;
}
}
Binary file modified assets/images/sponsors/.DS_Store
Binary file not shown.
Binary file removed assets/images/sponsors/Google Maps.pdf
Binary file not shown.
Binary file removed assets/images/sponsors/HEB.png
Binary file not shown.
Binary file added assets/images/sponsors/google-cloud.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/images/sponsors/google.png
Binary file not shown.
Binary file added assets/images/sponsors/jpmorgan-chase-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/images/sponsors/jpmorgan-chase.jpg
Binary file not shown.
Binary file removed assets/images/sponsors/jpmorgan-chase.png
Binary file not shown.
3 changes: 2 additions & 1 deletion assets/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
autoplay: true,
autoplaySpeed: 1500,
arrows: false,
pauseOnHover: false,
initialSlide: randomFirstSlide(),
responsive: [
{
Expand All @@ -113,7 +114,7 @@
breakpoint: 767,
settings: {
slidesToShow: 2,
slidesToScroll: 2,
slidesToScroll: 1,
}
}
]
Expand Down
26 changes: 19 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -300,14 +300,26 @@ <h2>Meet our <em>Sponsors</em></h2>
<p>Without them, events like this would not be possible!</p> <!-- need to increase this font size -->
</div>
</div>
<div class="offset-lg-1 col-lg-10 col-md-12 col-sm-12 mobile-bottom-fix-big align-items-center" data-scroll-reveal="enter left move 30px over 0.6s after 0.4s">
<div class="offset-lg-1 col-lg-10 col-md-12 col-sm-12 mobile-bottom-fix-big" data-scroll-reveal="enter left move 30px over 0.6s after 0.4s">
<div class="row sponsor-carousel">
<img src="assets/images/sponsors/google.png" alt="Google logo" style="margin-top: 20px;">
<img src="assets/images/sponsors/paycom.png" alt="Paycom logo">
<img src="assets/images/sponsors/H-E-B.png" alt="HEB logo" style="margin-top: 115px;">
<img src="assets/images/sponsors/matrix.png" alt="MATRIX AI logo">
<img src="assets/images/sponsors/valero.png" alt="Valero logo" style="margin-top: 65px;">
<img src="assets/images/sponsors/jpmorgan-chase.png" alt="JP Morgan Chase logo" style="margin-top: 20px;">
<div style="padding: 5px" class="col image-container">
<img src="assets/images/sponsors/google-cloud.png" alt="Google logo" class="mx-auto d-block image-restrictions"><!--style="margin-top: 155px;">-->
</div>
<div style="padding: 5px" class="image-container">
<img src="assets/images/sponsors/paycom.png" alt="Paycom logo" class="mx-auto d-block image-restrictions">
</div>
<div style="padding: 5px" class="image-container">
<img src="assets/images/sponsors/H-E-B.png" alt="HEB logo" class="mx-auto d-block image-restrictions"><!-- style="margin-top: 115px;">-->
</div>
<div style="padding: 5px" class="image-container">
<img src="assets/images/sponsors/matrix.png" alt="MATRIX AI logo" class="mx-auto d-block image-restrictions">
</div>
<div style="padding: 5px" class="image-container">
<img src="assets/images/sponsors/valero.png" alt="Valero logo" class="mx-auto d-block image-restrictions"><!-- style="margin-top: 65px;">-->
</div>
<div style="padding: 5px" class="image-container">
<img src="assets/images/sponsors/jpmorgan-chase-logo.png" alt="JP Morgan Chase logo" class="mx-auto d-block image-restrictions"><!-- style="margin-top: 90px;">-->
</div>
</div>
</div>
</div>
Expand Down