Skip to content

Commit 6f0e01c

Browse files
Add Godot priorities page (#955)
Co-authored-by: Emi <2206700+coppolaemilio@users.noreply.github.com>
1 parent c0da3f3 commit 6f0e01c

File tree

82 files changed

+2889
-684
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+2889
-684
lines changed

.editorconfig

+4
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,7 @@ indent_size = 2
1616
[*.rb]
1717
indent_style = space
1818
indent_size = 2
19+
20+
[*.md]
21+
indent_style = space
22+
indent_size = 2

_config.yml

+2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ collections:
2626
download_3:
2727
output: true
2828
permalink: /download/3.x/:name/
29+
priorities:
30+
output: true
2931

3032
# Build collection items with a future date.
3133
future: true

_includes/footer.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ <h2>Project</h2>
2121
<li><a href="/code-of-conduct/">Code of Conduct</a></li>
2222
<li><a href="/governance/">Governance</a></li>
2323
<li><a href="/teams/">Teams</a></li>
24+
<li><a href="/priorities/">Priorities</a></li>
2425
<li><a href="/community/">Communities</a></li>
2526
</ul>
2627
</div>
@@ -41,7 +42,7 @@ <h2>Foundation</h2>
4142
<li><a href="/license/">License</a></li>
4243
<li><a href="/privacy-policy/">Privacy Policy</a></li>
4344
<li><a href="/contact/">Contact us</a></li>
44-
</ul>
45+
</ul>
4546
</div>
4647
</div>
4748
<hr>

_sass/common/_release.scss

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//
2+
// Functions
3+
//
14
@function offset-hue($color, $offset, $i: 1) {
25
@return adjust-hue($color, $offset * $i);
36
}
@@ -51,3 +54,18 @@
5154
@function r-get-mobile($value) {
5255
@return map-get($value, "mobile");
5356
}
57+
58+
//
59+
// Mixins
60+
//
61+
@mixin is-dark() {
62+
@media screen and (prefers-color-scheme: dark) {
63+
@content;
64+
}
65+
}
66+
67+
@mixin is-light() {
68+
@media screen and (prefers-color-scheme: light) {
69+
@content;
70+
}
71+
}

0 commit comments

Comments
 (0)