mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 04:27:14 +01:00
30 lines
590 B
CSS
30 lines
590 B
CSS
|
.p-icon {
|
||
|
display: inline-block;
|
||
|
}
|
||
|
|
||
|
.p-icon-spin {
|
||
|
-webkit-animation: p-icon-spin 2s infinite linear;
|
||
|
animation: p-icon-spin 2s infinite linear;
|
||
|
}
|
||
|
|
||
|
@-webkit-keyframes p-icon-spin {
|
||
|
0% {
|
||
|
-webkit-transform: rotate(0deg);
|
||
|
transform: rotate(0deg);
|
||
|
}
|
||
|
100% {
|
||
|
-webkit-transform: rotate(359deg);
|
||
|
transform: rotate(359deg);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@keyframes p-icon-spin {
|
||
|
0% {
|
||
|
-webkit-transform: rotate(0deg);
|
||
|
transform: rotate(0deg);
|
||
|
}
|
||
|
100% {
|
||
|
-webkit-transform: rotate(359deg);
|
||
|
transform: rotate(359deg);
|
||
|
}
|
||
|
}
|