mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-11 18:51:31 +00:00
The official image from streamline does not currently work for the arm64 platform. As a temporary measure, the source code and docker build scripts have been lifted from the official images and are used to build locally. Some additional modifications are made to reduce overall image size, these are documented in docker/README.md
42 lines
1.0 KiB
CSS
Executable File
42 lines
1.0 KiB
CSS
Executable File
.preloader {
|
|
width: 100%;
|
|
height: 31px;
|
|
text-align: center;
|
|
}
|
|
|
|
.cssload-speeding-wheel {
|
|
width: 31px;
|
|
height: 31px;
|
|
margin: 0 auto;
|
|
border: 2px solid rgba(97,100,193,0.98);
|
|
border-radius: 50%;
|
|
border-left-color: transparent;
|
|
border-right-color: transparent;
|
|
animation: cssload-spin 425ms infinite linear;
|
|
-o-animation: cssload-spin 425ms infinite linear;
|
|
-ms-animation: cssload-spin 425ms infinite linear;
|
|
-webkit-animation: cssload-spin 425ms infinite linear;
|
|
-moz-animation: cssload-spin 425ms infinite linear;
|
|
}
|
|
|
|
|
|
|
|
@keyframes cssload-spin {
|
|
100%{ transform: rotate(360deg); transform: rotate(360deg); }
|
|
}
|
|
|
|
@-o-keyframes cssload-spin {
|
|
100%{ -o-transform: rotate(360deg); transform: rotate(360deg); }
|
|
}
|
|
|
|
@-ms-keyframes cssload-spin {
|
|
100%{ -ms-transform: rotate(360deg); transform: rotate(360deg); }
|
|
}
|
|
|
|
@-webkit-keyframes cssload-spin {
|
|
100%{ -webkit-transform: rotate(360deg); transform: rotate(360deg); }
|
|
}
|
|
|
|
@-moz-keyframes cssload-spin {
|
|
100%{ -moz-transform: rotate(360deg); transform: rotate(360deg); }
|
|
} |