Skip to content

Commit

Permalink
landing page for the website, fully responsive
Browse files Browse the repository at this point in the history
  • Loading branch information
r7projects-shayan committed Jun 2, 2024
1 parent 0bb4694 commit fc92c88
Show file tree
Hide file tree
Showing 8 changed files with 5,706 additions and 0 deletions.
120 changes: 120 additions & 0 deletions website/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
particlesJS('particles-js',

{
"particles": {
"number": {
"value": 80,
"density": {
"enable": true,
"value_area": 800
}
},
"color": {
"value": "#ffffff"
},
"shape": {
"type": "circle",
"stroke": {
"width": 0,
"color": "#000000"
},
"polygon": {
"nb_sides": 5
},
"image": {
"src": "img/github.svg",
"width": 100,
"height": 100
}
},
"opacity": {
"value": 0.5,
"random": false,
"anim": {
"enable": false,
"speed": 1,
"opacity_min": 0.1,
"sync": false
}
},
"size": {
"value": 5,
"random": true,
"anim": {
"enable": false,
"speed": 40,
"size_min": 0.1,
"sync": false
}
},
"line_linked": {
"enable": true,
"distance": 150,
"color": "#ffffff",
"opacity": 0.4,
"width": 1
},
"move": {
"enable": true,
"speed": 6,
"direction": "none",
"random": false,
"straight": false,
"out_mode": "out",
"attract": {
"enable": false,
"rotateX": 600,
"rotateY": 1200
}
}
},
"interactivity": {
"detect_on": "canvas",
"events": {
"onhover": {
"enable": true,
"mode": "repulse"
},
"onclick": {
"enable": true,
"mode": "push"
},
"resize": true
},
"modes": {
"grab": {
"distance": 400,
"line_linked": {
"opacity": 1
}
},
"bubble": {
"distance": 400,
"size": 40,
"duration": 2,
"opacity": 8,
"speed": 3
},
"repulse": {
"distance": 200
},
"push": {
"particles_nb": 4
},
"remove": {
"particles_nb": 2
}
}
},
"retina_detect": true,
"config_demo": {
"hide_card": false,
"background_color": "#b61924",
"background_image": "",
"background_position": "50% 50%",
"background_repeat": "no-repeat",
"background_size": "cover"
}
}

);
707 changes: 707 additions & 0 deletions website/index.html

Large diffs are not rendered by default.

103 changes: 103 additions & 0 deletions website/input.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
*{
scroll-behavior: smooth;

}

nav{
z-index:1000;
}
body {
background-color: #000000;
color: #e2e8f0;
scroll-behavior: smooth;
overflow-x: hidden;
}
h1{
overflow: hidden;
}
#particles-js{
width: 100%;
height: 100%;


background-size: cover;
position: absolute;
background-repeat: no-repeat;
}
.neon-text {
text-shadow: 0px -5px 10px rgba(0,209,255,0.63);
}

.neon-border {
border: 2px solid;
border-color: #ffa500;
animation: neon 1.5s infinite alternate;
}

@keyframes neon {
to {
border-color: #ff4500;
}
}
.hover-effect {
transition: all 0.3s ease-in;
}

.hover-effect:hover {
text-shadow: 0 0 5px #00aaff, 0 0 10px #00aaff, 0 0 15px #00aaff, 0 0 20px #00aaff, 0 0 25px #00aaff, 0 0 30px #00aaff, 0 0 35px #00aaff;


}



.banner {
max-width: 100%;
height: auto;
}

/* .nav-item:hover {
text-shadow: 0 0 5px #00aaff, 0 0 10px #00aaff, 0 0 15px #00aaff, 0 0 20px #00aaff, 0 0 25px #00aaff, 0 0 30px #00aaff, 0 0 35px #00aaff;
} */
.list-disc{
z-index: 10;
}

/* Custom scrollbar styles */
body::-webkit-scrollbar {
width: 12px; /* Adjust the width of the scrollbar */
}

body::-webkit-scrollbar-track {
background: #000000; /* Background of the scrollbar track */
}

body::-webkit-scrollbar-thumb {
background-color: #00aaff; /* Color of the scrollbar thumb */
border-radius: 20px; /* Rounded corners for the scrollbar thumb */
border: 3px solid #000000; /* Border around the scrollbar thumb */
}

/*
.domains{
align-items: center;
justify-content: space-around;
} */


.backdrop-blur-lg {
-webkit-backdrop-filter: blur(20px);
backdrop-filter: blur(20px);
}
.navcontainer {
background-color: rgba(55, 65, 81, 0.9);
}
@media (min-width: 1024px) {
.top-navbar {
display: inline-flex !important;
}
}
Loading

0 comments on commit fc92c88

Please sign in to comment.