Login functionality updated

This commit is contained in:
Minik Gaarde Lambrecht
2021-03-26 08:35:51 +01:00
parent 067ec202d0
commit 673af052d5
12 changed files with 322 additions and 58 deletions
+26 -6
View File
@@ -118,11 +118,15 @@ a:hover {
margin: 1vw 10vw 0;
}
.LoginButton {
.RightNavText {
color: rgba(255, 255, 255, .75);
}
.RightNavButton {
color: rgba(255, 255, 255, .55);
}
.LoginButton:hover {
.RightNavButton:hover {
color: rgba(255, 255, 255, .75);
}
@@ -259,7 +263,7 @@ a:hover {
.modal-body {
padding: 0 0;
margin: 2vh 2vw;
margin: 1vh 1vw;
background-color: rgb(18, 18, 18);
}
@@ -470,11 +474,12 @@ a:hover {
color: rgba(255, 255, 255, .75);
}
.box input[type="submit"] {
.box #LoginBtn,
.box #RegisterBtn {
border: 0;
background: none;
display: block;
margin: 20px auto;
margin: 20px auto 0 auto;
text-align: center;
border: 2px solid rgb(46, 204, 113);
padding: 14px 40px;
@@ -485,7 +490,22 @@ a:hover {
cursor: pointer;
}
.box input[type="submit"]:hover {
.box #AdminLoginBtn {
border: 0;
background: transparent;
color: rgba(255, 255, 255, .55);
display: block;
margin: 0 auto;
text-align: center;
padding: 14px 10px;
outline: none;
border-radius: 24px;
transition: 0.25s;
cursor: pointer;
}
.box #LoginBtn:hover,
.box #RegisterBtn:hover {
background: rgb(46, 204, 113);
color: rgba(255, 255, 255, .75);
}