Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Synergy-19-website
Website for IOSD DTU's Synergy'19
Website for IOSD DTU's Synergy'19 : The techfest of DTU organized by IOSD-The largest Student run community in India.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ <h2>About The Event</h2>
</div>
<div class="col-lg-3">
<h3>Where</h3>
<p style="text-align:justify;">Delhi Technological University Bawana Road Shahbad Daulatpur Village Rohini Delhi -110042</p>
<p style="text-align:justify;">Delhi Technological University, Bawana Road Shahbad Daulatpur Village Rohini Delhi -110042</p>
</div>
<div class="col-lg-3">
<h3>When</h3>
Expand Down Expand Up @@ -202,7 +202,7 @@ <h1 class="popup-title has-line"><b>Tech Praxis/Android</b>
<span class="popup-text">
<br><br><b>RULES</b>
<ul>
<li>Selection will be done on the basis of the registration form submitted. All girl teams would be given a preference during selection.</li>
<li>Selection will be done on the basis of the registration form submitted. All girls teams would be given a preference during selection.</li>
<li>The decision of organizers is final for selecting the teams for the event.</li>
<li>You must be at allotted location in DTU to work on a project for submission.</li>
<li>You cannot steal another team's source code.</li>
Expand Down
10 changes: 5 additions & 5 deletions js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@ jQuery(document).ready(function( $ ) {

// Back to top button
$(window).scroll(function() {
if ($(this).scrollTop() > 100) {
if ($(this).scrollTop() > 95) {
$('.back-to-top').fadeIn('slow');
} else {
$('.back-to-top').fadeOut('slow');
}
});
$('.back-to-top').click(function(){
$('html, body').animate({scrollTop : 0},1500, 'easeInOutExpo');
$('html, body').animate({scrollTop : 0},1450, 'easeInOutExpo');
return false;
});

// Header fixed on scroll
$(window).scroll(function() {
if ($(this).scrollTop() > 100) {
if ($(this).scrollTop() > 95) {
$('#header').addClass('header-scrolled');
} else {
$('#header').removeClass('header-scrolled');
Expand All @@ -37,7 +37,7 @@ jQuery(document).ready(function( $ ) {
// Initialize Venobox
$('.venobox').venobox({
bgcolor: '',
overlayColor: 'rgba(6, 12, 34, 0.85)',
overlayColor: 'rgba(6, 12, 34, 0.75)',
closeBackground: '',
closeColor: '#fff'
});
Expand All @@ -47,7 +47,7 @@ jQuery(document).ready(function( $ ) {
animation: {
opacity: 'show'
},
speed: 400
speed: 390
});

// Mobile Navigation
Expand Down