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
11 changes: 10 additions & 1 deletion Contributors.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,18 @@
| Shreya | [@shreyaar12](https://github.com/Shreyaar12) | |
| --------------------- | ------------------------------------------------------------- | ---------------- |
| Raj Kumar | [@raj03kumar](https://github.com/raj03kumar) | |
| --------------------- | ------------------------------------------------------------- | ---------------- |
| --------------------- |
------------------------------------------------------------- | ---------------- |
| Debsourya Datta | [@debsouryadatta](https://github.com/debsouryadatta) | |
------------------------------------------------------------- | ---------------- |
| Ayush Nighoskar | [@ayushnighoskar](https://github.com/ayushnighoskar) | |
| --------------------- | ------------------------------------------------------------- | ---------------- |


| Avdhesh Varshney | [@Avdhesh-Varshney](https://github.com/Avdhesh-Varshney)| |
| --------------------- | ------------------------------------------------------------- | ---------------- |
=======
| Avdhesh Varshney | [@Avdhesh-Varshney](https://github.com/Avdhesh-Varshney)|
|------------------- | -------------------------------------------------------------| ---------------- |
Anukanksha Priya | [@cleveranu](https://github.com/cleveranu) | |

42 changes: 41 additions & 1 deletion assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -456,6 +456,33 @@ nav {
box-shadow: 0px 0px 10px 1px #2980b9;
}

.to-top {
background: white;
position: fixed;
bottom: 16px;
right:32px;
width:50px;
height:50px;
border-radius:50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 32px;
color: #1f1f1f;
text-decoration: none;
opacity:0;
pointer-events: none;
transition: all .4s;
}
.to-top.active {
bottom: 32px;
pointer-events: auto;
opacity:1;
}
html {
scroll-behavior: smooth;
}

/* Footer Section Starts */
.section {
background-color: black;
Expand Down Expand Up @@ -655,7 +682,15 @@ nav {
transition: transform 0.4s;
}



/* Footer Section Ends */

=======
input:checked + .slider:before {
=======
input:checked+.slider:before {

transform: translateX(20px);
}

Expand All @@ -671,5 +706,10 @@ a {
position: static;
bottom: 0;
width: 100%;

max-width: 700px;
}

max-width: 700px;
}
}

13 changes: 12 additions & 1 deletion filter_project.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,15 @@ const displayRequiredProjects = (category, search_value) => {
if(!found_card.length) found_card='<h2 style="color: red";>Cannot find the project</h1>'

card_grid.innerHTML = found_card;
};
};

// Scroll to the top when the button is clicked
const toTop = document.querySelector(".to-top");

window.addEventListener("scroll", () => {
if(window.pageYOffset >100) {
toTop.classList.add("active");
} else {
toTop.classList.remove("active");
}
})
57 changes: 57 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@


<head>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/66e60b4850.js" crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/66e60b4850.js" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/59c338ca6e.js" crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Caveat&family=Dancing+Script:wght@400;700&family=Playfair+Display:ital,wght@0,400;1,500&family=Quintessential&family=Saira+Condensed:wght@800&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/66e60b4850.js" crossorigin="anonymous"></script>
<link href="assets/style.css" rel="stylesheet">
<title>CODECANVAS</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!DOCTYPE html>
<html lang="en">

Expand Down Expand Up @@ -286,6 +309,30 @@ <h3 class="card__heading">Password Generator</h3>
</div>
</a>


<a class="card" href="projects/Memory_Game/index.html">
<div class="card__background" style="background-image: url(projects/Memory_Game/images/preview.png)"></div>
<div class="card__content">
<p class="card__category">Game</p>
<h3 class="card__heading">Memory Game</h3>
</div>
</a>

<a class="card" href="projects/Clothing_Shop/index.html">
<div class="card__background" style="background-image: url(projects/Clothing_Shop/images/img-10.png)"></div>
<div class="card__content">
<p class="card__category">Order</p>
<h3 class="card__heading">Clothing Shop</h3>
</div>
</a>

<div>
</section>
<a href="#" class="to-top">
<i class="fas fa-chevron-up"></i>
</a>


<a class="card" href="projects/Tilting_Maze_Game/index.html">
<div class="card__background" style="background-image: url(projects/Tilting_Maze_Game/maze.png)"></div>
<div class="card__content">
Expand Down Expand Up @@ -527,6 +574,16 @@ <h3 class="card__heading">Netflix Clone</h3>
</div>
</section>




<footer class="center bg-dark">
<p>IEEE SSIT VIT &copy; 2023</p>
</footer>

<!-- Footer Section Starts -->
<div class="section"><h3>CONTACT <span>US</span></h3>
=======
<div class="section" id="contact">
<h3>CONTACT <span>US</span></h3>
<div class="wrapper">
Expand Down
9 changes: 0 additions & 9 deletions script.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,3 @@


var scrollToElement = function(el, ms){
var speed = (ms) ? ms : 600;
$('html,body').animate({
scrollTop: $(el).offset().top
}, speed);
}

$(document).ready(function() {
$('.nav-link').on('click', function(e) {
e.preventDefault();
Expand Down