This repository has been archived by the owner on May 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
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
0 parents
commit 2e17974
Showing
341 changed files
with
185,860 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,61 @@ | ||
.tim-typo { | ||
padding-left: 25%; | ||
margin-bottom: 40px; | ||
position: relative; | ||
width: 100%; | ||
} | ||
|
||
.tim-typo .tim-note { | ||
bottom: 5px; | ||
color: #c0c1c2; | ||
display: block; | ||
font-weight: 400; | ||
font-size: 13px; | ||
line-height: 15px; | ||
left: 0; | ||
margin-left: 20px; | ||
position: absolute; | ||
width: 260px; | ||
} | ||
|
||
/* offline-doc */ | ||
|
||
.offline-doc .navbar.navbar-transparent { | ||
padding-top: 25px; | ||
border-bottom: none; | ||
} | ||
|
||
.offline-doc .navbar.navbar-transparent .navbar-minimize { | ||
display: none; | ||
} | ||
|
||
.offline-doc .navbar.navbar-transparent .navbar-brand, | ||
.offline-doc .navbar.navbar-transparent .collapse .navbar-nav .nav-link { | ||
color: #FFFFFF !important; | ||
} | ||
|
||
.offline-doc .footer { | ||
z-index: 3 !important; | ||
} | ||
|
||
.offline-doc .page-header .container { | ||
z-index: 3; | ||
} | ||
|
||
.offline-doc .page-header:after { | ||
background-color: rgba(0, 0, 0, 0.5); | ||
content: ""; | ||
display: block; | ||
height: 100%; | ||
left: 0; | ||
position: absolute; | ||
top: 0; | ||
width: 100%; | ||
z-index: 2; | ||
} | ||
|
||
#map { | ||
z-index: 2; | ||
height: calc(100vh - 70px); | ||
margin-top: 70px; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,237 @@ | ||
demo = { | ||
initDocumentationCharts: function() { | ||
if ($('#dailySalesChart').length != 0 && $('#websiteViewsChart').length != 0) { | ||
/* ----------========== Daily Sales Chart initialization For Documentation ==========---------- */ | ||
|
||
dataDailySalesChart = { | ||
labels: ['M', 'T', 'W', 'T', 'F', 'S', 'S'], | ||
series: [ | ||
[12, 17, 7, 17, 23, 18, 38] | ||
] | ||
}; | ||
|
||
optionsDailySalesChart = { | ||
lineSmooth: Chartist.Interpolation.cardinal({ | ||
tension: 0 | ||
}), | ||
low: 0, | ||
high: 50, // creative tim: we recommend you to set the high sa the biggest value + something for a better look | ||
chartPadding: { | ||
top: 0, | ||
right: 0, | ||
bottom: 0, | ||
left: 0 | ||
}, | ||
} | ||
|
||
var dailySalesChart = new Chartist.Line('#dailySalesChart', dataDailySalesChart, optionsDailySalesChart); | ||
|
||
var animationHeaderChart = new Chartist.Line('#websiteViewsChart', dataDailySalesChart, optionsDailySalesChart); | ||
} | ||
}, | ||
|
||
initDashboardPageCharts: function() { | ||
|
||
if ($('#dailySalesChart').length != 0 || $('#completedTasksChart').length != 0 || $('#websiteViewsChart').length != 0) { | ||
/* ----------========== Daily Sales Chart initialization ==========---------- */ | ||
|
||
dataDailySalesChart = { | ||
labels: ['M', 'T', 'W', 'T', 'F', 'S', 'S'], | ||
series: [ | ||
[12, 17, 7, 17, 23, 18, 38] | ||
] | ||
}; | ||
|
||
optionsDailySalesChart = { | ||
lineSmooth: Chartist.Interpolation.cardinal({ | ||
tension: 0 | ||
}), | ||
low: 0, | ||
high: 50, // creative tim: we recommend you to set the high sa the biggest value + something for a better look | ||
chartPadding: { | ||
top: 0, | ||
right: 0, | ||
bottom: 0, | ||
left: 0 | ||
}, | ||
} | ||
|
||
var dailySalesChart = new Chartist.Line('#dailySalesChart', dataDailySalesChart, optionsDailySalesChart); | ||
|
||
md.startAnimationForLineChart(dailySalesChart); | ||
|
||
|
||
|
||
/* ----------========== Completed Tasks Chart initialization ==========---------- */ | ||
|
||
dataCompletedTasksChart = { | ||
labels: ['12p', '3p', '6p', '9p', '12p', '3a', '6a', '9a'], | ||
series: [ | ||
[230, 750, 450, 300, 280, 240, 200, 190] | ||
] | ||
}; | ||
|
||
optionsCompletedTasksChart = { | ||
lineSmooth: Chartist.Interpolation.cardinal({ | ||
tension: 0 | ||
}), | ||
low: 0, | ||
high: 1000, // creative tim: we recommend you to set the high sa the biggest value + something for a better look | ||
chartPadding: { | ||
top: 0, | ||
right: 0, | ||
bottom: 0, | ||
left: 0 | ||
} | ||
} | ||
|
||
var completedTasksChart = new Chartist.Line('#completedTasksChart', dataCompletedTasksChart, optionsCompletedTasksChart); | ||
|
||
// start animation for the Completed Tasks Chart - Line Chart | ||
md.startAnimationForLineChart(completedTasksChart); | ||
|
||
|
||
/* ----------========== Emails Subscription Chart initialization ==========---------- */ | ||
|
||
var dataWebsiteViewsChart = { | ||
labels: ['J', 'F', 'M', 'A', 'M', 'J', 'J', 'A', 'S', 'O', 'N', 'D'], | ||
series: [ | ||
[542, 443, 320, 780, 553, 453, 326, 434, 568, 610, 756, 895] | ||
|
||
] | ||
}; | ||
var optionsWebsiteViewsChart = { | ||
axisX: { | ||
showGrid: false | ||
}, | ||
low: 0, | ||
high: 1000, | ||
chartPadding: { | ||
top: 0, | ||
right: 5, | ||
bottom: 0, | ||
left: 0 | ||
} | ||
}; | ||
var responsiveOptions = [ | ||
['screen and (max-width: 640px)', { | ||
seriesBarDistance: 5, | ||
axisX: { | ||
labelInterpolationFnc: function(value) { | ||
return value[0]; | ||
} | ||
} | ||
}] | ||
]; | ||
var websiteViewsChart = Chartist.Bar('#websiteViewsChart', dataWebsiteViewsChart, optionsWebsiteViewsChart, responsiveOptions); | ||
|
||
//start animation for the Emails Subscription Chart | ||
md.startAnimationForBarChart(websiteViewsChart); | ||
} | ||
}, | ||
|
||
initGoogleMaps: function() { | ||
var myLatlng = new google.maps.LatLng(40.748817, -73.985428); | ||
var mapOptions = { | ||
zoom: 13, | ||
center: myLatlng, | ||
scrollwheel: false, //we disable de scroll over the map, it is a really annoing when you scroll through page | ||
styles: [{ | ||
"featureType": "water", | ||
"stylers": [{ | ||
"saturation": 43 | ||
}, { | ||
"lightness": -11 | ||
}, { | ||
"hue": "#0088ff" | ||
}] | ||
}, { | ||
"featureType": "road", | ||
"elementType": "geometry.fill", | ||
"stylers": [{ | ||
"hue": "#ff0000" | ||
}, { | ||
"saturation": -100 | ||
}, { | ||
"lightness": 99 | ||
}] | ||
}, { | ||
"featureType": "road", | ||
"elementType": "geometry.stroke", | ||
"stylers": [{ | ||
"color": "#808080" | ||
}, { | ||
"lightness": 54 | ||
}] | ||
}, { | ||
"featureType": "landscape.man_made", | ||
"elementType": "geometry.fill", | ||
"stylers": [{ | ||
"color": "#ece2d9" | ||
}] | ||
}, { | ||
"featureType": "poi.park", | ||
"elementType": "geometry.fill", | ||
"stylers": [{ | ||
"color": "#ccdca1" | ||
}] | ||
}, { | ||
"featureType": "road", | ||
"elementType": "labels.text.fill", | ||
"stylers": [{ | ||
"color": "#767676" | ||
}] | ||
}, { | ||
"featureType": "road", | ||
"elementType": "labels.text.stroke", | ||
"stylers": [{ | ||
"color": "#ffffff" | ||
}] | ||
}, { | ||
"featureType": "poi", | ||
"stylers": [{ | ||
"visibility": "off" | ||
}] | ||
}, { | ||
"featureType": "landscape.natural", | ||
"elementType": "geometry.fill", | ||
"stylers": [{ | ||
"visibility": "on" | ||
}, { | ||
"color": "#b8cb93" | ||
}] | ||
}, { | ||
"featureType": "poi.park", | ||
"stylers": [{ | ||
"visibility": "on" | ||
}] | ||
}, { | ||
"featureType": "poi.sports_complex", | ||
"stylers": [{ | ||
"visibility": "on" | ||
}] | ||
}, { | ||
"featureType": "poi.medical", | ||
"stylers": [{ | ||
"visibility": "on" | ||
}] | ||
}, { | ||
"featureType": "poi.business", | ||
"stylers": [{ | ||
"visibility": "simplified" | ||
}] | ||
}] | ||
|
||
}; | ||
var map = new google.maps.Map(document.getElementById("map"), mapOptions); | ||
|
||
var marker = new google.maps.Marker({ | ||
position: myLatlng, | ||
title: "Hello World!" | ||
}); | ||
|
||
// To add the marker to the map, call setMap(); | ||
marker.setMap(map); | ||
} | ||
|
||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.