pure css spinner

Solutions on MaxInterview for pure css spinner by the best coders in the world

showing results for - "pure css spinner"
Máximo
12 Jul 2019
1rotationBack
Alberto
30 Jun 2019
1@keyframes spinner {
2  to {transform: rotate(360deg);}
3}
4 
5.spinner:before {
6  content: '';
7  box-sizing: border-box;
8  position: absolute;
9  top: 50%;
10  left: 50%;
11  width: 20px;
12  height: 20px;
13  margin-top: -10px;
14  margin-left: -10px;
15  border-radius: 50%;
16  border: 2px solid transparent;
17  border-top-color: #07d;
18  border-bottom-color: #07d;
19  animation: spinner .8s ease infinite;
20}