Skip to content

Commit

Permalink
add template
Browse files Browse the repository at this point in the history
  • Loading branch information
filipkappa committed Feb 25, 2021
1 parent 50fd09e commit 58c5b90
Show file tree
Hide file tree
Showing 325 changed files with 46,296 additions and 0 deletions.
Binary file added License.pdf
Binary file not shown.
595 changes: 595 additions & 0 deletions admin.html

Large diffs are not rendered by default.

39 changes: 39 additions & 0 deletions css/admin.css
@@ -0,0 +1,39 @@
body {
background-color: #fbfbfb;
}
@media (min-width: 991.98px) {
main {
padding-left: 240px;
}
}

/* Sidebar */
.sidebar {
position: fixed;
top: 0;
bottom: 0;
left: 0;
padding: 58px 0 0; /* Height of navbar */
box-shadow: 0 2px 5px 0 rgb(0 0 0 / 5%), 0 2px 10px 0 rgb(0 0 0 / 5%);
width: 240px;
z-index: 600;
}

@media (max-width: 991.98px) {
.sidebar {
width: 100%;
}
}
.sidebar .active {
border-radius: 5px;
box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}

.sidebar-sticky {
position: relative;
top: 0;
height: calc(100vh - 48px);
padding-top: 0.5rem;
overflow-x: hidden;
overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}
48 changes: 48 additions & 0 deletions css/mdb.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions css/mdb.min.css.map

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions css/mdb.rtl.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions css/mdb.rtl.min.css.map

Large diffs are not rendered by default.

Binary file added img/mdb-favicon.ico
Binary file not shown.
41 changes: 41 additions & 0 deletions js/admin.js
@@ -0,0 +1,41 @@
// Graph
var ctx = document.getElementById("myChart");

var myChart = new Chart(ctx, {
type: "line",
data: {
labels: [
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
],
datasets: [
{
data: [15339, 21345, 18483, 24003, 23489, 24092, 12034],
lineTension: 0,
backgroundColor: "transparent",
borderColor: "#007bff",
borderWidth: 4,
pointBackgroundColor: "#007bff",
},
],
},
options: {
scales: {
yAxes: [
{
ticks: {
beginAtZero: false,
},
},
],
},
legend: {
display: false,
},
},
});
20 changes: 20 additions & 0 deletions js/mdb.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions js/mdb.min.js.map

Large diffs are not rendered by default.

0 comments on commit 58c5b90

Please sign in to comment.