Skip to content

Commit 01f99e8

Browse files
authored
Merge pull request #345 from stride3d/master
Deploy latest website updates to staging
2 parents 07a7d9b + 2c24872 commit 01f99e8

File tree

7 files changed

+262
-1052
lines changed

7 files changed

+262
-1052
lines changed
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<div class="card mt-5">
22
<div class="oc-sponsors-container">
33
<div class="tier-container">
4-
<div class="tier-item gold">GOLD STRIDERS</div>
5-
<div class="tier-item">
4+
<div class="tier-item gold fw-bold display-4 text-dark">Gold Striders</div>
5+
<div class="tier-item">
66
{% for sponsor in gold_sponsors %}
77
<div class="img-container">
88
{% if sponsor.image %}
@@ -16,8 +16,8 @@
1616
</div>
1717
</div>
1818
<div class="tier-container">
19-
<div class="tier-item silver">SILVER STRIDERS</div>
20-
<div class="tier-item">
19+
<div class="tier-item silver fw-bold display-4 text-dark">Silver Striders</div>
20+
<div class="tier-item">
2121
{% for sponsor in silver_sponsors %}
2222
<div class="img-container">
2323
{% if sponsor.image %}
@@ -31,8 +31,8 @@
3131
</div>
3232
</div>
3333
<div class="tier-container">
34-
<div class="tier-item bronze">BRONZE STRIDERS</div>
35-
<div class="tier-item">
34+
<div class="tier-item bronze fw-bold display-4 text-dark">Bronze Striders</div>
35+
<div class="tier-item">
3636
{% for sponsor in bronze_sponsors %}
3737
<div class="img-container">
3838
{% if sponsor.image %}

css/styles.scss

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
@import "custom-bootstrap";
22
@import "/css/all.min.css";
3-
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
43

54
:root {
65
--main-shadow: 2px 2px 8px #0000001a;
@@ -297,7 +296,7 @@ svg path.logo-path {
297296
.tier-container {
298297
display: flex;
299298
flex-direction: column;
300-
299+
301300
@media screen and (min-width: 1280px) {
302301
flex-direction: row;
303302
}
@@ -309,22 +308,18 @@ svg path.logo-path {
309308
gap: 20px;
310309
align-items: center;
311310
justify-content: center;
312-
font-family: "Kanit", serif;
313-
font-weight: 900;
314-
font-size: 46px;
315-
letter-spacing: -2px;
316311
padding: 40px 12px;
317312
flex-wrap: wrap;
318313
}
319314

320-
.tier-item.gold {
315+
.tier-item.gold {
321316
background-color: rgb(221, 205, 62);
322317
}
323318

324319
.tier-item.silver {
325320
background-color: silver;
326321
}
327-
322+
328323
.tier-item.bronze {
329324
background-color: rgb(216, 156, 78);
330325
}

images/home/silk.net-logo.svg

Lines changed: 1 addition & 0 deletions
Loading

index.html

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,27 @@ <h2 class="h3 mb-3 fw-bold text-stride">Collaborate with us</h2>
9393
</div>
9494
</div>
9595
</div>
96+
<div class="col-12">
97+
<div class="card h-100">
98+
<div class="p-5 pull-left">
99+
<h2 class="mb-3 fw-bold">Too high level for you? Try Silk.NET.</h2>
100+
<div class="row">
101+
<div class="col-12 col-md-9">
102+
<p class="lead pe-0 pe-md-4">Stride takes care of most of the low-level game logic for you, and while the engine is fairly modular, you may prefer having full control over those bits of your engine. If that's the case, have a look at Silk.NET! Silk.NET is a powerful set of bindings supported by the .NET Foundation for multimedia applications.</p>
103+
</div>
104+
<div class="col-12 col-md-3">
105+
<a href="https://dotnet.github.io/Silk.NET/"><img src="/images/home/silk.net-logo.svg" style="" alt="Silk.NET Logo" class="img-fluid mt-4 mt-lg-0"></a>
106+
<div class="mt-5 text-lg-center">
107+
<a href="https://dotnet.github.io/Silk.NET/" class="btn btn-lg btn-outline-stride me-md-2">Learn more</a>
108+
</div>
109+
</div>
110+
</div>
111+
</div>
112+
</div>
113+
</div>
96114
</div>
97115
</div>
98-
99116
{% include blog-home.html %}
100-
101117
<div class="container-xl">
102118
<div class="row gy-4 gx-sm-4 justify-content-center mb-5">
103119
<div class="col-12">

0 commit comments

Comments
 (0)