Skip to content

Commit e63e58a

Browse files
Fixed features icon positioning, added alt text
1 parent 5946860 commit e63e58a

4 files changed

Lines changed: 64 additions & 39 deletions

File tree

.idea/compiler.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/src/main/resources/public/assets/css/main.css

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2025,8 +2025,8 @@ input, select, textarea {
20252025
-ms-transform: scale(1);
20262026
transform: scale(1);
20272027
position: absolute;
2028-
left: 3em;
2029-
top: 3em;
2028+
left: 2.5em;
2029+
top: 2.5em;
20302030
opacity: 1;
20312031
}
20322032

@@ -2223,6 +2223,13 @@ input, select, textarea {
22232223

22242224
}
22252225

2226+
/* Features Text Container */
2227+
2228+
.features-text-container {
2229+
padding: 2em;
2230+
}
2231+
2232+
22262233
/* Form */
22272234

22282235
form {

website/src/main/resources/public/index.html

Lines changed: 47 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -154,48 +154,59 @@ <h2>Our partnerships</h2>
154154
</p>
155155
<div class="features">
156156
<section>
157-
<span class="icon solid image"><img src="images/jebtrains.png" alt=""
158-
width="70"/></span>
159-
<h3><a href="https://www.jetbrains.com">JetBrains</a></h3>
160-
<p>We will frequently <strong>give away licenses</strong> to their products,
161-
such as <strong>IntelliJ
162-
IDEA
163-
Ultimate</strong> <img src="images/intellij.png" alt="" width="30"/> on
164-
special
165-
occasions.
166-
</p>
167-
<p>For example as prize for winning a coding contest, or just to
168-
thank you for your contribution to the community.</p>
157+
<div class="icon solid image">
158+
<img src="images/jebtrains.png" alt="An image of JetBrains logo" width="70">
159+
</div>
160+
<div class="features-text-container">
161+
<h3><a href="https://www.jetbrains.com">JetBrains</a></h3>
162+
<p>We will frequently <strong>give away licenses</strong> to their products,
163+
such as <strong>IntelliJ
164+
IDEA
165+
Ultimate</strong> <img src="images/intellij.png" alt="" width="30"/> on
166+
special
167+
occasions.
168+
</p>
169+
<p>For example as prize for winning a coding contest, or just to
170+
thank you for your contribution to the community.</p>
171+
</div>
169172
</section>
170173
<section>
171-
<span class="icon solid image"><img src="images/cloub_builders_logo.png"
172-
alt=""
173-
width="70"/></span>
174-
<h3><a href="https://www.cloud-builders.tech">Cloud Builders</a></h3>
175-
<p>Hosting free Java conferences with expert speakers and many exciting
176-
talks.</p>
177-
<p>All profits go to Ukrainian charity funds
178-
<span style="white-space: nowrap;">💙💛</span>.
179-
</p>
174+
<div class="icon solid image">
175+
<img src="images/cloub_builders_logo.png" alt="An image of Cloud Builders logo" width="70">
176+
</div>
177+
<div class="features-text-container">
178+
<h3><a href="https://www.cloud-builders.tech">Cloud Builders</a></h3>
179+
<p>Hosting free Java conferences with expert speakers and many exciting
180+
talks.</p>
181+
<p>All profits go to Ukrainian charity funds
182+
<span style="white-space: nowrap;">💙💛</span>.
183+
</p>
184+
</div>
180185
</section>
181186
<section>
182-
<span class="icon solid image"><img src="images/aoc.svg" alt=""
183-
width="70"/></span>
184-
<h3><a href="https://adventofcode.com/">Advent of Code</a></h3>
185-
<p>Each year in December, we host AoC within our community with private
186-
leaderboards.</p>
187-
<p>Advent of Code is an Advent calendar of small programming puzzles for a
188-
variety of skill sets
189-
and skill levels that can be solved in any programming language you
190-
like.</p>
187+
<div class="icon solid image">
188+
<img src="images/aoc.svg" alt="The logo of Advent of Code" width="70">
189+
</div>
190+
<div class="features-text-container">
191+
<h3><a href="https://adventofcode.com/">Advent of Code</a></h3>
192+
<p>Each year in December, we host AoC within our community with private
193+
leaderboards.</p>
194+
<p>Advent of Code is an Advent calendar of small programming puzzles for a
195+
variety of skill sets
196+
and skill levels that can be solved in any programming language you
197+
like.</p>
198+
</div>
191199
</section>
192200
<section>
193-
<span class="icon solid image"><img src="images/mooc.png" alt=""
194-
width="70"/></span>
195-
<h3><a href="https://java-programming.mooc.fi/">MOOC: Java Programming</a></h3>
196-
<p>Hands down the best complete and free resource to learn Java.</p>
197-
<p>The University of Helsinki created this course, and they use it to teach
198-
their students programming. It comes with 14 weekly parts and exercises.</p>
201+
<div class="icon solid image">
202+
<img src="images/mooc.png" alt="The logo of MOOC from University of Helsinki" width="70">
203+
</div>
204+
<div class="features-text-container">
205+
<h3><a href="https://java-programming.mooc.fi/">MOOC: Java Programming</a></h3>
206+
<p>Hands down the best complete and free resource to learn Java.</p>
207+
<p>The University of Helsinki created this course, and they use it to teach
208+
their students programming. It comes with 14 weekly parts and exercises.</p>
209+
</div>
199210
</section>
200211
</div>
201212
</div>

0 commit comments

Comments
 (0)