mirror of
https://gitlab.com/nekoya/web.git
synced 2024-11-14 10:26:40 +01:00
Add forgot-password.css
This commit is contained in:
parent
a1a26d9d34
commit
14d57d1f19
1 changed files with 189 additions and 0 deletions
189
public/css/forgot-password.css
Normal file
189
public/css/forgot-password.css
Normal file
|
@ -0,0 +1,189 @@
|
|||
body {
|
||||
font-family: 'Poppins', sans-serif;
|
||||
background-color: #1b1c1e;
|
||||
}
|
||||
|
||||
.nav-color {
|
||||
background-color: #212226;
|
||||
}
|
||||
|
||||
.form-control {
|
||||
background-color: #212226;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.form-control:valid {
|
||||
background-color: #212226;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.form-control:invalid {
|
||||
background-color: #2f0001;
|
||||
color: white;
|
||||
}
|
||||
|
||||
button[type="submit"] {
|
||||
margin-bottom: 4%;
|
||||
}
|
||||
|
||||
.btn-forgot {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.hoverforgot-1 a {
|
||||
color: white;
|
||||
background-color: transparent;
|
||||
position: center;
|
||||
margin: auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.hoverforgot-1 a:hover {
|
||||
background-color: transparent;
|
||||
color: white;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.card {
|
||||
position: center;
|
||||
margin: auto;
|
||||
margin-top: 3%;
|
||||
text-align: center;
|
||||
border-bottom-left-radius: 20px;
|
||||
border-bottom-right-radius: 20px;
|
||||
border-top-left-radius: 20px;
|
||||
border-top-right-radius: 20px;
|
||||
background-color: #212226;
|
||||
}
|
||||
|
||||
.icon {
|
||||
position: center;
|
||||
margin: auto;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding-bottom: 0%;
|
||||
}
|
||||
|
||||
.form-check {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.form .options-01 {
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
.form .options-01 input {
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.form .options-01 .remember-me {
|
||||
color: #bbb;
|
||||
font-size: 6pt;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
float: left;
|
||||
cursor: pointer;
|
||||
word-break: keep-all;
|
||||
|
||||
}
|
||||
|
||||
.form .options-01 a {
|
||||
color: #888;
|
||||
font-size: 14px;
|
||||
font-style: italic;
|
||||
float: right;
|
||||
text-align: right;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.text {
|
||||
margin-bottom: -6%;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 425px) {
|
||||
|
||||
.card a,
|
||||
input {
|
||||
font-size: 3vw;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
font-size: 6vw;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 426px) {
|
||||
|
||||
.card a,
|
||||
input {
|
||||
font-size: 2vw;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
font-size: 5vw;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 767px) {
|
||||
|
||||
.card a,
|
||||
input {
|
||||
font-size: 2vw;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
font-size: 4vw;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 993px) {
|
||||
|
||||
.card a,
|
||||
input {
|
||||
font-size: 1vw;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
font-size: 2.5vw;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1400px) {
|
||||
|
||||
.card a,
|
||||
input {
|
||||
font-size: 1vw;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
font-size: 2.5vw;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 500px) {
|
||||
.form {
|
||||
width: 95%;
|
||||
}
|
||||
|
||||
.form .user-input {
|
||||
width: 100%
|
||||
}
|
||||
|
||||
.form .btn {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-resetpassword {
|
||||
width: 100%;
|
||||
background-color: darkred;
|
||||
border-color: darkred;
|
||||
border-radius: 100px;
|
||||
}
|
||||
|
||||
.btn-resetpassword:hover {
|
||||
background-color: red;
|
||||
border-color: red;
|
||||
}
|
Loading…
Reference in a new issue