-
Notifications
You must be signed in to change notification settings - Fork 5
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
Showing
308 changed files
with
54,808 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
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.
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.
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.
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.
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.
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
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,163 @@ | ||
/*! | ||
========================================================= | ||
* Argon Design System - v1.0.0 | ||
========================================================= | ||
* Product Page: https://www.creative-tim.com/product/argon-design-system | ||
* Copyright 2018 Creative Tim (https://www.creative-tim.com) | ||
* Licensed under MIT (https://github.com/creativetimofficial/argon-design-system/blob/master/LICENSE.md) | ||
* Coded by www.creative-tim.com | ||
========================================================= | ||
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
*/ | ||
|
||
"use strict"; | ||
$(document).ready(function() { | ||
|
||
// Collapse navigation | ||
$('.navbar-main .collapse').on('hide.bs.collapse', function () { | ||
var $this = $(this); | ||
$this.addClass('collapsing-out'); | ||
}); | ||
|
||
$('.navbar-main .collapse').on('hidden.bs.collapse', function () { | ||
var $this = $(this); | ||
$this.removeClass('collapsing-out'); | ||
}); | ||
|
||
$('.navbar-main .dropdown').on('hide.bs.dropdown', function () { | ||
var $this = $(this).find('.dropdown-menu'); | ||
|
||
$this.addClass('close'); | ||
|
||
setTimeout(function(){ | ||
$this.removeClass('close'); | ||
}, 200); | ||
|
||
}); | ||
|
||
// Headroom - show/hide navbar on scroll | ||
if($('.headroom')[0]) { | ||
var headroom = new Headroom(document.querySelector("#navbar-main"), { | ||
offset: 100, | ||
tolerance : { | ||
up : 30, | ||
down : 30 | ||
}, | ||
}); | ||
headroom.init(); | ||
} | ||
|
||
// Datepicker | ||
$('.datepicker')[0] && $('.datepicker').each(function() { | ||
$('.datepicker').datepicker({ | ||
disableTouchKeyboard: true, | ||
autoclose: false | ||
}); | ||
}); | ||
|
||
// Tooltip | ||
$('[data-toggle="tooltip"]').tooltip(); | ||
|
||
// Popover | ||
$('[data-toggle="popover"]').each(function() { | ||
var popoverClass = ''; | ||
if($(this).data('color')) { | ||
popoverClass = 'popover-'+$(this).data('color'); | ||
} | ||
$(this).popover({ | ||
trigger: 'focus', | ||
template: '<div class="popover '+ popoverClass +'" role="tooltip"><div class="arrow"></div><h3 class="popover-header"></h3><div class="popover-body"></div></div>' | ||
}) | ||
}); | ||
|
||
// Additional .focus class on form-groups | ||
$('.form-control').on('focus blur', function(e) { | ||
$(this).parents('.form-group').toggleClass('focused', (e.type === 'focus' || this.value.length > 0)); | ||
}).trigger('blur'); | ||
|
||
// NoUI Slider | ||
if ($(".input-slider-container")[0]) { | ||
$('.input-slider-container').each(function() { | ||
|
||
var slider = $(this).find('.input-slider'); | ||
var sliderId = slider.attr('id'); | ||
var minValue = slider.data('range-value-min'); | ||
var maxValue = slider.data('range-value-max'); | ||
|
||
var sliderValue = $(this).find('.range-slider-value'); | ||
var sliderValueId = sliderValue.attr('id'); | ||
var startValue = sliderValue.data('range-value-low'); | ||
|
||
var c = document.getElementById(sliderId), | ||
d = document.getElementById(sliderValueId); | ||
|
||
noUiSlider.create(c, { | ||
start: [parseInt(startValue)], | ||
connect: [true, false], | ||
//step: 1000, | ||
range: { | ||
'min': [parseInt(minValue)], | ||
'max': [parseInt(maxValue)] | ||
} | ||
}); | ||
|
||
c.noUiSlider.on('update', function(a, b) { | ||
d.textContent = a[b]; | ||
}); | ||
}) | ||
} | ||
|
||
if ($("#input-slider-range")[0]) { | ||
var c = document.getElementById("input-slider-range"), | ||
d = document.getElementById("input-slider-range-value-low"), | ||
e = document.getElementById("input-slider-range-value-high"), | ||
f = [d, e]; | ||
|
||
noUiSlider.create(c, { | ||
start: [parseInt(d.getAttribute('data-range-value-low')), parseInt(e.getAttribute('data-range-value-high'))], | ||
connect: !0, | ||
range: { | ||
min: parseInt(c.getAttribute('data-range-value-min')), | ||
max: parseInt(c.getAttribute('data-range-value-max')) | ||
} | ||
}), c.noUiSlider.on("update", function(a, b) { | ||
f[b].textContent = a[b] | ||
}) | ||
} | ||
|
||
|
||
// When in viewport | ||
$('[data-toggle="on-screen"]')[0] && $('[data-toggle="on-screen"]').onScreen({ | ||
container: window, | ||
direction: 'vertical', | ||
doIn: function() { | ||
//alert(); | ||
}, | ||
doOut: function() { | ||
// Do something to the matched elements as they get off scren | ||
}, | ||
tolerance: 200, | ||
throttle: 50, | ||
toggleClass: 'on-screen', | ||
debug: false | ||
}); | ||
|
||
// Scroll to anchor with scroll animation | ||
$('[data-toggle="scroll"]').on('click', function(event) { | ||
var hash = $(this).attr('href'); | ||
var offset = $(this).data('offset') ? $(this).data('offset') : 0; | ||
|
||
// Animate scroll to the selected section | ||
$('html, body').stop(true, true).animate({ | ||
scrollTop: $(hash).offset().top - offset | ||
}, 600); | ||
|
||
event.preventDefault(); | ||
}); | ||
}); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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,100 @@ | ||
/*! | ||
========================================================= | ||
* Argon Design System - v1.0.0 | ||
========================================================= | ||
* Product Page: https://www.creative-tim.com/product/argon-design-system | ||
* Copyright 2018 Creative Tim (https://www.creative-tim.com) | ||
* Licensed under MIT (https://github.com/creativetimofficial/argon-design-system/blob/master/LICENSE.md) | ||
* Coded by www.creative-tim.com | ||
========================================================= | ||
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
*/ | ||
|
||
// Core | ||
|
||
@import "bootstrap/functions"; | ||
@import "custom/functions"; | ||
|
||
@import "custom/variables"; | ||
@import "bootstrap/variables"; | ||
|
||
@import "bootstrap/mixins"; | ||
@import "custom/mixins"; | ||
|
||
// Bootstrap components | ||
|
||
@import "bootstrap/root"; | ||
@import "bootstrap/reboot"; | ||
@import "bootstrap/type"; | ||
@import "bootstrap/images"; | ||
@import "bootstrap/code"; | ||
@import "bootstrap/grid"; | ||
@import "bootstrap/tables"; | ||
@import "bootstrap/forms"; | ||
@import "bootstrap/buttons"; | ||
@import "bootstrap/transitions"; | ||
@import "bootstrap/dropdown"; | ||
@import "bootstrap/button-group"; | ||
@import "bootstrap/input-group"; | ||
@import "bootstrap/custom-forms"; | ||
@import "bootstrap/nav"; | ||
@import "bootstrap/navbar"; | ||
@import "bootstrap/card"; | ||
@import "bootstrap/breadcrumb"; | ||
@import "bootstrap/pagination"; | ||
@import "bootstrap/badge"; | ||
@import "bootstrap/jumbotron"; | ||
@import "bootstrap/alert"; | ||
@import "bootstrap/progress"; | ||
@import "bootstrap/media"; | ||
@import "bootstrap/list-group"; | ||
@import "bootstrap/close"; | ||
@import "bootstrap/modal"; | ||
@import "bootstrap/tooltip"; | ||
@import "bootstrap/popover"; | ||
@import "bootstrap/carousel"; | ||
@import "bootstrap/utilities"; | ||
@import "bootstrap/print"; | ||
|
||
// Custom components | ||
|
||
@import "custom/reboot.scss"; | ||
@import "custom/global.scss"; | ||
@import "custom/utilities.scss"; | ||
|
||
@import "custom/accordion.scss"; | ||
@import "custom/alerts.scss"; | ||
@import "custom/avatars.scss"; | ||
@import "custom/badge.scss"; | ||
@import "custom/buttons.scss"; | ||
@import "custom/card.scss"; | ||
@import "custom/carousel.scss"; | ||
@import "custom/close.scss"; | ||
@import "custom/custom-forms.scss"; | ||
@import "custom/dropdown.scss"; | ||
@import "custom/footer.scss"; | ||
@import "custom/forms.scss"; | ||
@import "custom/grid.scss"; | ||
@import "custom/icons.scss"; | ||
@import "custom/input-group.scss"; | ||
@import "custom/list-group.scss"; | ||
@import "custom/modal.scss"; | ||
@import "custom/nav.scss"; | ||
@import "custom/navbar.scss"; | ||
@import "custom/pagination.scss"; | ||
@import "custom/popover.scss"; | ||
@import "custom/progress.scss"; | ||
@import "custom/section.scss"; | ||
@import "custom/type.scss"; | ||
|
||
// Vendor | ||
|
||
@import "custom/vendor/bootstrap-datepicker.scss"; | ||
@import "custom/vendor/headroom.scss"; | ||
@import "custom/vendor/nouislider.scss"; |
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,51 @@ | ||
// | ||
// Base styles | ||
// | ||
|
||
.alert { | ||
position: relative; | ||
padding: $alert-padding-y $alert-padding-x; | ||
margin-bottom: $alert-margin-bottom; | ||
border: $alert-border-width solid transparent; | ||
@include border-radius($alert-border-radius); | ||
} | ||
|
||
// Headings for larger alerts | ||
.alert-heading { | ||
// Specified to prevent conflicts of changing $headings-color | ||
color: inherit; | ||
} | ||
|
||
// Provide class for links that match alerts | ||
.alert-link { | ||
font-weight: $alert-link-font-weight; | ||
} | ||
|
||
|
||
// Dismissible alerts | ||
// | ||
// Expand the right padding and account for the close button's positioning. | ||
|
||
.alert-dismissible { | ||
padding-right: ($close-font-size + $alert-padding-x * 2); | ||
|
||
// Adjust close link position | ||
.close { | ||
position: absolute; | ||
top: 0; | ||
right: 0; | ||
padding: $alert-padding-y $alert-padding-x; | ||
color: inherit; | ||
} | ||
} | ||
|
||
|
||
// Alternate styles | ||
// | ||
// Generate contextual modifier classes for colorizing the alert. | ||
|
||
@each $color, $value in $theme-colors { | ||
.alert-#{$color} { | ||
@include alert-variant(theme-color-level($color, $alert-bg-level), theme-color-level($color, $alert-border-level), theme-color-level($color, $alert-color-level)); | ||
} | ||
} |
Oops, something went wrong.