PHP_SMART_HOME_V3/app/views/templates/loading.css

20 lines
450 B
CSS
Raw Normal View History

2019-08-23 11:39:42 +00:00
.loader {
2020-05-04 19:19:14 +00:00
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #3498db;
width: 120px;
height: 120px;
-webkit-animation: spin 2s linear infinite; /* Safari */
animation: spin 2s linear infinite;
2019-08-23 11:39:42 +00:00
}
2020-05-04 19:19:14 +00:00
/* Safari */
2019-08-23 11:39:42 +00:00
@-webkit-keyframes spin {
2020-05-04 19:19:14 +00:00
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
2019-08-23 11:39:42 +00:00
}
@keyframes spin {
2020-05-04 19:19:14 +00:00
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
2019-08-23 11:39:42 +00:00
}