2017-01-16 00:11:43 +03:00
|
|
|
/* Loading state */
|
2017-01-18 02:44:08 +03:00
|
|
|
.gh-loading-content {
|
2017-01-16 00:11:43 +03:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2017-01-18 02:44:08 +03:00
|
|
|
align-items: center;
|
2017-01-16 00:11:43 +03:00
|
|
|
overflow: hidden;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
2017-01-18 02:44:08 +03:00
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
2017-01-16 00:11:43 +03:00
|
|
|
justify-content: center;
|
2017-01-18 02:44:08 +03:00
|
|
|
left: 0;
|
|
|
|
padding-bottom: 8vh;
|
2017-01-16 00:11:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-loading-content.basic-auth {
|
|
|
|
z-index: 1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-loading-spinner {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin: -2px 0;
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
border: rgba(0,0,0,0.1) solid 1px;
|
|
|
|
border-radius: 100px;
|
|
|
|
animation: spin 1s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-loading-spinner:before {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
margin-top: 7px;
|
|
|
|
width: 7px;
|
|
|
|
height: 7px;
|
|
|
|
background: #4C5156;
|
|
|
|
border-radius: 100px;
|
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes spin {
|
|
|
|
from {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
2017-01-25 23:05:28 +03:00
|
|
|
|
|
|
|
/* Infinite scroll */
|
|
|
|
.infinity-loader {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 2em 0;
|
|
|
|
}
|