-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aeda276
commit a731058
Showing
38 changed files
with
10,423 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export const BASEURL = 'https://bettersakuraserver-production.up.railway.app'; |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.