mirror of
https://github.com/TheGreyDiamond/elevatormapRewritten.git
synced 2025-07-19 11:03:49 +02:00
Created login system
This commit is contained in:
@ -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;
|
||||
}
|
||||
*/
|
@ -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;
|
||||
}
|
Reference in New Issue
Block a user