Skip to content

Commit

Permalink
fix: h3, h4 removed because it was affecting other pages, instead tex…
Browse files Browse the repository at this point in the history
…t-stride added to titles on the home page
  • Loading branch information
VaclavElias committed Nov 19, 2023
1 parent 79053fc commit 499cf05
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
6 changes: 1 addition & 5 deletions css/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ body {
margin-top: 62px;
}

h1, h2, h3, h4 {
h1, h2 {
color: var(--bs-stride);
}

Expand Down Expand Up @@ -226,10 +226,6 @@ svg path.logo-path {
}

[data-bs-theme=dark] {
/* h1, h2 {
color: $link-color-dark;
}*/

--logo: url(/images/svg/stride-logo-dark-theme.svg) no-repeat;

.bg-stride-website {
Expand Down
12 changes: 6 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<div class="card h-100">
<img src="/images/home/section-features.jpg" alt="Robot" class="img-fluid">
<div class="card-body pt-5 px-5">
<h2 class="h3 mb-3 fw-bold">Bet on the future</h2>
<h2 class="h3 mb-3 fw-bold text-stride">Bet on the future</h2>
<ul class="mb-4 fa-ul" style="--fa-li-margin: 1.8em;">
{% include bullet-point.html text:'Next-gen graphics API support' %}
{% include bullet-point.html text:'Photorealistic rendering & VR ready' %}
Expand All @@ -28,7 +28,7 @@ <h2 class="h3 mb-3 fw-bold">Bet on the future</h2>
<div class="card h-100">
<img src="/images/home/section-development.jpg" alt="Stride Editor Screenshot" class="img-fluid">
<div class="card-body pt-5 px-5">
<h2 class="h3 mb-3 fw-bold">Accelerated development</h2>
<h2 class="h3 mb-3 fw-bold text-stride">Accelerated development</h2>
<ul class="mb-4 fa-ul" style="--fa-li-margin: 1.8em;">
<li><span class="fa-li"><i class="fa-solid fa-circle-check text-stride me-2"></i></span>{{ site.csharp-version }} scripting with {{ site.dotnet-version }}</li>
{% include bullet-point.html text:'Built-in game templates' %}
Expand All @@ -45,7 +45,7 @@ <h2 class="h3 mb-3 fw-bold">Accelerated development</h2>
<div class="card h-100">
<img src="/images/top/platforms.webp" alt="Robot" class="img-fluid p-3">
<div class="card-body pt-5 px-5">
<h2 class="h3 mb-3 fw-bold">Develop once, deploy <br /> cross-platform</h2>
<h2 class="h3 mb-3 fw-bold text-stride">Develop once, deploy <br /> cross-platform</h2>
<ul class="mb-4 fa-ul" style="--fa-li-margin: 1.8em;">
{% include bullet-point.html text:'Windows Desktop' %}
{% include bullet-point.html text:'Windows Universal' %}
Expand All @@ -62,7 +62,7 @@ <h2 class="h3 mb-3 fw-bold">Develop once, deploy <br /> cross-platform</h2>
<div class="card h-100">
<img src="/images/home/section-scripting.png" alt="Stride Editor Screenshot" class="img-fluid p-4">
<div class="card-body pt-5 px-5">
<h2 class="h3 mb-3 fw-bold">Write your scripts in {{ site.csharp-version }}</h2>
<h2 class="h3 mb-3 fw-bold text-stride">Write your scripts in {{ site.csharp-version }}</h2>
<ul class="mb-4 fa-ul" style="--fa-li-margin: 1.8em;">
{% include bullet-point.html text:'IntelliSense and code navigation for C#' %}
{% include bullet-point.html text:'Visual Studio, Visual Studio Code or Rider' %}
Expand All @@ -79,7 +79,7 @@ <h2 class="h3 mb-3 fw-bold">Write your scripts in {{ site.csharp-version }}</h2>
<div class="card h-100">
<img src="/images/home/section-documentation.jpg" alt="Platforms Image" class="img-fluid">
<div class="card-body pt-5 px-5">
<h2 class="h3 mb-3 fw-bold">Documentation that sings</h2>
<h2 class="h3 mb-3 fw-bold text-stride">Documentation that sings</h2>
<ul class="mb-4 fa-ul" style="--fa-li-margin: 1.8em;">
{% include bullet-point.html text:'Manual in English and Japanese' %}
{% include bullet-point.html text:'Beginner friendly introduction videos' %}
Expand All @@ -97,7 +97,7 @@ <h2 class="h3 mb-3 fw-bold">Documentation that sings</h2>
<div class="card h-100">
<img src="/images/home/section-community.jpeg" alt="Game Image" class="img-fluid">
<div class="card-body pt-5 px-5">
<h2 class="h3 mb-3 fw-bold">Collaborate with us</h2>
<h2 class="h3 mb-3 fw-bold text-stride">Collaborate with us</h2>
<ul class="mb-4 fa-ul" style="--fa-li-margin: 1.8em;">
{% include bullet-point.html text:'Editor and runtime fully open source' %}
<li><span class="fa-li"><i class="fa-solid fa-circle-check text-stride me-2"></i></span>Dive into our source code (MIT) on <a href="{{ site.links.github-stride-url }}" target="_blank" rel="noopener">GitHub</a></li>
Expand Down

0 comments on commit 499cf05

Please sign in to comment.