Skip to content

Commit

Permalink
Add Godot priorities page (#955)
Browse files Browse the repository at this point in the history
Co-authored-by: Emi <2206700+coppolaemilio@users.noreply.github.com>
  • Loading branch information
adamscott and coppolaemilio authored Dec 2, 2024
1 parent c0da3f3 commit 6f0e01c
Show file tree
Hide file tree
Showing 82 changed files with 2,889 additions and 684 deletions.
4 changes: 4 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,7 @@ indent_size = 2
[*.rb]
indent_style = space
indent_size = 2

[*.md]
indent_style = space
indent_size = 2
2 changes: 2 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ collections:
download_3:
output: true
permalink: /download/3.x/:name/
priorities:
output: true

# Build collection items with a future date.
future: true
Expand Down
3 changes: 2 additions & 1 deletion _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ <h2>Project</h2>
<li><a href="/code-of-conduct/">Code of Conduct</a></li>
<li><a href="/governance/">Governance</a></li>
<li><a href="/teams/">Teams</a></li>
<li><a href="/priorities/">Priorities</a></li>
<li><a href="/community/">Communities</a></li>
</ul>
</div>
Expand All @@ -41,7 +42,7 @@ <h2>Foundation</h2>
<li><a href="/license/">License</a></li>
<li><a href="/privacy-policy/">Privacy Policy</a></li>
<li><a href="/contact/">Contact us</a></li>
</ul>
</ul>
</div>
</div>
<hr>
Expand Down
18 changes: 18 additions & 0 deletions _sass/common/_release.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
//
// Functions
//
@function offset-hue($color, $offset, $i: 1) {
@return adjust-hue($color, $offset * $i);
}
Expand Down Expand Up @@ -51,3 +54,18 @@
@function r-get-mobile($value) {
@return map-get($value, "mobile");
}

//
// Mixins
//
@mixin is-dark() {
@media screen and (prefers-color-scheme: dark) {
@content;
}
}

@mixin is-light() {
@media screen and (prefers-color-scheme: light) {
@content;
}
}
Loading

0 comments on commit 6f0e01c

Please sign in to comment.