Skip to content

Commit

Permalink
Dark Mode Added
Browse files Browse the repository at this point in the history
  • Loading branch information
AmeyGohil committed Apr 22, 2021
1 parent 92592c6 commit 8bc64fa
Show file tree
Hide file tree
Showing 15 changed files with 4,385 additions and 70 deletions.
3,377 changes: 3,377 additions & 0 deletions assets/css/animate.css

Large diffs are not rendered by default.

32 changes: 32 additions & 0 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -264,4 +264,36 @@ a{
padding: 5px 20px;
font-weight: bolder;
font-size: 1.5em;
}
.custom-card{
background: #263238;
padding: 25px;
border-radius: 15px;
}
.custom-card>div>div{
padding: 2px 10px;
}
.underline{
position: relative;
}
.underline:after{
content: "";
background: white;
height: 2px;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
}
.dropdown-menu{
display: block;
visibility: hidden;
opacity: 0;
top: 90%;
transition: all 0.2s ease-in-out;
}
.dropdown:hover .dropdown-menu{
visibility: visible;
opacity: 1;
top: 100%;
}
Binary file added assets/img/home/android_app_fundamental_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/home/android_app_fundamental_2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/home/hero_section.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/home/hero_section_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/home/hero_section_3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/home/other.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
839 changes: 839 additions & 0 deletions assets/img/home/reverse_eng.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/home/reverse_eng_2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/home/security_analysis_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/home/security_analysis_2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions assets/js/jquery.waypoints.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

37 changes: 36 additions & 1 deletion assets/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,40 @@ function foo() {
scrollTop: $(target).offset().top - 56 // Means Less header height
},10);
}
})
});
// var contentWayPoint = function() {
// var i = 0;
// $('.waypt-animate').waypoint( function( direction ) {
//
// if( direction === 'down' && !$(this.element).hasClass('waypt-animated') ) {
//
// i++;
//
// $(this.element).addClass('item-animate');
// setTimeout(function(){
//
// $('body .waypt-animate.item-animate').each(function(k){
// var el = $(this);
// setTimeout( function () {
// var effect = el.data('animate-effect');
// if ( effect === 'fadeIn') {
// el.addClass('fadeIn waypt-animated');
// } else if ( effect === 'fadeInLeft') {
// el.addClass('fadeInLeft waypt-animated');
// } else if ( effect === 'fadeInRight') {
// el.addClass('fadeInRight waypt-animated');
// } else {
// el.addClass('fadeInUp waypt-animated');
// }
// el.removeClass('item-animate');
// }, k * 50, 'easeInOutExpo' );
// });
//
// }, 100);
//
// }
//
// } , { offset: '95%' } );
// };
// contentWayPoint();
})(jQuery);
Loading

0 comments on commit 8bc64fa

Please sign in to comment.