0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-30 10:51:09 -05:00
penpot/frontend/resources/styles/main/partials/loader.scss

43 lines
676 B
SCSS
Raw Normal View History

2016-04-08 10:48:41 +02:00
// full width BG
.loader-content {
align-items: center;
background-color: rgba(255, 255, 255, 0.85);
2016-04-08 10:48:41 +02:00
display: flex;
height: 100vh;
justify-content: center;
left: 0;
position: fixed;
top: 0;
width: 100%;
z-index: 999;
}
2016-04-09 17:43:44 +02:00
// full with loader CSS
2016-04-08 10:48:41 +02:00
svg#loader-icon {
height: 100px;
width: 100px;
animation: loaderColor 5s infinite ease;
}
#loader-pen1 {
animation: pen1 2s infinite ease;
}
#loader-pen2 {
animation: pen2 2s infinite ease;
}
#loader-pen3 {
animation: pen3 2s infinite ease;
}
2016-04-09 17:43:44 +02:00
2021-11-15 09:51:34 -05:00
// btn pencil loader
2016-04-09 17:43:44 +02:00
svg#loader-pencil {
fill: $color-primary-darker;
width: 60px;
}
#loader-line {
animation: linePencil 0.8s infinite linear;
2016-04-09 17:43:44 +02:00
}