Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
f663d91
Clean up most of the code in preparation.
CephalonCosmic Jul 15, 2025
d85c651
#5 Changed avatar rendering to be rounded square and added a margin b…
CephalonCosmic Jul 15, 2025
d99991a
#3 Added status page link, I guess.
CephalonCosmic Jul 15, 2025
1d7b1d3
#1 Removed duplicates.
CephalonCosmic Jul 15, 2025
59107be
#10 Removed creators no longer on Unity.
CephalonCosmic Jul 15, 2025
dbd43f6
Closes #2 rearranged the categories and added missing members
CephalonCosmic Jul 15, 2025
3a04caa
Add handling for GitHub and Instagram in the socials.
CephalonCosmic Jul 15, 2025
d763697
Closes #4 added Paeadams to the live.
CephalonCosmic Jul 15, 2025
d674e4e
#12 Updated the about page.
CephalonCosmic Jul 16, 2025
dd88738
Add missing GitHub socials for development branch.
CephalonCosmic Jul 16, 2025
b62c30c
#9 Update faction colours.
CephalonCosmic Jul 16, 2025
b1614b1
Changed how socials are presented and handled a bit.
CephalonCosmic Jul 16, 2025
f5a2817
Updated TailwindCSS.
CephalonCosmic Jul 16, 2025
001598b
Changed live to use the variable instead of static colour.
CephalonCosmic Jul 16, 2025
dfb7fbc
Text visibility fixes for member card.
CephalonCosmic Jul 16, 2025
52affcf
Forgot to import the new Footer name, oopsie.
CephalonCosmic Jul 16, 2025
44eb12e
Imported Manrope.. I think?
CephalonCosmic Jul 16, 2025
47d6949
Cleanup
CephalonCosmic Jul 16, 2025
86150b8
Changed up the scroll-bar
CephalonCosmic Jul 16, 2025
9145c2f
Added colours for each team branch, can be safely undone.
CephalonCosmic Jul 16, 2025
0afbd7a
#9 UI Overhaul
CephalonCosmic Jul 16, 2025
6ed1447
#9 Automatic faction and alphabetically sorting inside factions on th…
CephalonCosmic Jul 16, 2025
0063968
Fixed meta64/metasixtyfour's ID
CephalonCosmic Jul 16, 2025
f2b807e
oops, forgor, sorgy
CephalonCosmic Jul 16, 2025
2b56457
Update members list.
CephalonCosmic Aug 24, 2025
2cecdc5
Dynamically fetch user avatars.
CephalonCosmic Aug 24, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
117 changes: 91 additions & 26 deletions app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,39 +2,104 @@
<div class="h-screen">
<Navbar />
<NuxtPage />
<FooterComp />
<FooterBar />
<!--<div class="bg2 h-screen w-screen fixed top-0 left-0 -z-50"></div>-->
</div>
</template>

<style lang="css">

</style>
<style lang="scss">
body {
background-color: var(--bg-main);
color: var(--text-main);
}

main {
overflow-y: auto;
}

img {
-webkit-user-select: none;
-webkit-user-drag: none;
user-select: none;
-moz-user-select: none;
}

*::-webkit-scrollbar {
width: 0.6rem;
}

*::-webkit-scrollbar-track {
background-color: var(--text-buttons);
border-radius: 25px;
}

*::-webkit-scrollbar-thumb {
background-color: var(--text-title);
border-radius: 25px 0 0 25px;
}

/* Light mode */
:root {
--bg-main: var(-color-zinc-50);

--text-title: var(--color-zinc-950);
--text-shadow: rgba(255, 255, 255, 0.5);
--text-main: var(--color-zinc-900);
--button-background: var(--color-zinc-100);
--text-live: var(--color-rose-500);
}

<style scoped>
.bg2 {
background-image: linear-gradient(45deg, var(--bg-gradient-color1), var(--bg-gradient-color2));
/* Dark mode */
@media (prefers-color-scheme: dark) {
:root {
--bg-main: var(--color-zinc-900);

--text-title: var(--color-zinc-50);
--text-shadow: rgba(0, 0, 0, 0.8);
--text-main: var(--color-zinc-100);
--button-background: var(--color-zinc-950);
--text-live: var(--color-rose-400);
}
}

.unity-title {
color: var(--text-title);
}

.unity-bg {
background-color: var(--bg-main);
}

.unity-button {
background-color: var(--button-background);
}
</style>

<script setup lang="ts">
const route = useRoute();

useHead({
titleTemplate: '%s - Unity Multiplayer',
meta: [
{
property: 'og:title',
content: `${route.meta.name} - Unity Multiplayer`
},
{
property: 'twitter:title',
content: `${route.meta.name} - Unity Multiplayer`
},
{
property: 'title',
content: `${route.meta.name} - Unity Multiplayer`
}
]
});
import Navbar from "~/components/navbar/Navbar.vue";
import FooterBar from "~/components/FooterBar.vue";

import '~/assets/fonts/Montserrat-Italic.ttf'
import '~/assets/fonts/Montserrat.ttf'
import '~/assets/fonts/Oswald.ttf'

const route = useRoute();

useHead({
titleTemplate: '%s - Unity Multiplayer',
meta: [
{
property: 'og:title',
content: `${route.meta.name} - Unity Multiplayer`
},
{
property: 'twitter:title',
content: `${route.meta.name} - Unity Multiplayer`
},
{
property: 'title',
content: `${route.meta.name} - Unity Multiplayer`
}
]
});
</script>
115 changes: 0 additions & 115 deletions assets/css/index.css

This file was deleted.

6 changes: 6 additions & 0 deletions assets/css/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@import url('https://gists.rawgit.com/mfd/f3d96ec7f0e8f034cc22ea73b3797b59/raw/856f1dbb8d807aabceb80b6d4f94b464df461b3e/gotham.css');
@import "tailwindcss";

@theme {
--font-sans: GothamPro, Roboto, 'Segoe UI', sans-serif;
}
24 changes: 18 additions & 6 deletions assets/factions.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,30 @@
{
"emberhold": {
"name": "Emberhold",
"color": "#e60631"
"color": "#F14C4C"
},
"suncrest": {
"name": "Suncrest",
"color": "#fee63c"
"color": "#FFD152"
},
"fernfall": {
"name": "Fernfall",
"color": "#8ce41a"
"color": "#26D167"
},
"unity_team": {
"name": "Unity Team",
"color": "#2a91ff"
"unity_team:lead": {
"name": "Team Lead",
"color": "rgb(195, 122, 255)"
},
"unity_team:development": {
"name": "Development Branch",
"color": "rgb(102, 209, 255)"
},
"unity_team:creative": {
"name": "Creative Branch",
"color": "rgb(195, 239, 60)"
},
"unity_team:acting": {
"name": "Acting Branch",
"color": "rgb(255, 176, 46)"
}
}
Loading