commit c71152e54de219651bf3f2857c9efe20f52d87bc Author: obligod <90509936+obligod@users.noreply.github.com> Date: Sat Apr 26 15:28:29 2025 -0700 Add files via upload diff --git a/ servermanagerMain.css b/ servermanagerMain.css new file mode 100644 index 0000000..df10c39 --- /dev/null +++ b/ servermanagerMain.css @@ -0,0 +1,51 @@ +body { + background: #1c1c1e; + color: #00bfff; + font-family: 'Segoe UI', sans-serif; + text-align: center; + margin: 0; + padding: 0; +} + +.container { + padding: 2rem; +} + +ul { + list-style-type: none; + padding: 0; + margin: 0 auto; +} + +button { + margin-top: 20px; + padding: 10px 20px; + font-size: 1.2rem; + background-color: #00bfff; + color: #1c1c1e; + border: none; + border-radius: 8px; + cursor: pointer; +} + + button:hover { + background-color: #0099cc; + } + +nav.navbar { + background-color: #2d2d2d; + padding: 1rem; +} + + nav.navbar a { + color: #00bfff; + text-decoration: none; + margin: 0 10px; + } + +.promo-image { + margin-top: 20px; + max-width: 90%; + height: auto; + border-radius: 12px; +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..dc3fbea --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# obli-studios-website diff --git a/img/mainmenu.png b/img/mainmenu.png new file mode 100644 index 0000000..0fd6c9c Binary files /dev/null and b/img/mainmenu.png differ diff --git a/img/servermanager.png b/img/servermanager.png new file mode 100644 index 0000000..2b2c290 Binary files /dev/null and b/img/servermanager.png differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..24f45d4 --- /dev/null +++ b/index.html @@ -0,0 +1,29 @@ + + + + + + Obli.Studios - Home + + + + +
+

Obli.Studios

+

Indie studio crafting games and server tools with passion and precision.

+
+
+
+

Welcome!

+

Explore our projects Pages above.

+
+
+ + + \ No newline at end of file diff --git a/main.js b/main.js new file mode 100644 index 0000000..47bfd3a --- /dev/null +++ b/main.js @@ -0,0 +1,22 @@ +const exploreMore = () => { + alert("Coming soon: a deep dive into the game world!"); + }; + + const downloadDemo = () => { + window.location.href = "https://your-download-link.com"; // Replace with actual URL + }; + + // Optional: Set the game title dynamically + document.getElementById("game-title").textContent = "Shardbound: The Mirror’s Edge"; + // Replace 'obi.studios' with a unique name if needed +const namespace = 'obi.studios'; +const key = 'homepage'; + +fetch(`https://api.countapi.xyz/hit/${namespace}/${key}`) + .then(res => res.json()) + .then(data => { + document.getElementById('visitor-count').textContent = data.value; + }) + .catch(() => { + document.getElementById('visitor-count').textContent = 'N/A'; + }); diff --git a/master.css b/master.css new file mode 100644 index 0000000..eb5ee2d --- /dev/null +++ b/master.css @@ -0,0 +1,28 @@ +body { + background: #0aff4f; + color: #000; + font-family: 'Segoe UI', sans-serif; + text-align: center; + margin: 0; + padding: 0; +} +nav { + padding: 1rem; +} +ul { + list-style-type: none; + padding: 0; +} +button { + margin-top: 20px; + padding: 10px 20px; + font-size: 1.2rem; + background-color: #00bfff; + color: #000; + border: none; + border-radius: 8px; + cursor: pointer; +} +button:hover { + background-color: #0099cc; +} \ No newline at end of file diff --git a/servermanager.html b/servermanager.html new file mode 100644 index 0000000..16f5f9f --- /dev/null +++ b/servermanager.html @@ -0,0 +1,41 @@ + + + + + + Obli.ServerManager + + + + + + +
+
+

Obli.ServerManager

+

Manage all your SteamCMD game servers effortlessly.

+ +
+

Features

+
    +
  • Easy server installation and updating
  • +
  • Real-time server monitoring
  • +
  • Remote management options
  • +
+ Server Manager +

+ +
+
+
+ + + + + \ No newline at end of file diff --git a/servermanagerMain.css b/servermanagerMain.css new file mode 100644 index 0000000..c55c7e6 --- /dev/null +++ b/servermanagerMain.css @@ -0,0 +1,44 @@ +body { + background: #1c1c1e; + color: #00bfff; + font-family: 'Segoe UI', sans-serif; + text-align: center; + margin: 0; + padding: 0; +} +.container { + padding: 2rem; +} +ul { + list-style-type: none; + padding: 0; + margin: 0 auto; +} +button { + margin-top: 20px; + padding: 10px 20px; + font-size: 1.2rem; + background-color: #00bfff; + color: #1c1c1e; + border: none; + border-radius: 8px; + cursor: pointer; +} +button:hover { + background-color: #0099cc; +} +nav.navbar { + background-color: #2d2d2d; + padding: 1rem; +} +nav.navbar a { + color: #00bfff; + text-decoration: none; + margin: 0 10px; +} +.promo-image { + margin-top: 20px; + max-width: 90%; + height: auto; + border-radius: 12px; +} \ No newline at end of file diff --git a/shardwalker.html b/shardwalker.html new file mode 100644 index 0000000..856fdd9 --- /dev/null +++ b/shardwalker.html @@ -0,0 +1,39 @@ + + + + + + Shardwalker: The Mirror's Edge + + + + + +
+
+

Shardwalker: The Mirror's Edge

+

A tactical action-RPG exploring fractured realities.

+
+
+
+

Game Features

+
    +
  • Shard-switching combat mechanics
  • +
  • Deep narrative-driven adventure
  • +
+ Shardwalker Main Menu +

+ +
+
+
+ + + + \ No newline at end of file diff --git a/shardwalkerMain.css b/shardwalkerMain.css new file mode 100644 index 0000000..012929d --- /dev/null +++ b/shardwalkerMain.css @@ -0,0 +1,44 @@ +body { + background: #2d004d; + color: #00f0ff; + font-family: 'Segoe UI', sans-serif; + text-align: center; + margin: 0; + padding: 0; +} +.container { + padding: 2rem; +} +ul { + list-style-type: none; + padding: 0; + margin: 0 auto; +} +button { + margin-top: 20px; + padding: 10px 20px; + font-size: 1.2rem; + background-color: #00f0ff; + color: #2d004d; + border: none; + border-radius: 8px; + cursor: pointer; +} +button:hover { + background-color: #00ddee; +} +nav.navbar { + background-color: #3a0a5d; + padding: 1rem; +} +nav.navbar a { + color: #00f0ff; + text-decoration: none; + margin: 0 10px; +} +.promo-image { + margin-top: 20px; + max-width: 90%; + height: auto; + border-radius: 12px; +} \ No newline at end of file