2017-05-10 11:04:06 +02:00
|
|
|
.form-signin {
|
2019-02-27 23:13:23 +01:00
|
|
|
width: 100%;
|
2017-05-10 11:04:06 +02:00
|
|
|
padding: 15px;
|
|
|
|
margin: 0 auto;
|
2018-08-04 10:35:26 +02:00
|
|
|
|
2019-03-02 22:32:49 +01:00
|
|
|
& > .row {
|
|
|
|
max-width: 400px;
|
|
|
|
margin: auto;
|
|
|
|
|
|
|
|
& > h2 {
|
|
|
|
text-align: center
|
|
|
|
}
|
|
|
|
|
|
|
|
input.form-control {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
font-size: 16px;
|
|
|
|
height: auto;
|
|
|
|
padding: 10px;
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2017-05-10 11:04:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Loading Animation */
|
|
|
|
.glyphicon-refresh-animate {
|
|
|
|
animation: spin 0.9s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes spin {
|
2017-09-03 12:49:59 +02:00
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
2017-05-10 11:04:06 +02:00
|
|
|
}
|