links: Added initial links page
This commit is contained in:
43
assets/css/GridSystem-1.css
Normal file
43
assets/css/GridSystem-1.css
Normal file
@@ -0,0 +1,43 @@
|
||||
.text2-center {
|
||||
text-align: center;
|
||||
margin: 1.25rem 0;
|
||||
border-top: 1px solid #dadada;
|
||||
padding: 1.25rem 0;
|
||||
}
|
||||
|
||||
.text-center1 {
|
||||
text-align: center;
|
||||
margin: 1.25rem 0;
|
||||
border-bottom: 1px solid #dadada;
|
||||
padding: 1.25rem 0;
|
||||
}
|
||||
|
||||
.col-md-3 {
|
||||
margin: 1.25rem 0;
|
||||
}
|
||||
|
||||
.shadow {
|
||||
box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
|
||||
}
|
||||
|
||||
.rounded {
|
||||
border-radius: .25rem !important;
|
||||
}
|
||||
|
||||
.border {
|
||||
border: 0px !important;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: #2c3134;
|
||||
}
|
||||
|
||||
h2 {
|
||||
color: #2c3134;
|
||||
}
|
||||
|
||||
.btn:hover {
|
||||
color: black !important;
|
||||
background-color: white !important;
|
||||
}
|
||||
|
||||
1650
assets/css/animate.min.css
vendored
Normal file
1650
assets/css/animate.min.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
BIN
assets/fonts/line-awesome.eot
Normal file
BIN
assets/fonts/line-awesome.eot
Normal file
Binary file not shown.
15
assets/fonts/line-awesome.min.css
vendored
Normal file
15
assets/fonts/line-awesome.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
2628
assets/fonts/line-awesome.svg
Normal file
2628
assets/fonts/line-awesome.svg
Normal file
File diff suppressed because it is too large
Load Diff
|
After Width: | Height: | Size: 424 KiB |
BIN
assets/fonts/line-awesome.ttf
Normal file
BIN
assets/fonts/line-awesome.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/line-awesome.woff
Normal file
BIN
assets/fonts/line-awesome.woff
Normal file
Binary file not shown.
BIN
assets/fonts/line-awesome.woff2
Normal file
BIN
assets/fonts/line-awesome.woff2
Normal file
Binary file not shown.
BIN
assets/img/links-bg.png
Normal file
BIN
assets/img/links-bg.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 MiB |
19
assets/js/bs-init.js
Normal file
19
assets/js/bs-init.js
Normal file
@@ -0,0 +1,19 @@
|
||||
|
||||
if (window.innerWidth < 768) {
|
||||
[].slice.call(document.querySelectorAll('[data-bss-disabled-mobile]')).forEach(function (elem) {
|
||||
elem.classList.remove('animated');
|
||||
elem.removeAttribute('data-bss-hover-animate');
|
||||
elem.removeAttribute('data-aos');
|
||||
elem.removeAttribute('data-bss-parallax-bg');
|
||||
elem.removeAttribute('data-bss-scroll-zoom');
|
||||
});
|
||||
}
|
||||
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
|
||||
var hoverAnimationTriggerList = [].slice.call(document.querySelectorAll('[data-bss-hover-animate]'));
|
||||
var hoverAnimationList = hoverAnimationTriggerList.forEach(function (hoverAnimationEl) {
|
||||
hoverAnimationEl.addEventListener('mouseenter', function(e){ e.target.classList.add('animated', e.target.dataset.bssHoverAnimate) });
|
||||
hoverAnimationEl.addEventListener('mouseleave', function(e){ e.target.classList.remove('animated', e.target.dataset.bssHoverAnimate) });
|
||||
});
|
||||
}, false);
|
||||
Reference in New Issue
Block a user