diff --git a/index.html b/index.html index 77d83eb..7e154bf 100755 --- a/index.html +++ b/index.html @@ -6,10 +6,12 @@

Kyle's Network

-
+

KyleDOT

kyledot.net - Index site

+

kyledot.net/projects - Projects

+

kyledot.net/resume - Resume

TheBakery

@@ -44,7 +46,7 @@

* Indicates planned or WIP website

-

Made by Kyle - Last updated: 2023/10/24

+

Made by Kyle - Last updated: 2023/11/17

diff --git a/projects.html b/projects.html new file mode 100644 index 0000000..f1ff3a9 --- /dev/null +++ b/projects.html @@ -0,0 +1,25 @@ + + + +Kyle's Projects + + + +

Kyle's Projects

+
+
+

Projects

+

nightcall.net - D&D wiki
Dokuwiki used for D&D campaigns among friends to maintain characters and devolop worldbuilding

+

thecaldera.net - Worldbuilding wiki
Dokuwiki used for personal worldbuilding, largely private but may been seen in stories and games

> +
+
+

Games

+

kyledot.itch.io/mouse-scroller - Mouse Scroller
Platforming game where you play as a computer mouse fighting keyboard keycaps

+
+
+ + + diff --git a/style.css b/style.css index 7e45453..5297e2b 100644 --- a/style.css +++ b/style.css @@ -4,7 +4,8 @@ h2 {color: white;font-family: Tahoma, Verdana, sans-serif;text-align: center;} h3 {color: white;font-family: Tahoma, Verdana, sans-serif;text-align: center;} p {color: white;font-family: Tahoma, Verdana, sans-serif;text-align: center;} a {color: white;font-family: Tahoma, Verdana, sans-serif;text-align: center;} -.container { display: grid; + +.container_index { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 0px 0px; @@ -17,4 +18,15 @@ a {color: white;font-family: Tahoma, Verdana, sans-serif;text-align: center;} .thebakery { grid-area: thebakery; } .nightcall { grid-area: nightcall; } .thecaldera { grid-area: thecaldera; } -.external { grid-area: external; } \ No newline at end of file +.external { grid-area: external; } + +.container_projects { display: grid; + grid-template-columns: 1fr 1fr; + grid-template-rows: 1fr 1fr; + gap: 0px 0px; + grid-auto-flow: row; + grid-template-areas: + "projects games"; +} +.projects { grid-area: projects; } +.games { grid-area: games; } \ No newline at end of file