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

/product: fixed overflowing img #4422

Merged
merged 2 commits into from
May 16, 2019
Merged
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
39 changes: 22 additions & 17 deletions app/retail/templates/products.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,26 +87,31 @@
</div>
{% endfor %}

<div class="intro container-fluid ">
<div class="row py-3 py-md-0 justify-content-center">
<div class="d-flex flex-column align-items-center ">
<span class="product-heading text-center pt-3 my-4">
<div class="intro container-fluid">
<div class="row py-3 py-md-0">
<div class="col-12 text-center">
<h2 class="text-center pt-3 my-4">
{% trans "Optimizing the OSS Lifecycle" %}
</span>
<span class="product-desc text-center my-2">
</h2>
<p class="font-title text-center my-2">
{% trans "Each of our products helps optimize the OSS Lifecycle so that things can look more like this." %}
</span>
<img class="img-fluid my-4 px-3" src="{% static 'v2/images/products/oss_cycle_with_gitcoin.svg' %}">
<span class="product-desc text-center my-2">
</p>
</div>
<div class="col-12 offset-md-3 col-md-6">
<img class="img-fluid my-4" width="800" src="{% static 'v2/images/products/oss_cycle_with_gitcoin.svg' %}">
</div>
<div class="col-12 text-center mb-5">
<p class="product-desc text-center my-2">
{% trans "Interested in working with us?" %}
</span>
<a href="{% url 'jobs' %}" class="button button-bounties text-center display-5 ">
{% trans "Check our Jobs Page" %}
</a>
<BR>
<a href="{% url 'mission' %}" class="button button-bounties text-center display-5 ">
{% trans "About the mission" %}
</a>
</p>
<p>
<a href="{% url 'jobs' %}" class="btn btn-gc-blue py-3 shadow-none font-weight-bold text-center m-2">
{% trans "Check our Jobs Page" %}
</a>
<a href="{% url 'mission' %}" class="btn btn-gc-blue py-3 shadow-none font-weight-bold text-center m-2">
{% trans "About the mission" %}
</a>
</p>
</div>
</div>
</div>
Expand Down