Welcome to mirror list, hosted at ThFree Co, Russian Federation.

loader.css « v3 « css « static - github.com/gurusabarish/hugo-profile.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 665fee1e343f00061462bda24f128389aa530796 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#loader {
  position: fixed;
  border: 5px solid #007bff;
  border-radius: 50%;
  border-top: 5px solid #444444;
  border-bottom: 5px solid #444444;
  border-right: 5px solid #444444;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}