2020-04-22 14:19:25 +00:00
|
|
|
@keyframes loading-bar {
|
|
|
|
0% {
|
|
|
|
left: 0;
|
|
|
|
width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
5% {
|
|
|
|
left: 0;
|
|
|
|
width: 12.5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
10% {
|
|
|
|
left: 0;
|
|
|
|
width: 25%;
|
|
|
|
}
|
|
|
|
|
|
|
|
15% {
|
|
|
|
left: 0;
|
|
|
|
width: 37.5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
20% {
|
|
|
|
left: 0;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
25% {
|
|
|
|
left: 0;
|
|
|
|
width: 62.5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
30% {
|
|
|
|
left: 0;
|
|
|
|
width: 75%;
|
|
|
|
}
|
|
|
|
|
|
|
|
35% {
|
|
|
|
left: 0;
|
|
|
|
width: 87.5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
40% {
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
55% {
|
|
|
|
left: 12.5%;
|
|
|
|
width: 87.5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
60% {
|
|
|
|
left: 25%;
|
|
|
|
width: 75%;
|
|
|
|
}
|
|
|
|
|
|
|
|
65% {
|
|
|
|
left: 37.5%;
|
|
|
|
width: 62.5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
70% {
|
|
|
|
left: 50%;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
75% {
|
|
|
|
left: 62.5%;
|
|
|
|
width: 37.5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
80% {
|
|
|
|
left: 75%;
|
|
|
|
width: 25%;
|
|
|
|
}
|
|
|
|
|
|
|
|
85% {
|
|
|
|
left: 87.5%;
|
|
|
|
width: 12.5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
90% {
|
|
|
|
left: 100%;
|
|
|
|
width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
left: 0;
|
|
|
|
width: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.coreid-form input {
|
|
|
|
border-radius: 0;
|
|
|
|
border: none;
|
|
|
|
border-bottom: 2px solid #aaa;
|
|
|
|
font-size: 1.2em;
|
|
|
|
background: none;
|
|
|
|
box-shadow: none;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
box-shadow: none;
|
|
|
|
border-bottom: 2px solid #666;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-22 21:56:39 +00:00
|
|
|
.coreid-login-form, .coreid-auth-page {
|
2020-04-22 14:19:25 +00:00
|
|
|
border: 2px solid #ddd;
|
|
|
|
border-radius: 7px;
|
2020-04-22 21:56:39 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2020-05-04 01:16:54 +00:00
|
|
|
min-height: 70vh;
|
2020-04-22 21:56:39 +00:00
|
|
|
background-color: #f8f8f8;
|
2020-04-22 14:19:25 +00:00
|
|
|
|
2020-04-22 21:56:39 +00:00
|
|
|
.coreid-login-form-inner, .coreid-auth-page-inner {
|
2020-04-22 14:19:25 +00:00
|
|
|
padding: 30px;
|
2020-04-22 21:56:39 +00:00
|
|
|
width: 100%;
|
2020-04-22 14:19:25 +00:00
|
|
|
}
|
|
|
|
|
2020-04-22 21:56:39 +00:00
|
|
|
.coreid-login-form-header, .coreid-header {
|
2020-04-22 14:19:25 +00:00
|
|
|
font-size: 2.5em;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2020-04-22 21:56:39 +00:00
|
|
|
.coreid-login-form-message, .coreid-message {
|
2020-04-22 14:19:25 +00:00
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.buttons {
|
|
|
|
margin-top: 40px;
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
2020-04-22 21:56:39 +00:00
|
|
|
&.pad-top {
|
|
|
|
padding-top: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
2020-04-22 14:19:25 +00:00
|
|
|
.btn {
|
|
|
|
background: #666;
|
|
|
|
border-color: #444;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: #777;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background: #888;
|
|
|
|
box-shadow: #333;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.coreid-loading-spinner {
|
|
|
|
overflow: hidden;
|
2020-04-22 21:56:39 +00:00
|
|
|
background-color: rgba(0,0,0,0);
|
2020-04-22 14:19:25 +00:00
|
|
|
height: 7px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
width: calc(100% + 30px);
|
|
|
|
margin-left: -15px;
|
2020-04-22 21:56:39 +00:00
|
|
|
margin-top: 70px;
|
2020-04-22 14:19:25 +00:00
|
|
|
|
|
|
|
.inner {
|
|
|
|
height: 7px;
|
|
|
|
width: 50px;
|
|
|
|
background-color: #bbb;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
animation-name: loading-bar;
|
|
|
|
animation-duration: 1.5s;
|
|
|
|
animation-fill-mode: both;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.error-message {
|
|
|
|
color: darkred;
|
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.other-message {
|
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
|
|
|
}
|