-
Notifications
You must be signed in to change notification settings - Fork 9
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
e537e28
commit 3665bcf
Showing
1 changed file
with
104 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,104 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap'); | ||
@import url('https://unpkg.com/@fortawesome/[email protected]/css/all.min.css'); | ||
@keyframes fadeInAnimation { | ||
0% { | ||
opacity: 0; | ||
} | ||
100% { | ||
opacity: 1; | ||
} | ||
} | ||
|
||
* { | ||
font-family: Roboto; | ||
} | ||
|
||
body { | ||
margin: 0; | ||
background: #111; | ||
display: flex; | ||
flex-direction: column; | ||
min-height: 100vh; | ||
animation: fadeInAnimation ease-in-out 0.3s; | ||
animation-iteration-count: 1; | ||
animation-fill-mode: forwards; | ||
} | ||
|
||
.fa-magnifying-glass { | ||
color: white; | ||
} | ||
|
||
.logo-wrapper { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
flex-direction: column; | ||
margin-top: 10%; | ||
} | ||
footer { | ||
margin-top: auto; | ||
width: 93%; | ||
align-self: center; | ||
height: 80px; | ||
display: flex; | ||
justify-content: left; | ||
align-items: center; | ||
} | ||
|
||
footer a, | ||
footer span { | ||
margin: 0 15px; | ||
text-decoration: none; | ||
color: #FFF; | ||
font-size: 15px; | ||
} | ||
|
||
footer a { | ||
cursor: pointer; | ||
} | ||
|
||
footer a:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
form { | ||
display: flex; | ||
justify-content: center; | ||
} | ||
|
||
.desc { | ||
display: flex; | ||
justify-content: center; | ||
} | ||
|
||
.desc p { | ||
width: 560px; | ||
color: rgba(253, 253, 253, 0.514); | ||
} | ||
|
||
form input { | ||
background: none; | ||
font-family: inherit; | ||
padding: 0px 17px; | ||
height: 48px; | ||
border: 1px solid rgb(255, 255, 255, .2); | ||
color: var(--text-color); | ||
border-radius: 3px; | ||
outline: none; | ||
width: 350px; | ||
margin-top: 5px; | ||
border-radius: 50px; | ||
color: #FFF; | ||
} | ||
|
||
form input:focus { | ||
border: 1px solid rgba(253, 253, 253, 0.514); | ||
border-radius: 6px; | ||
animation: fadeInAnimation ease-in-out 0.3s; | ||
animation-iteration-count: 1; | ||
animation-fill-mode: forwards; | ||
} | ||
|
||
Proxywelcometest { | ||
color: white; | ||
} |