Skip to content

Commit

Permalink
Merge pull request #25 from Bot-detector/make-the-site-pretty
Browse files Browse the repository at this point in the history
Make the site pretty
  • Loading branch information
Ferrariic authored Dec 31, 2021
2 parents e86b848 + da51ed1 commit 7f333cc
Show file tree
Hide file tree
Showing 22 changed files with 357 additions and 66 deletions.
Binary file added src/assets/GameAssets/Skull.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/GameAssets/bchicken.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/GameAssets/bot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/GameAssets/coins.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/GameAssets/contact.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/GameAssets/cow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/GameAssets/faladorshield.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/GameAssets/newspaper.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/GameAssets/pig.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/GameAssets/questionmarkcake.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/GameAssets/runefullhelm.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/GameAssets/strangemachine.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/GameAssets/tchicken.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/GameAssets/wchicken.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/bottom.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/top.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
63 changes: 55 additions & 8 deletions src/components/AccountInformation.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
<template>
<v-container>
<div class='background'>
<div class='topbanner'>
<img class='topbanner' contain width='65%' src='../assets/top.gif'>
</div>
<div class="main">
<h1 style='text-align: center;'>TBD: OSRS Account Search</h1>
<div class='headerimage'>
<h1><img class='headerimage1' contain width='35px' src='../assets/GameAssets/runefullhelm.png'>OSRS Account Search<img class='headerimage2' contain width='35px' src='../assets/GameAssets/runefullhelm.png'></h1>
</div>
<p class = 'description'>
If you would like to learn more about an Old School Runescape account, type in the name below. We cannot provide information with 24 hours of a sighting of a player, therefore we cannot provide latest locations and latest gear information for an account.
</p>
Expand Down Expand Up @@ -30,6 +35,9 @@
</div>

</div>
<div class='bottombanner'>
<img class='bottombanner' contain width='65%' src='../assets/bottom.gif'>
</div>
</div>
</v-container>
</template>
Expand Down Expand Up @@ -85,6 +93,44 @@

