Skip to content

Commit

Permalink
🔵 Website 1.1.2
Browse files Browse the repository at this point in the history
+ Fixed "links" page talking a long time to load
-  Side effect: Moved credit section up... sorry (doesnt affect much)
  • Loading branch information
Frontesque committed Nov 28, 2021
1 parent bb8def7 commit 8c5a376
Show file tree
Hide file tree
Showing 4 changed files with 89 additions and 39 deletions.
4 changes: 2 additions & 2 deletions Website/layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
<v-img src="/ui/abstract.svg" style="position: absolute; top: 0; right: 0; width: 100%; height: 100%;" />


<section style="position: relative;">
<div class="center" style="width: 90vw">
<section style="position: relative; height: 100%;">
<div class="center" style="width: 90vw;">
<center style="width: 90vw">

<nuxt />
Expand Down
2 changes: 1 addition & 1 deletion Website/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<v-btn class="mainAltButton" :href="discordLink" target="_blank">
<v-icon style="margin-right: 0.5em;">mdi-discord</v-icon>
Our Discord
Discord
</v-btn>

</div>
Expand Down
66 changes: 66 additions & 0 deletions Website/pages/links copy.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<template>
<div>

<section style="position: relative;">


<div class="center">
<center>

<h1 style="font-size: 3em; margin-bottom: 0;">Project Links</h1>

<div style="color: #999">
<p style="margin-bottom: 1em;">Links to the project and it's developers</p>
</div>

<v-btn class="mainAltButton" :href="githubLink" target="_blank">
<v-icon style="margin-right: 0.5em;">mdi-github</v-icon>
Github
</v-btn>

<v-btn class="mainAltButton" :href="discordLink" target="_blank">
<v-icon style="margin-right: 0.5em;">mdi-discord</v-icon>
Discord
</v-btn>

<h1 style="margin-top: 1em;">Contact Me</h1>

<v-btn class="mainAltButton" :href="emailLink" target="_blank">
<v-icon style="margin-right: 0.5em;">mdi-email</v-icon>
Email
</v-btn>

</center>
</div>


</section>

<p id="credits">Site by <v-icon color="#555">mdi-discord</v-icon> Front#2990.</p>

</div>
</template>

<style scoped>
#credits {
position: absolute;
bottom: 0;
left: 50%;
transform: translate(-50%,0);
color: #555;
}
</style>

<script>
export default {
layout: 'default_legacy',
data() {
return {
githubLink: "https://github.com/Anarios/return-youtube-dislike",
discordLink: "https://discord.gg/mYnESY4Md5",
emailLink: "mailto:selivano.d@gmail.com "
}
}
}
</script>
56 changes: 20 additions & 36 deletions Website/pages/links.vue
Original file line number Diff line number Diff line change
@@ -1,59 +1,43 @@
<template>
<div>
<div style="height: 100%">

<section style="position: relative;">


<div class="center">
<center>

<h1 style="font-size: 3em; margin-bottom: 0;">Project Links</h1>
<h1 style="font-size: 3em; margin-bottom: 0;">Project Links</h1>

<div style="color: #999">
<p style="margin-bottom: 1em;">Links to the project and it's developers</p>
</div>

<v-btn class="mainAltButton" :href="githubLink" target="_blank">
<v-icon style="margin-right: 0.5em;">mdi-github</v-icon>
Github
</v-btn>

<v-btn class="mainAltButton" :href="discordLink" target="_blank">
<v-icon style="margin-right: 0.5em;">mdi-discord</v-icon>
Discord
</v-btn>

<h1 style="margin-top: 1em;">Contact Me</h1>
<div style="color: #999">
<p style="margin-bottom: 1em;">Links to the project and it's developers</p>
</div>

<v-btn class="mainAltButton" :href="emailLink" target="_blank">
<v-icon style="margin-right: 0.5em;">mdi-email</v-icon>
Email
</v-btn>
<v-btn class="mainAltButton" :href="githubLink" target="_blank">
<v-icon style="margin-right: 0.5em;">mdi-github</v-icon>
Github
</v-btn>

</center>
</div>
<v-btn class="mainAltButton" :href="discordLink" target="_blank">
<v-icon style="margin-right: 0.5em;">mdi-discord</v-icon>
Discord
</v-btn>

<h1 style="margin-top: 1em;">Contact Me</h1>

</section>
<v-btn class="mainAltButton" :href="emailLink" target="_blank">
<v-icon style="margin-right: 0.5em;">mdi-email</v-icon>
Email
</v-btn>

<p id="credits">Site by <v-icon color="#555">mdi-discord</v-icon> Front#2990.</p>
<p id="credits">Site by <v-icon color="#555">mdi-discord</v-icon> Front#2990</p>

</div>
</template>

<style scoped>
#credits {
position: absolute;
bottom: 0;
left: 50%;
transform: translate(-50%,0);
transform: translate(0,100%);
color: #555;
}
</style>

<script>
export default {
layout: 'default_legacy',
data() {
return {
githubLink: "https://github.com/Anarios/return-youtube-dislike",
Expand Down

0 comments on commit 8c5a376

Please sign in to comment.