Created login system

This commit is contained in:
TheGreyDiamond
2021-05-30 00:42:03 +02:00
parent 6e3104eef3
commit 14189365e0
8 changed files with 744 additions and 147 deletions

View File

@ -476,3 +476,24 @@ there.
/* Larger than tablet */
@media (min-width: 1200px) {}
header {
margin: 0px;
height: 20px;
width: 100%;
position: fixed;
top: 0px;
left: 0px;
border-bottom: solid 1px rgba(73, 73, 73, 0.473)
}
.rightMount {
position: fixed;
right: 10px;
}
/*
* {
border: 1px red solid;
}
*/

View File

@ -40,6 +40,7 @@
margin: 0px;
padding: 0px;
box-sizing: border-box;
transition: 0.2s;
}
body, html {
@ -107,6 +108,8 @@ textarea:focus, input:focus {
border-color: transparent !important;
}
input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
@ -495,5 +498,25 @@ iframe {
}
}
.alert {
padding: 20px;
background-color: #f44336;
color: white;
transition: 0.5s;
}
.closebtn {
margin-left: 15px;
color: white;
font-weight: bold;
float: right;
font-size: 22px;
line-height: 20px;
cursor: pointer;
transition: 0.5s;
}
.closebtn:hover {
color: black;
transition: 0.5s;
}