Skip to content

Fixed features icon positioning, added alt text #26

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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
11 changes: 9 additions & 2 deletions website/src/main/resources/public/assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -2025,8 +2025,8 @@ input, select, textarea {
-ms-transform: scale(1);
transform: scale(1);
position: absolute;
left: 3em;
top: 3em;
left: 2.5em;
top: 2.5em;
opacity: 1;
}

Expand Down Expand Up @@ -2223,6 +2223,13 @@ input, select, textarea {

}

/* Features Text Container */

.features-text-container {
padding: 2em;
}


/* Form */

form {
Expand Down
83 changes: 47 additions & 36 deletions website/src/main/resources/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -154,48 +154,59 @@ <h2>Our partnerships</h2>
</p>
<div class="features">
<section>
<span class="icon solid image"><img src="images/jebtrains.png" alt=""
width="70"/></span>
<h3><a href="https://www.jetbrains.com">JetBrains</a></h3>
<p>We will frequently <strong>give away licenses</strong> to their products,
such as <strong>IntelliJ
IDEA
Ultimate</strong> <img src="images/intellij.png" alt="" width="30"/> on
special
occasions.
</p>
<p>For example as prize for winning a coding contest, or just to
thank you for your contribution to the community.</p>
<div class="icon solid image">
<img src="images/jebtrains.png" alt="An image of JetBrains logo" width="70">
</div>
<div class="features-text-container">
<h3><a href="https://www.jetbrains.com">JetBrains</a></h3>
<p>We will frequently <strong>give away licenses</strong> to their products,
such as <strong>IntelliJ
IDEA
Ultimate</strong> <img src="images/intellij.png" alt="" width="30"/> on
special
occasions.
</p>
<p>For example as prize for winning a coding contest, or just to
thank you for your contribution to the community.</p>
</div>
</section>
<section>
<span class="icon solid image"><img src="images/cloub_builders_logo.png"
alt=""
width="70"/></span>
<h3><a href="https://www.cloud-builders.tech">Cloud Builders</a></h3>
<p>Hosting free Java conferences with expert speakers and many exciting
talks.</p>
<p>All profits go to Ukrainian charity funds
<span style="white-space: nowrap;">💙💛</span>.
</p>
<div class="icon solid image">
<img src="images/cloub_builders_logo.png" alt="An image of Cloud Builders logo" width="70">
</div>
<div class="features-text-container">
<h3><a href="https://www.cloud-builders.tech">Cloud Builders</a></h3>
<p>Hosting free Java conferences with expert speakers and many exciting
talks.</p>
<p>All profits go to Ukrainian charity funds
<span style="white-space: nowrap;">💙💛</span>.
</p>
</div>
</section>
<section>
<span class="icon solid image"><img src="images/aoc.svg" alt=""
width="70"/></span>
<h3><a href="https://adventofcode.com/">Advent of Code</a></h3>
<p>Each year in December, we host AoC within our community with private
leaderboards.</p>
<p>Advent of Code is an Advent calendar of small programming puzzles for a
variety of skill sets
and skill levels that can be solved in any programming language you
like.</p>
<div class="icon solid image">
<img src="images/aoc.svg" alt="The logo of Advent of Code" width="70">
</div>
<div class="features-text-container">
<h3><a href="https://adventofcode.com/">Advent of Code</a></h3>
<p>Each year in December, we host AoC within our community with private
leaderboards.</p>
<p>Advent of Code is an Advent calendar of small programming puzzles for a
variety of skill sets
and skill levels that can be solved in any programming language you
like.</p>
</div>
</section>
<section>
<span class="icon solid image"><img src="images/mooc.png" alt=""
width="70"/></span>
<h3><a href="https://java-programming.mooc.fi/">MOOC: Java Programming</a></h3>
<p>Hands down the best complete and free resource to learn Java.</p>
<p>The University of Helsinki created this course, and they use it to teach
their students programming. It comes with 14 weekly parts and exercises.</p>
<div class="icon solid image">
<img src="images/mooc.png" alt="The logo of MOOC from University of Helsinki" width="70">
</div>
<div class="features-text-container">
<h3><a href="https://java-programming.mooc.fi/">MOOC: Java Programming</a></h3>
<p>Hands down the best complete and free resource to learn Java.</p>
<p>The University of Helsinki created this course, and they use it to teach
their students programming. It comes with 14 weekly parts and exercises.</p>
</div>
</section>
</div>
</div>
Expand Down