@@ -31,7 +30,7 @@ const docs = unsortedDocs.sort(
{doc.frontmatter.has_thumbnail ? (
diff --git a/src/pages/docs/discord-sdk-godot/index.mdx b/src/pages/docs/discord-sdk-godot/index.mdx
index 40973ec..ae72945 100644
--- a/src/pages/docs/discord-sdk-godot/index.mdx
+++ b/src/pages/docs/discord-sdk-godot/index.mdx
@@ -74,7 +74,7 @@ func _ready():
**Then it will look similar to this:**
-

+

[**Try a built demo**](https://github.com/vaporvee/discord-sdk-godot/releases/latest/download/Demo-Export.zip)
diff --git a/src/pages/index.astro b/src/pages/index.astro
index 30c526f..18b79fb 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -6,48 +6,49 @@ const yannikAge = new Date().getFullYear() - 2004; // 31/12/2003
---
-
-
-
-
vaporvee
-
- Making video games
-
-

-
-
-
- Hello my name is Yannik!
- I’m a {yannikAge} year old Game Developer living in Germany.
- I mostly code in C++, Godot Engine's GDScript and C#.
- I am mostly self taught but i cant really say when i began to
- learn game developement.
- Currently i already work at a game studio and i also have my
- own game side projects and tools.
- This website will mostly have docs, tutorials, and showcasing of my projects.
- Maybe also some other stuff all around the creative process
- of game developement or completely unrelated stuff like
- cooking recepies in my blog ;)
- (this website is getting rewritten and is not looking
- good on mobile devices yet)
-
-
-
-
+
+
+
+
vaporvee
+
+ Making video games
+
+

+
+
+
+ Hello my name is Yannik!
+ I’m a {yannikAge} year old Game Developer living in Germany.
+ I mostly code in C++, Godot Engine's GDScript and C#.
+ I am mostly self taught but i cant really say when i began to learn game
+ developement.
+ Currently i already work at a game studio and i also have my own game side
+ projects and tools.
+ This website will mostly have docs, tutorials, and showcasing of my projects. Maybe also
+ some other stuff all around the creative process of game developement
+ or completely unrelated stuff like cooking recepies in my blog ;)
+ (this website is getting rewritten and is not looking good on
+ mobile devices yet)
+
+
+
+
diff --git a/src/styles/callout.scss b/src/styles/callout.scss
index 6730578..1048541 100644
--- a/src/styles/callout.scss
+++ b/src/styles/callout.scss
@@ -8,6 +8,7 @@
border: var(--callout-border);
border-radius: var(--callout-radius);
background: var(--callout-background);
+ margin: 1vh;
}
.callout code,
diff --git a/src/styles/docs.scss b/src/styles/docs.scss
deleted file mode 100644
index e4c3d23..0000000
--- a/src/styles/docs.scss
+++ /dev/null
@@ -1,5 +0,0 @@
-.content{
- display: flex;
- flex-direction: column;
- align-items: center;
-}
\ No newline at end of file
diff --git a/src/styles/home.scss b/src/styles/home.scss
index 0b0a5df..0300106 100644
--- a/src/styles/home.scss
+++ b/src/styles/home.scss
@@ -1,4 +1,10 @@
-main {
+main{
+ display: unset;
+ flex-direction: unset;
+ align-items: unset;
+}
+
+.lines {
background-image: url("/diagonal_lines_home.png");
background-size: cover;
background-repeat: repeat;
diff --git a/src/styles/main.scss b/src/styles/main.scss
index 41f6729..a27c89c 100644
--- a/src/styles/main.scss
+++ b/src/styles/main.scss
@@ -16,32 +16,39 @@ h1 {
font-family: "Tanker-Regular", "Arial";
}
+main{
+ display: flex;
+ justify-content: space-evenly;
+}
+
.content {
+ display: flex;
+ flex-direction: column;
+ align-self: center;
background-color: $highlight-primary;
border-radius: 25px;
border: 1px solid lighten($highlight-primary, 16%);
box-shadow: 0px 4px 4px 0px #00000040;
padding: 2vw;
- margin-inline: 10vw;
+ width: 60vw;
margin-bottom: 11vh;
}
.second-content {
+ align-self: center;
text-align: center;
$second-content-clr: #6e6e6e40;
background-color: $second-content-clr;
border-radius: 25px;
border: 1px solid lighten($second-content-clr, 16%);
- width: 80vh;
- padding: 1vh;
+ width: 42vw;
+ padding: 2vh;
margin-inline: 10vw;
margin-bottom: 11vh;
}
.sidebar{
- position: absolute;
right: 0;
top: 0;
- margin-top: 10.5vh;
}