Skip to content

Commit 1fa8281

Browse files
author
Manuel Rauber
committed
Please welcome Amazon as a sponsor
1 parent f599397 commit 1fa8281

File tree

4 files changed

+23
-13
lines changed

4 files changed

+23
-13
lines changed

assets/sponsors/amazon_logo.jpg

109 KB
Loading

css/styles.css

+12-7
Original file line numberDiff line numberDiff line change
@@ -226,20 +226,25 @@ body {
226226
.prizes .row {
227227
margin-top: 50px;
228228
display: -ms-flexbox;
229-
display: flex; }
229+
display: flex;
230+
-ms-flex-wrap: wrap;
231+
flex-wrap: wrap;
232+
-ms-flex-pack: justify;
233+
justify-content: space-between; }
230234
@media (max-width: 1023px) {
231235
.prizes .row {
232236
display: block; }
233237
.prizes .row div {
234-
display: block; }
238+
display: block;
239+
min-width: 100% !important;
240+
max-width: 100% !important; }
235241
.prizes .row div.icon-and-text + div {
236-
margin-top: 50px;
237-
padding-left: 0; } }
242+
margin-top: 50px; } }
238243
.prizes .row div {
239244
-ms-flex: 1;
240-
flex: 1; }
241-
.prizes .row div + div {
242-
padding-left: 25px; }
245+
flex: 1;
246+
min-width: 45%;
247+
max-width: 45%; }
243248
.prizes .row img {
244249
max-height: 100px; }
245250
.prizes .row b {

css/styles.scss

+6-5
Original file line numberDiff line numberDiff line change
@@ -200,28 +200,29 @@ body {
200200
.row {
201201
margin-top: $gap * 2;
202202
display: flex;
203+
flex-wrap: wrap;
204+
justify-content: space-between;
203205

204206
@include media('<desktop') {
205207
display: block;
206208

207209
div {
208210
display: block;
211+
min-width: 100% !important;
212+
max-width: 100% !important;
209213

210214
&.icon-and-text {
211215
+ div {
212216
margin-top: $gap * 2;
213-
padding-left: 0;
214217
}
215218
}
216219
}
217220
}
218221

219222
div {
220223
flex: 1;
221-
222-
+ div {
223-
padding-left: $gap;
224-
}
224+
min-width: 45%;
225+
max-width: 45%;
225226
}
226227

227228
img {

index.html

+5-1
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,8 @@ <h1>The Prizes</h1>
191191
start video recording? Control your computer with your face? The possibilities are endless!
192192
</p>
193193
</div>
194+
</div>
195+
<div class="row">
194196
<div class="icon-and-text">
195197
<img src="assets/icon_group.png" class="shortened"/>
196198
<b>Social Innovation</b>
@@ -203,7 +205,8 @@ <h1>The Prizes</h1>
203205
<img src="assets/noun_1200809_cc.png" class="shortened"/>
204206
<b>Voice Design Innovation</b>
205207
<p class="small">
206-
Team that innovates on the power of voice and implements Alexa.
208+
Team that innovates on the power of voice and implements Alexa. <br/>
209+
<em class="small">Sponsored by Amazon</em>
207210
</p>
208211
</div>
209212
</div>
@@ -300,6 +303,7 @@ <h1>SPONSORS</h1>
300303

301304
<div class="row">
302305
<a href="https://www.inovex.de/" target="_blank"><img src="assets/sponsors/inovex.svg" class="sponsor-image medium"/></a>
306+
<a href="https://www.amazon.de/" target="_blank"><img src="assets/sponsors/amazon_logo.jpg" class="sponsor-image medium"/></a>
303307
</div>
304308

305309
<div class="row">

0 commit comments

Comments
 (0)