-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4a95951
commit 85bbb64
Showing
4 changed files
with
20 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,8 @@ remote_theme: pages-themes/[email protected] | |
plugins: | ||
- jekyll-remote-theme # add this line to the plugins list if you already have one | ||
title: Learn To Theme | ||
description: A step-by-step guide to creating Discord themes, from beginner to advanced. | ||
description: A step-by-step guide to creating Discord themes, from beginner to advanced. | ||
|
||
github: | ||
owner_url: https://github.com/Saltssaumure | ||
owner_name: Saltssaumure |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,18 @@ | ||
--- | ||
--- | ||
$header-bg-color: #6f15b8; | ||
$header-bg-color-secondary: #4e2802; | ||
|
||
@import "{{ site.theme }}"; | ||
|
||
// other stuff | ||
body { | ||
background: invert($body-text-color); | ||
} | ||
|
||
// Step navigation | ||
.navbar { | ||
display: flex; | ||
justify-content: center; | ||
position: sticky; | ||
top: 0; | ||
} |