mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
38 lines
662 B
SCSS
38 lines
662 B
SCSS
@import 'admin/globals/variables';
|
|
@import 'admin/globals/mixins';
|
|
|
|
#progress {
|
|
display: none;
|
|
position: fixed;
|
|
top: 0;
|
|
z-index: 1000;
|
|
opacity: 0.8;
|
|
width: 100%;
|
|
|
|
.wrapper {
|
|
@include border-radius(10px);
|
|
top: -10px;
|
|
position: absolute;
|
|
left: 50%;
|
|
width: 200px;
|
|
margin-left: -100px;
|
|
padding: 11px 0;
|
|
background-color: $color-3;
|
|
color: $color-1;
|
|
text-align: center;
|
|
}
|
|
|
|
#spinner {
|
|
position: absolute;
|
|
top: 10px;
|
|
left: 50%;
|
|
margin-left: -5px;
|
|
}
|
|
|
|
.progress-message {
|
|
font-size: 120%;
|
|
font-weight: $font-weight-bold;
|
|
margin-top: 20px;
|
|
text-transform: uppercase;
|
|
}
|
|
} |