nicer loader indicator

This commit is contained in:
2020-07-28 12:01:35 +02:00
parent e9e77c15ae
commit b719b06a8e
9 changed files with 36 additions and 8 deletions
+26
View File
@@ -1081,3 +1081,29 @@ span.mdi-loading{
animation-iteration-count: infinite;
animation-timing-function: linear;
}
// _ _ _
// | | ___ __ _ __| (_)_ _ __ _
// | |__/ _ \/ _` / _` | | ' \/ _` |
// |____\___/\__,_\__,_|_|_||_\__, |
// |___/
span.loading{
@include fontsans;
font-size: 0.756em;
color: $grisfonce;
animation: pulseloading 4s infinite;
}
@keyframes pulseloading{
0% {
opacity: 1;
}
50%{
opacity: 0;
}
100% {
opacity: 1;
}
}
+1
View File
@@ -24,6 +24,7 @@ body{
box-sizing:border-box;
}
header[role="banner"]{
z-index:10;
flex: 0 0 auto;
@extend %layout-element;
padding:1em $side-padding 1em $side-padding;