2021-08-22 07:15:50 +00:00
|
|
|
* {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2016-07-12 20:46:08 +00:00
|
|
|
body {
|
2021-08-22 07:15:50 +00:00
|
|
|
background: black;
|
|
|
|
color: white;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 13px;
|
2020-05-20 13:47:05 +00:00
|
|
|
}
|
|
|
|
|
2021-08-22 07:15:50 +00:00
|
|
|
form {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
text-align: center;
|
2020-05-20 13:47:05 +00:00
|
|
|
}
|
|
|
|
|
2021-08-22 07:15:50 +00:00
|
|
|
input {
|
|
|
|
display: block;
|
|
|
|
background: black;
|
|
|
|
color: white;
|
|
|
|
width: 250px;
|
|
|
|
padding: 5px 4px;
|
|
|
|
margin: 2px 0 6px 0;
|
|
|
|
border: 1px solid #ff5252;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 13px;
|
|
|
|
font-family: monospace;
|
2020-05-20 13:47:05 +00:00
|
|
|
}
|
|
|
|
|
2021-08-22 07:15:50 +00:00
|
|
|
input::-ms-reveal,
|
|
|
|
input::-ms-clear {
|
|
|
|
display: none;
|
2020-05-20 13:47:05 +00:00
|
|
|
}
|
|
|
|
|
2021-08-22 07:15:50 +00:00
|
|
|
input[type='submit'] {
|
|
|
|
width: 150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: #ff5252;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-main {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
text-align: center;
|
|
|
|
min-height: 100vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
#toast-container {
|
|
|
|
position: absolute;
|
|
|
|
top: 8px;
|
|
|
|
right: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toast {
|
|
|
|
width: 300px;
|
|
|
|
background-color: #000 !important;
|
|
|
|
padding: 8px;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toast-error {
|
|
|
|
border: 1px solid #ff5252;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toast-success {
|
|
|
|
border: 1px solid #5be941;
|
|
|
|
}
|