<style scoped>
div.headerimage {
position: relative;
text-align: center;
padding-top: 10px;
}
img.headerimage1 {
position: relative;
right: 10px;
top: 5px;
}
img.headerimage2 {
position: relative;
left: 10px;
transform: scaleX(-1);
top: 5px;
}
img.topbanner {
position: relative;
z-index: 2;
}
div.topbanner {
position: relative;
text-align: center;
}
img.bottombanner {
position: relative;
z-index: 2;
}
div.bottombanner {
position: relative;
text-align: center;
}
div.background {
background-image: url('../assets/background.jpg');
background-position: center;
Expand Down Expand Up @@ -118,13 +164,14 @@ p.field {
}
div.main {
width:60%;
padding-bottom: 700px;
margin-right: auto;
margin-bottom: 2%;
margin-left: auto;
color: #1F1B12;
background-color: #B9A170;
margin-top: -1%;
margin-bottom: -1%;
width:60%;
padding-bottom: 300px;
margin-right: auto;
margin-left: auto;
color: #1F1B12;
background-color: #B9A170;
}
hr.break {
Expand Down
64 changes: 56 additions & 8 deletions src/components/BannedAccounts.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
<template>
<v-container>
<div class='background'>
<div class='topbanner'>
<img class='topbanner' contain width='65%' src='../assets/top.gif'>
</div>
<div class='main'>
<div>
<h1>TBD: Banned Accounts</h1>
<div class='headerimage'>
<h1><img class='headerimage1' contain width='35px' src='../assets/GameAssets/Skull.png'>Banned Accounts<img class='headerimage2' contain width='35px' src='../assets/GameAssets/Skull.png'></h1>
</div>
<p class = 'description'>
Uh oh, you caught us! We'll be building this page soon enough. Check back later!
</p>
Expand All @@ -15,13 +20,54 @@
<p>bans go here</p>
</div>
</div>
<div class='bottombanner'>
<img class='bottombanner' contain width='65%' src='../assets/bottom.gif'>
</div>
</div>
</v-container>
</template>


<style scoped>
div.headerimage {
position: relative;
text-align: center;
padding-top: 10px;
}
img.headerimage1 {
position: relative;
right: 10px;
top: 5px;
transform: scaleX(-1);
}
img.headerimage2 {
position: relative;
left: 10px;
top: 5px;
}
img.topbanner {
position: relative;
z-index: 2;
}
div.topbanner {
position: relative;
text-align: center;
}
img.bottombanner {
position: relative;
z-index: 2;
}
div.bottombanner {
position: relative;
text-align: center;
}
div.background {
background-image: url('../assets/background.jpg');
background-position: center;
Expand All @@ -31,13 +77,15 @@ div.background {
div.main {
width: 60%;
text-align: center;
padding-bottom: 500px;
margin-right: auto;
margin-left: auto;
color: #1F1B12;
background-color: #B9A170;
margin-top: -1%;
margin-bottom: -1%;
width: 60%;
text-align: center;
padding-bottom: 500px;
margin-right: auto;
margin-left: auto;
color: #1F1B12;
background-color: #B9A170;
}
hr.break {
Expand Down
55 changes: 52 additions & 3 deletions src/components/ContactUs.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
<template>
<v-container>
<div class='background'>
<div class='topbanner'>
<img class='topbanner' contain width='65%' src='../assets/top.gif'>
</div>
<div class="main">

<h1>Contact Us</h1>
<div class='headerimage'>
<h1><img class='headerimage1' contain width='35px' src='../assets/GameAssets/contact.png'>Contact Us<img class='headerimage2' contain width='35px' src='../assets/GameAssets/contact.png'></h1>
</div>

<p class = 'description'>
If you're looking to get in touch with us, feel free to message any of the following links at your convenience. They are monitored on a weekly basis, and we will try to respond as quickly as we can!
</p>
Expand All @@ -19,12 +25,54 @@
</p>

</div>
<div class='bottombanner'>
<img class='bottombanner' contain width='65%' src='../assets/bottom.gif'>
</div>
</div>
</v-container>
</template>

<style scoped>
div.headerimage {
position: relative;
text-align: center;
padding-top: 10px;
}
img.headerimage1 {
position: relative;
right: 10px;
top: 5px;
}
img.headerimage2 {
position: relative;
left: 10px;
transform: scaleX(-1);
top: 5px;
}
img.topbanner {
position: relative;
z-index: 2;
}
div.topbanner {
position: relative;
text-align: center;
}
img.bottombanner {
position: relative;
z-index: 2;
}
div.bottombanner {
position: relative;
text-align: center;
}
div.background {
background-image: url('../assets/background.jpg');
background-position: center;
Expand All @@ -33,11 +81,12 @@ div.background {
}
div.main {
margin-top: -1%;
margin-bottom: -1%;
width: 60%;
text-align: center;
padding-bottom: 700px;
padding-bottom: 300px;
margin-right: auto;
margin-bottom: 2%;
margin-left: auto;
color: #1F1B12;
background-color: #B9A170;
Expand Down
52 changes: 49 additions & 3 deletions src/components/Contributors.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
<template>
<v-container>
<div class='background'>
<div class='topbanner'>
<img class='topbanner' contain width='65%' src='../assets/top.gif'>
</div>
<div class="main">

<h1>Contributors and Supporters of the Bot Detector Plugin</h1>
<div class='headerimage'>
<h1><img class='headerimage1' contain width='35px' src='../assets/GameAssets/coins.png'>Contributors and Supporters of the Bot Detector Plugin<img class='headerimage2' contain width='35px' src='../assets/GameAssets/coins.png'></h1>
</div>
<p class = 'description'>The Bot Detector Plugin is an open-source plugin with many highly-dedicated supporters and contributors. Some notable figures of the plugin and its development are noted here, and are added on a manual basis.
If you believe that your name is missing, and would like for it to be added - please contact Ferrariic. Thank you to everyone that has supported the production of this plugin, and to everyone that has allowed for it to come to fruition.
</p>
Expand Down Expand Up @@ -72,12 +76,53 @@
</div>
</div>
</div>
<div class='bottombanner'>
<img class='bottombanner' contain width='65%' src='../assets/bottom.gif'>
</div>
</div>
</v-container>
</template>

<style scoped>
div.headerimage {
position: relative;
text-align: center;
padding-top: 10px;
}
img.headerimage1 {
position: relative;
right: 10px;
top: 5px;
transform: scaleX(-1);
}
img.headerimage2 {
position: relative;
left: 10px;
top: 5px;
}
img.topbanner {
position: relative;
z-index: 2;
}
div.topbanner {
position: relative;
text-align: center;
}
img.bottombanner {
position: relative;
z-index: 2;
}
div.bottombanner {
position: relative;
text-align: center;
}
div.background {
background-image: url('../assets/background.jpg');
background-position: center;
Expand All @@ -86,10 +131,11 @@ div.background {
}
div.main {
margin-top: -1%;
margin-bottom: -1%;
width:60%;
text-align: center;
margin-right: auto;
margin-bottom: 2%;
margin-left: auto;
color: #1F1B12;
background-color: #B9A170;
Expand Down
Loading

0 comments on commit 7f333cc

Please sign in to comment.