65 lines
1002 B
CSS
65 lines
1002 B
CSS
|
@font-face {
|
||
|
font-family: Scada;
|
||
|
src: url(Scada-Regular.ttf);
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
height: 100vh;
|
||
|
overflow: hidden;
|
||
|
margin-top: -5%;
|
||
|
color: #333;
|
||
|
opacity: 0;
|
||
|
font-family: Scada;
|
||
|
}
|
||
|
|
||
|
div.form {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.div-button {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
margin-top: 10px;
|
||
|
}
|
||
|
|
||
|
input {
|
||
|
text-align: center;
|
||
|
color: #333;
|
||
|
border: 1px solid#c5c5c5;
|
||
|
height: 30px;
|
||
|
}
|
||
|
|
||
|
input:hover {
|
||
|
border: 1px solid #999;
|
||
|
box-shadow: 1px 1px 10px 1px #ccc;
|
||
|
}
|
||
|
|
||
|
.input-focus:focus {
|
||
|
outline: none;
|
||
|
box-shadow: 1px 1px 10px 1px #666;
|
||
|
border: 1px solid #555;
|
||
|
}
|
||
|
|
||
|
.logo {
|
||
|
background-image: url("favicon.png");
|
||
|
min-width: 128px;
|
||
|
min-height: 128px;
|
||
|
background-size: contain;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
.title {
|
||
|
margin: 30px;
|
||
|
color:#333333
|
||
|
}
|
||
|
|
||
|
.label {
|
||
|
text-align: right;
|
||
|
padding-right: 10px;
|
||
|
}
|