-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'eversiege-web' into dev
- Loading branch information
Showing
82 changed files
with
11,150 additions
and
42 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
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# build output | ||
dist/ | ||
# generated types | ||
.astro/ | ||
|
||
# dependencies | ||
node_modules/ | ||
|
||
# logs | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
|
||
|
||
# environment variables | ||
.env | ||
.env.production | ||
|
||
# macOS-specific files | ||
.DS_Store |
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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
<button id="theme-toggle">Toggle Dark Mode</button> |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
onload = function() { | ||
// JavaScript to toggle between light and dark mode | ||
const toggleButton = document.getElementById('theme-toggle'); | ||
const bodyElement = document.body; | ||
|
||
// Check for saved mode preference in localStorage | ||
const currentTheme = localStorage.getItem('theme'); | ||
if (currentTheme === 'light') { | ||
bodyElement.classList.toggle('light-mode'); | ||
} | ||
|
||
// Toggle mode and save preference | ||
toggleButton.addEventListener('click', () => { | ||
bodyElement.classList.toggle('light-mode'); | ||
|
||
const theme = bodyElement.classList.contains('light-mode') ? 'light' : 'dark'; | ||
localStorage.setItem('theme', theme); // Save the preference | ||
}); | ||
} |
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
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 +1,74 @@ | ||
// custom SCSS (or CSS) goes here | ||
|
||
html { | ||
|
||
position: relative; | ||
background-image: url("https://static1.squarespace.com/static/5e949a92e17d55230cd1d44f/t/666797c50267ef33983aa221/1718065110482/SequoiaDark.png"); | ||
background-position: center center; | ||
background-attachment: fixed; | ||
background-size: cover; | ||
background-repeat: no-repeat; | ||
height: 100vh; | ||
|
||
} | ||
|
||
.main { | ||
|
||
background-color: rgba($body-background-color, 0.94); | ||
backdrop-filter: blur(500px); | ||
min-height: 100vh; | ||
|
||
} | ||
|
||
|
||
.side-bar { | ||
|
||
background-color: rgba($sidebar-color, 0.7); | ||
backdrop-filter: blur(25px); | ||
|
||
} | ||
|
||
.light-mode { | ||
|
||
@import "../color_schemes/light.scss"; | ||
|
||
background-image: url(https://media.discordapp.net/attachments/764964269460029442/1293703419483394159/SequoiaLight.png?ex=670856b3&is=67070533&hm=4898869ebea28d70fafa001b371d4acd7f5489b1b1cfba1e6afcc3e0a2d32396&=&format=webp&quality=lossless); | ||
background-position: center center; | ||
background-attachment: fixed; | ||
background-size: cover; | ||
background-repeat: no-repeat; | ||
|
||
.main { | ||
|
||
background-color: rgba($white, 0.6); | ||
backdrop-filter: blur(500px); | ||
min-height: 100vh; | ||
|
||
} | ||
|
||
.main-content, | ||
.footer { | ||
// @sproott - I was here | ||
|
||
h1, | ||
h2, | ||
h3, | ||
h4, | ||
h5 { | ||
|
||
color: $grey-dk-300; | ||
|
||
} | ||
|
||
color: $grey-dk-300; | ||
|
||
} | ||
|
||
.side-bar { | ||
|
||
background-color: rgba($white, 0.7); | ||
backdrop-filter: blur(25px); | ||
|
||
} | ||
|
||
} |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
--- | ||
{% include css/just-the-docs.scss.liquid color_scheme="dark" %} |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
--- | ||
{% if site.color_scheme and site.color_scheme != "nil" %} | ||
{% assign color_scheme = site.color_scheme %} | ||
{% else %} | ||
{% assign color_scheme = "light" %} | ||
{% endif %} | ||
{% include css/just-the-docs.scss.liquid color_scheme=color_scheme %} |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
--- | ||
{% include css/just-the-docs.scss.liquid color_scheme="light" %} |
File renamed without changes
Oops, something went wrong.