Added loader-circle
This commit is contained in:
parent
fc546e68cc
commit
37e2a74c39
@ -20,6 +20,11 @@
|
|||||||
<img id="settingscog" src="media/settings-cogwheel.svg" height="100%" alt="settingscog">
|
<img id="settingscog" src="media/settings-cogwheel.svg" height="100%" alt="settingscog">
|
||||||
</topbar>
|
</topbar>
|
||||||
<viewport>
|
<viewport>
|
||||||
|
<div id="loaderdiv">
|
||||||
|
<blur-background></blur-background>
|
||||||
|
<div id="loader"></div>
|
||||||
|
<p id="loaderText">Check your Settings > API-URI</p>
|
||||||
|
</div>
|
||||||
<content>
|
<content>
|
||||||
<div id="addPublication">
|
<div id="addPublication">
|
||||||
<p>+</p>
|
<p>+</p>
|
||||||
|
@ -148,7 +148,7 @@ content {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#settingsPopup{
|
#settingsPopup{
|
||||||
z-index: 10;
|
z-index: 300;
|
||||||
}
|
}
|
||||||
|
|
||||||
#settingsPopup popup-content{
|
#settingsPopup popup-content{
|
||||||
@ -507,4 +507,42 @@ footer-tag-popup::before{
|
|||||||
left: 0;
|
left: 0;
|
||||||
bottom: -17px;
|
bottom: -17px;
|
||||||
border-radius: 0 0 0 5px;
|
border-radius: 0 0 0 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#loaderdiv {
|
||||||
|
position: absolute;
|
||||||
|
top: 0px;
|
||||||
|
left: 0px;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
z-index: 200;
|
||||||
|
}
|
||||||
|
|
||||||
|
#loader {
|
||||||
|
border: 16px solid transparent;
|
||||||
|
border-top: 16px solid var(--secondary-color);
|
||||||
|
border-bottom: 16px solid var(--primary-color);
|
||||||
|
border-radius: 50%;
|
||||||
|
width: 120px;
|
||||||
|
height: 120px;
|
||||||
|
animation: spin 2s linear infinite;
|
||||||
|
position: absolute;
|
||||||
|
left: calc(50% - 60px);
|
||||||
|
top: calc(50% - 120px);
|
||||||
|
z-index: 201;
|
||||||
|
}
|
||||||
|
|
||||||
|
#loaderText {
|
||||||
|
position: relative;
|
||||||
|
margin: 0 auto;
|
||||||
|
top: calc(50% + 80px);
|
||||||
|
z-index: 201;
|
||||||
|
text-align: center;
|
||||||
|
color: var(--second-background-color);
|
||||||
|
font-size: 20pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes spin {
|
||||||
|
0% { transform: rotate(0deg); }
|
||||||
|
100% { transform: rotate(360deg); }
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user