1
1
mirror of https://github.com/neosubhamoy/neosubhamoy-portfolio.git synced 2025-12-19 20:33:06 +05:30

First commit...!!

This commit is contained in:
2023-07-04 00:59:51 +05:30
commit 3b8c8af842
18 changed files with 2617 additions and 0 deletions

View File

@@ -0,0 +1,63 @@
::-webkit-scrollbar {
width: 4px;
}
::-webkit-scrollbar-track {
background: #0F172A;
}
::-webkit-scrollbar-thumb {
background: rgba(56, 189, 248, 0.30);
}
::-webkit-scrollbar-thumb:hover {
background: #38BDF8;
}
@keyframes scroll {
0% {
transform: translateY(0);
}
30% {
transform: translateY(100px);
}
}
.animate-scroll {
animation: scroll ease 1.5s infinite;
}
@keyframes slide-up {
0% {
opacity: 1;
transform: translateY(0);
}
100% {
opacity: 0;
transform: translateY(-100%);
}
}
.animate-slide-up {
animation: slide-up 0.5s ease-in-out;
}
.aboutcontainer:hover::before {
opacity: 1;
}
.aboutcontainer::before {
background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(255,255,255,0.06), transparent 40%);
border-radius: inherit;
content: "";
height: 100%;
width: 100%;
position: absolute;
left: 0px;
top: 0px;
z-index: 2;
opacity: 0;
transition: opacity 500ms;
}