Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Whitzzscott authored Feb 21, 2025
1 parent aeda276 commit a731058
Show file tree
Hide file tree
Showing 38 changed files with 10,423 additions and 0 deletions.
121 changes: 121 additions & 0 deletions Extension-main-Stable/CSS/Login.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
body {
background-color: #000;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(45deg, #000000, #1a1a1a);
animation: gradientBG 15s ease infinite;
background-size: 400% 400%;
scrollbar-width: thin;
scrollbar-color: transparent transparent;
overflow-y: auto;
}
@keyframes gradientBG {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.container {
max-width: 450px;
width: 90%;
perspective: 1000px;
}
.form-control {
border-radius: 20px;
padding: 15px 25px;
border: 2px solid rgba(255, 255, 255, 0.1);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
background-color: rgba(255, 255, 255, 0.05);
color: #fff;
backdrop-filter: blur(10px);
}
.form-control:focus {
box-shadow: 0 0 25px rgba(29, 161, 242, 0.3);
border-color: #1da1f2;
transform: translateY(-2px);
background-color: rgba(255, 255, 255, 0.1);
}
.btn-custom {
background: linear-gradient(45deg, #1da1f2, #1991da);
color: white;
border-radius: 25px;
padding: 15px 30px;
width: 100%;
font-weight: 600;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
border: none;
text-transform: uppercase;
letter-spacing: 2px;
position: relative;
overflow: hidden;
}
.btn-custom:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
}
.btn-custom:active {
transform: translateY(1px);
}
.card {
border-radius: 25px;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
padding: 40px;
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.register-link {
text-align: center;
margin-top: 30px;
color: #fff;
}
.register-btn {
color: #1da1f2;
text-decoration: none;
font-weight: 600;
transition: all 0.3s;
position: relative;
padding: 5px 0;
}
.register-btn:hover {
text-decoration: none;
color: #fff;
text-shadow: 0 0 10px #1da1f2;
}
.register-btn::after {
content: '';
position: absolute;
width: 100%;
height: 2px;
bottom: 0;
left: 0;
background: linear-gradient(90deg, transparent, #1da1f2, transparent);
transform: scaleX(0);
transition: transform 0.5s;
}
.register-btn:hover::after {
transform: scaleX(1);
}
.form-group label {
font-weight: 500;
color: #fff;
margin-bottom: 12px;
font-size: 1rem;
opacity: 0.9;
}
.form-group {
margin-bottom: 30px;
}
h2 {
color: #fff;
font-weight: 700;
letter-spacing: 2px;
text-align: center;
margin-bottom: 30px;
}
1 change: 1 addition & 0 deletions Extension-main-Stable/Config/Config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const BASEURL = 'https://bettersakuraserver-production.up.railway.app';
116 changes: 116 additions & 0 deletions Extension-main-Stable/Libs/GoogleSignin.js

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions Extension-main-Stable/Libs/Lottie.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Extension-main-Stable/Libs/Motion.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Extension-main-Stable/Libs/Tailwind.css

Large diffs are not rendered by default.

62 changes: 62 additions & 0 deletions Extension-main-Stable/Libs/Tailwind.js

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions Extension-main-Stable/Libs/animate.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Extension-main-Stable/Libs/aos.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Extension-main-Stable/Libs/aos.js

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

6 changes: 6 additions & 0 deletions Extension-main-Stable/Libs/boostrap.css

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions Extension-main-Stable/Libs/bootstrap.js

Large diffs are not rendered by default.

Loading

0 comments on commit a731058

Please sign in to comment.