Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sponsors added #808

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
38 changes: 38 additions & 0 deletions docs/source/_static/css/sponsors.css
@@ -0,0 +1,38 @@
.sponsors-wrapper {
margin: 50px 0;
width: 100%;
}

.sponsors-title {
display: flex;
justify-content: center;
width: 100%;
margin-bottom: 20px;

letter-spacing: 1.5px;
font-size: 27px;
font-weight: bold;
}

.sponsors {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}

@media (max-width: 767px) {
.sponsors {
flex-direction: column;
}
}

.sponsors-logo {
width: 220px;
height: 200px;

padding: 0 10px;

display: flex;
align-items: center;
}
Binary file added docs/source/_static/images/sponsors/gsoc.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/source/_static/images/sponsors/iu.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/source/_static/images/sponsors/luddy.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 17 additions & 6 deletions docs/source/_templates/home.html
Expand Up @@ -18,6 +18,7 @@

<link rel="stylesheet" href="_static/css/util.css" />
<link rel="stylesheet" href="_static/css/main.css" />
<link rel="stylesheet" href="_static/css/sponsors.css" />
<link rel="stylesheet" href="_static/css/navbar.css" />

<link rel="stylesheet" href="_static/vendor/vars.css" />
Expand Down Expand Up @@ -557,14 +558,24 @@ <h3 class="h-card__title">Mathematics</h3>





<div id="backtotop"><a href="#" id="backtotop-color"></a></div>





<section class="sponsors-wrapper">
<h3 class="sponsors-title">
Our Sponsors
</h3>
<div class="container sponsors">
<div class="sponsors-logo">
<img src="_static/images/sponsors/luddy.jpg" alt="Luddy">
</div>
<div class="sponsors-logo">
<img src="_static/images/sponsors/gsoc.jpg" alt="GSoC">
</div>
<div class="sponsors-logo">
<img src="_static/images/sponsors/iu.jpg" alt="IU">
</div>
</div>
</section>

<footer id="footer" class="footer">
<div class="container">
Expand Down