Files
godot-website/_layouts/download-archive.html
Emi d3b64552b7 New footer design (#907)
* New Footer

* Make main.css be an scss file to handle imports

* Remove margin gap fix

* remove unused logos

* Update _sass/_footer.scss

Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro>

* Update _sass/_footer.scss

Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro>

* Update assets/css/main.scss

Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro>

---------

Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro>
2024-08-18 18:48:02 +02:00

68 lines
1.3 KiB
HTML

---
layout: default
---
{% include header.html %}
<link rel="stylesheet" href="/assets/css/download.css?2">
<link rel="stylesheet" href="/assets/css/download-version.css?2">
<style>
.hero {
background-image: none;
padding-top: 54px;
}
.hero h1 {
text-shadow: none;
color: var(--base-color-text-title);
}
.hero-blurb {
color: var(--base-color-text);
}
.hero-version-flavor {
background-color: var(--primary-color);
border-radius: 1000px;
color: var(--dark-color-text-title);
font-size: 90%;
font-weight: 600;
padding: 0.35rem 1.25rem;
}
.other-platforms-wrapper {
color: var(--base-color-text);
}
.preview-cards {
display: grid;
grid-template-columns: 1fr;
gap: 16px;
}
</style>
<div class="hero">
<div class="hero-wrapper">
<h1>Download<br>Godot {{ page.version_name }} <span class="hero-version-flavor">{{ page.version_flavor }}</span></h1>
</div>
<div class="other-platforms">
<div class="other-platforms-wrapper">
Looking for another version? <a href="/download/archive">Open the archive index!</a>
</div>
</div>
</div>
<div class="container">
<div class="padded" style="padding-top:0;margin-top:32px">
<div class="preview-cards">
{% include download/version-card.html version=page.version %}
</div>
</div>
</div>
<script src="/assets/js/download-version.js"></script>
{% include footer.html %}