Skip to content

Commit 6e49d5d

Browse files
authored
Add files via upload
1 parent c6d1cbf commit 6e49d5d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1551
-0
lines changed

dashboard/.env

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
API_URL=localhost:4000/api/v1,
2+
BOT_ROLE_ID=861875883190255646,
3+
BOT_TOKEN=ODYxODg2OTEyNjE2OTg4Njcy.YOQUvQ._nTVCqkKoQFkYLLqK9VwWefVGBQ,
4+
CLIENT_ID=861886912616988672,
5+
CLIENT_SECRET=861886912616988672,
6+
DASHBOARD_URL=localhost:3000,
7+
DEV_ROLE_ID=861876106130489415,
8+
DOWNTIME_CHANNEL_ID=861879504447995925,
9+
GUILD_ID=861875493245419521,
10+
LOG_CHANNEL_ID=861879665232576534,
11+
MONGO_URI=mongodb+srv://wumpusdiscordbotlist:1234S978@classic.as7wj.mongodb.net/myFirstDatabase?retryWrites=true&w=majority,
12+
PORT=3000

dashboard/assets/css/charts.css

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
.charts {
2+
display: flex;
3+
justify-content: space-between;
4+
text-align: center;
5+
}
6+
7+
.charts svg {
8+
display: flex;
9+
float: left;
10+
}
11+
12+
.ct-series-a .ct-line,
13+
.ct-series-a .ct-point {
14+
stroke: var(--success);
15+
stroke-width: 4px;
16+
}
17+
.ct-series-b .ct-line,
18+
.ct-series-b .ct-point {
19+
stroke: var(--danger);
20+
stroke-width: 4px;
21+
}
22+
23+
.ct-series-a .ct-area {
24+
fill: var(--success);
25+
}
26+
.ct-series-b .ct-area {
27+
fill: var(--danger);
28+
}
29+
30+
.ct-grids line,
31+
.ct-labels span,
32+
.ct-grid.ct-horizontal {
33+
color: var(--font);
34+
}
35+
.ct-grid {
36+
stroke: transparent;
37+
}

dashboard/assets/css/commands.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#search {
2+
max-width: 300px;
3+
}
4+
#search + button {
5+
height: 64px;
6+
}
7+
8+
li {
9+
cursor: pointer;
10+
}
11+
12+
.commands li {
13+
margin: 5px 0;
14+
border-radius: 5px;
15+
border: 1px solid var(--font) !important;
16+
}
17+
18+
.list-group-item {
19+
background-color: inherit;
20+
}

dashboard/assets/css/index.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.jumbotron {
2+
margin-top: 25vh;
3+
}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
h1 img {
2+
height: 64px;
3+
}
4+
5+
li.list-group-item {
6+
background-color: var(--background-secondary);
7+
color: var(--heading);
8+
}
9+
10+
li:nth-of-type(1) {
11+
background: linear-gradient(to bottom, #C5B358 0%, #B6A449 100%);
12+
color: white;
13+
}
14+
li:nth-of-type(2) {
15+
background: linear-gradient(to bottom, #C0C0C0 0%, #B1B1B1 100%);
16+
color: white;
17+
}
18+
li:nth-of-type(3) {
19+
background: linear-gradient(to bottom, #CD7F32 0%, #BE7023 100%);
20+
color: white;
21+
}

dashboard/assets/css/main.css

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
body {
2+
overflow-x: hidden;
3+
background-color: var(--background-primary);
4+
color: var(--font);
5+
}
6+
7+
h1, h2, h3, h4, h5 {
8+
color: var(--heading);
9+
}
10+
11+
code.hljs {
12+
background-color: var(--background-secondary);
13+
}
14+
15+
.user-avatar {
16+
max-width: 36px;
17+
}
18+
19+
.navbar a {
20+
color: var(--heading);
21+
}
22+
23+
.table {
24+
color: var(--heading);
25+
}
26+
27+
.dropdown-menu {
28+
background-color: inherit;
29+
}

dashboard/assets/css/music.css

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
.card-header img {
2+
width: 128px;
3+
height: 128px;
4+
object-fit: cover;
5+
border-radius: 15px;
6+
}
7+
8+
.buttons,
9+
#volume {
10+
text-align: center;
11+
}
12+
.q-control,
13+
.position {
14+
display: flex;
15+
justify-content: center;
16+
}
17+
18+
.form-control,
19+
.btn {
20+
box-shadow: none !important;
21+
outline: none !important;
22+
}
23+
24+
.track-list img {
25+
width: 64px;
26+
height: 64px;
27+
object-fit: cover;
28+
border-radius: 10px;
29+
}
30+
31+
#trackSearch {
32+
margin-top: 20px;
33+
max-height: 42px;
34+
}
35+
36+
#volume {
37+
cursor: pointer;
38+
}
39+
#volume input {
40+
opacity: 0;
41+
transition: opacity .3s ease-in-out;
42+
}
43+
#volume:hover input {
44+
opacity: 1;
45+
}

