_spinners.scss 1.13 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
// Rotating border
//

@keyframes spinner-border {
  to { transform: rotate(360deg); }
}

.spinner-border {
  position: relative;
  display: inline-block;
  width: $spinner-width;
  height: $spinner-height;
  overflow: hidden;
  text-indent: -999em;
  vertical-align: text-bottom;
  border: $spinner-border-width solid;
  border-color: currentColor transparent currentColor currentColor;
  border-radius: 50%;
20
  animation: spinner-border .75s linear infinite;
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
}

.spinner-border-sm {
  width: $spinner-width-sm;
  height: $spinner-height-sm;
  border-width: $spinner-border-width-sm;
}

//
// Growing circle
//

@keyframes spinner-grow {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.spinner-grow {
  position: relative;
  display: inline-block;
  width: $spinner-width;
  height: $spinner-height;
  overflow: hidden;
  text-indent: -999em;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
57
  animation: spinner-grow .75s linear infinite;
58
59
60
61
62
63
}

.spinner-grow-sm {
  width: $spinner-width-sm;
  height: $spinner-height-sm;
}