forked from SudhanPlayz/Discord-MusicBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
CodeKid0
authored
Sep 24, 2021
1 parent
51717d7
commit 58d6668
Showing
6 changed files
with
184 additions
and
151 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
# IDE | ||
.idea/ | ||
|
||
# Logs | ||
logs | ||
*.log | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,23 +30,26 @@ | |
<div class="position-sticky"> | ||
<div class="list-group list-group-flush mx-3 mt-4"> | ||
<a | ||
href="/dashboard" | ||
class="list-group-item list-group-item-action py-2 ripple active" | ||
aria-current="true" | ||
href="/dashboard" | ||
class="list-group-item list-group-item-action py-2 ripple active" | ||
style="background: #5828EE" | ||
aria-current="true" | ||
> | ||
<i class="fas fa-tachometer-alt fa-fw me-3"></i | ||
><span>Main dashboard</span> | ||
</a> | ||
<a | ||
href="/servers" | ||
class="list-group-item list-group-item-action py-2 ripple" | ||
href="/servers" | ||
class="list-group-item list-group-item-action py-2 ripple" | ||
style="background: #0c0c0c; color: #fff" | ||
> | ||
<i class="fas fa-server fa-fw me-3"></i | ||
><span>Manage Servers</span> | ||
</a> | ||
<a | ||
href="/logout" | ||
class="list-group-item list-group-item-action py-2 ripple" | ||
href="/logout" | ||
class="list-group-item list-group-item-action py-2 ripple" | ||
style="background: #0c0c0c; color: #fff" | ||
> | ||
<i class="fas fa-sign-out-alt fa-fw me-3"></i | ||
><span>Logout</span> | ||
|
@@ -157,33 +160,40 @@ <h3 class="text-info" id="songs">-</h3> | |
</div> | ||
</div> | ||
</section> | ||
<!-- Footer --> | ||
<div class="footer"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-md-12"> | ||
<div class="copyright-text"> | ||
<p> | ||
© 2021 | ||
<a href="//github.com/SudhanPlayz/Discord-MusicBot" | ||
>Discord Music Bot</a | ||
>. All rights reserved. Made by | ||
<a href="//github.com/SudhanPlayz">Sudhan</a> and its | ||
<a | ||
href="//github.com/SudhanPlayz/Discord-MusicBot/graphs/contributors" | ||
>contributors</a | ||
> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- End Footer --> | ||
|
||
</div> | ||
</main> | ||
<!--Main layout--> | ||
</section> | ||
|
||
<!-- Footer --> | ||
<div class="footer"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-md-12"> | ||
<div class="copyright-text"> | ||
<p> | ||
© 2021 | ||
<a href="//github.com/SudhanPlayz/Discord-MusicBot" | ||
>Discord Music Bot</a | ||
>. All rights reserved. | ||
|
||
<br> | ||
|
||
Made by | ||
<a href="//github.com/SudhanPlayz">Sudhan</a> and its | ||
<a | ||
href="//github.com/SudhanPlayz/Discord-MusicBot/graphs/contributors" | ||
>contributors</a | ||
> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- End Footer --> | ||
|
||
<script | ||
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" | ||
integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" | ||
|
@@ -194,7 +204,7 @@ <h3 class="text-info" id="songs">-</h3> | |
</body> | ||
<style> | ||
body { | ||
background: var(--bs-gray-dark); | ||
background: #1a1a1a; | ||
color: #fff; | ||
overflow-x: hidden; | ||
} | ||
|
@@ -237,27 +247,28 @@ <h3 class="text-info" id="songs">-</h3> | |
} | ||
|
||
.card { | ||
color: black; | ||
background: #0c0c0c; | ||
color: white; | ||
} | ||
|
||
.footer { | ||
position: absolute; | ||
bottom: 0; | ||
background: #192027; | ||
background: #0c0c0c; | ||
text-align: center; | ||
padding: 32px 0; | ||
width: 85%; | ||
padding: 26px 0; | ||
width: 100%; | ||
} | ||
|
||
.footer p { | ||
margin: 0; | ||
line-height: 26px; | ||
line-height: 22px; | ||
font-size: 15px; | ||
color: #999; | ||
} | ||
|
||
.footer p a { | ||
color: #5867dd; | ||
color: #5828EE; | ||
text-decoration: none; | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,6 @@ | |
<a class="navbar-brand" href="#"> | ||
<img | ||
src="/logo.gif" | ||
alt="Music Bot Logo" | ||
width="30" | ||
height="30" | ||
class="d-inline-block align-text-top" | ||
|
@@ -55,7 +54,7 @@ | |
</div> | ||
<a | ||
href="/dashboard" | ||
class="btn btn-outline-success me-2" | ||
class="btn red" | ||
type="button" | ||
> | ||
Dashboard | ||
|
@@ -108,26 +107,26 @@ <h2 class="title">Exclusive <span>Features</span></h2> | |
<div class="col-md-6 col-lg-4"> | ||
<div class="single-service"> | ||
<div class="part-1"> | ||
<i class="fab fa-spotify"></i> | ||
<h3 class="title">Spotify, Sound Cloud, YouTube Support</h3> | ||
<i class="fab fa-youtube"></i> | ||
<h3 class="title">Spotify, SoundCloud and YouTube Support</h3> | ||
</div> | ||
<div class="part-2"> | ||
<p class="description"> | ||
Use your spotify playlist, youtube videos, youtube playlists | ||
and much more using this bot | ||
and much more using this bot! | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-md-6 col-lg-4"> | ||
<div class="single-service"> | ||
<div class="part-1"> | ||
<i class="fas fa-music"></i> | ||
<i class="fab fa-itunes-note"></i> | ||
<h3 class="title">Lag free music</h3> | ||
</div> | ||
<div class="part-2"> | ||
<p class="description"> | ||
Bot never lags while playing a song in a voice channel | ||
Bot never lags while playing a song in a voice channel! | ||
</p> | ||
</div> | ||
</div> | ||
|
@@ -140,8 +139,8 @@ <h3 class="title">Server Settings</h3> | |
</div> | ||
<div class="part-2"> | ||
<p class="description"> | ||
Control your song looping song or queue, You can even change | ||
server prefix and server dj role | ||
Control your song looping song or queue. You can even change | ||
bot prefix on server and it's DJ role! | ||
</p> | ||
</div> | ||
</div> | ||
|
@@ -169,30 +168,26 @@ <h2 class="title text-center">Commands</h2> | |
</div> | ||
</div> | ||
<!-- End Commands --> | ||
<!-- Footer --> | ||
<div class="footer"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-md-12"> | ||
<div class="copyright-text"> | ||
<p> | ||
© 2021 | ||
<a href="//github.com/SudhanPlayz/Discord-MusicBot" | ||
>Discord Music Bot</a | ||
>. All rights reserved. Made by | ||
<a href="//github.com/SudhanPlayz">Sudhan</a> and its | ||
<a | ||
href="//github.com/SudhanPlayz/Discord-MusicBot/graphs/contributors" | ||
>contributors</a | ||
> | ||
</p> | ||
</div> | ||
</section> | ||
|
||
<!-- Footer --> | ||
<div class="footer"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-md-12"> | ||
<div class="copyright-text"> | ||
<p> | ||
© 2021 <a href="//github.com/SudhanPlayz/Discord-MusicBot">Discord Music Bot</a>. All rights reserved. | ||
<br> | ||
Made by <a href="//github.com/SudhanPlayz">Sudhan</a> and its <a href="//github.com/SudhanPlayz/Discord-MusicBot/graphs/contributors">contributors</a> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- End Footer --> | ||
</section> | ||
</div> | ||
<!-- End Footer --> | ||
|
||
<script | ||
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" | ||
integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" | ||
|
@@ -202,10 +197,32 @@ <h2 class="title text-center">Commands</h2> | |
</body> | ||
<style> | ||
body { | ||
background: var(--bs-gray-dark); | ||
background: #191919; | ||
color: #fff; | ||
} | ||
|
||
.nav-link{ | ||
color: #5828EE; | ||
} | ||
|
||
.btn { | ||
border: 2px solid black; | ||
color: black; | ||
font-size: 16px; | ||
cursor: pointer; | ||
} | ||
|
||
/* Red, i guess */ | ||
.red { | ||
border-color: #f70037; | ||
color: #f70037; | ||
} | ||
|
||
.red:hover { | ||
background-color: #f70037; | ||
color: white; | ||
} | ||
|
||
.navbar-toggler { | ||
display: none; | ||
} | ||
|
@@ -359,20 +376,20 @@ <h2 class="title text-center">Commands</h2> | |
} | ||
|
||
.footer { | ||
background: #192027; | ||
background: #0c0c0c; | ||
text-align: center; | ||
padding: 32px 0; | ||
padding: 26px 0; | ||
} | ||
|
||
.footer p { | ||
margin: 0; | ||
line-height: 26px; | ||
line-height: 22px; | ||
font-size: 15px; | ||
color: #999; | ||
} | ||
|
||
.footer p a { | ||
color: #5867dd; | ||
color: #5828EE; | ||
text-decoration: none; | ||
} | ||
|
||
|
@@ -385,16 +402,16 @@ <h2 class="title text-center">Commands</h2> | |
} | ||
|
||
::-webkit-scrollbar-track { | ||
background: #192027; | ||
background: #1c1c1c; | ||
} | ||
|
||
::-webkit-scrollbar-thumb { | ||
background: #5867dd; | ||
background: #5828EE; | ||
border-radius: 20px; | ||
} | ||
|
||
::-webkit-scrollbar-thumb:hover { | ||
background: #414ca1; | ||
background: #4f26d2; | ||
} | ||
</style> | ||
<script> | ||
|
Oops, something went wrong.