dashboard/assets/css/sidebar.css

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
.icon, .icon img {
2+
font-size: x-large;
3+
4+
height: 52px;
5+
width: 52px;
6+
7+
transition: border-radius .3s ease-in-out;
8+
}
9+
.icon:hover, .icon img:hover {
10+
border-radius: 15% !important;
11+
}
12+
.abbr {
13+
padding-top: 7.5px;
14+
}
15+
16+
.hamburger {
17+
cursor: pointer;
18+
font-size: xxx-large;
19+
20+
bottom: 0;
21+
position: absolute;
22+
}
23+
24+
#sidebar {
25+
padding: 10px;
26+
background-color: var(--background-tertiary);
27+
}
28+
#sidebar,
29+
#sidebarExtension {
30+
height: 100vh;
31+
float: left;
32+
}
33+
34+
/* extension */
35+
#sidebarExtension {
36+
width: 275px;
37+
transition: .3s;
38+
opacity: 1;
39+
background-color: var(--background-secondary);
40+
}
41+
#sidebarExtension .large-icon {
42+
display: block;
43+
margin-left: auto;
44+
margin-right: auto;
45+
width: 50%;
46+
}
47+
#sidebarExtension .large-icon,
48+
#sidebarExtension img {
49+
font-size: xx-large;
50+
51+
width: 96px;
52+
height: 96px;
53+
}
54+
#sidebarExtension .abbr {
55+
padding-top: 25px;
56+
}
57+
#sidebarExtension h4 {
58+
cursor: pointer;
59+
}
60+
61+
#sidebarExtension.closed {
62+
width: 0;
63+
padding: 0px 0;
64+
}
65+
#sidebarExtension.closed {
66+
opacity: 0;
67+
}
68+
69+
/* tabs */
70+
.tabs a {
71+
margin: 2px 10px;
72+
padding: 5px;
73+
padding-left: 10px !important;
74+
border-radius: 5px;
75+
76+
text-decoration: none;
77+
color: var(--font);
78+
}
79+
.tabs a.active,
80+
.tabs a:hover {
81+
background-color: var(--background-primary);
82+
}
83+
84+
.tabs .category {
85+
padding: 24px 0 4px 24px;
86+
font-size: 12px;
87+
text-transform: uppercase;
88+
font-weight: 700;
89+
90+
color: gray;
91+
cursor: pointer;
92+
93+
transition: color .3s ease-in-out;
94+
}
95+
.tabs .category:hover {
96+
color: var(--heading);
97+
}

dashboard/assets/css/theme.css

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
:root,
2+
:root[theme='ASCETIC'] {
3+
--primary: black;
4+
5+
--heading: black;
6+
--font: black;
7+
8+
--background-primary: white;
9+
--background-secondary: #F8F9FA;
10+
--background-tertiary: #F8F9FA;
11+
}
12+
13+
:root[theme='DISCORD'] {
14+
--primary: #7289DA;
15+
16+
--heading: white;
17+
--font: #99AAB5;
18+
19+
--background-primary: #36393F;
20+
--background-secondary: #2F3136;
21+
--background-tertiary: #202225;
22+
}

dashboard/assets/css/utils.css

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
.round {
2+
border-radius: 50% !important;
3+
}
4+
5+
.shadow {
6+
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
7+
}
8+
9+
.cursor-pointer {
10+
cursor: pointer !important;
11+
}
12+
13+
/* buttons */
14+
.btn-gradient {
15+
background-image: linear-gradient(135deg, var(--secondary), var(--info));
16+
color: white;
17+
}
18+
.btn-gradient:hover {
19+
color: white;
20+
}
21+
22+
/* text */
23+
.text-gradient {
24+
background: linear-gradient(135deg, var(--secondary), var(--info));
25+
background-clip: text;
26+
-webkit-background-clip: text;
27+
-webkit-text-fill-color: transparent;
28+
}

0 commit comments

Comments
 (0)