Sha256: 68e19371751b8120051d59b9df2e88fec9ea107de624a23939e7a459312c42b3

Contents?: true

Size: 1.06 KB

Versions: 158

Compression:

Stored size: 1.06 KB

Contents

//
// Rotating border
//

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

.spinner-border {
  display: inline-block;
  width: $spinner-width;
  height: $spinner-height;
  vertical-align: text-bottom;
  border: $spinner-border-width solid currentColor;
  border-right-color: transparent;
  // stylelint-disable-next-line property-disallowed-list
  border-radius: 50%;
  animation: spinner-border .75s linear infinite;
}

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

//
// Growing circle
//

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

.spinner-grow {
  display: inline-block;
  width: $spinner-width;
  height: $spinner-height;
  vertical-align: text-bottom;
  background-color: currentColor;
  // stylelint-disable-next-line property-disallowed-list
  border-radius: 50%;
  opacity: 0;
  animation: spinner-grow .75s linear infinite;
}

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

Version data entries

158 entries across 158 versions & 6 rubygems

Version Path
jekyll-theme-centos-0.6.12 _sass/bootstrap/_spinners.scss
jekyll-theme-centos-0.6.11 _sass/bootstrap/_spinners.scss
jekyll-theme-centos-0.6.10 _sass/bootstrap/_spinners.scss
jekyll-theme-centos-0.6.9 _sass/bootstrap/_spinners.scss
jekyll-theme-centos-0.6.8 _sass/bootstrap/_spinners.scss
jekyll-theme-centos-0.6.7 _sass/bootstrap/_spinners.scss
jekyll-theme-centos-0.6.6 _sass/bootstrap/_spinners.scss
jekyll-theme-centos-0.6.5 _sass/bootstrap/_spinners.scss
jekyll-theme-centos-0.6.4 _sass/bootstrap/_spinners.scss
owasp-td-jekyll-0.2.0 _sass/bootstrap/_spinners.scss
jekyll-theme-centos-0.6.3 _sass/bootstrap/_spinners.scss
jekyll-theme-centos-0.6.2 _sass/bootstrap/_spinners.scss
jekyll-theme-centos-0.6.1 _sass/bootstrap/_spinners.scss
owasp-td-jekyll-0.1.3 _sass/bootstrap/_spinners.scss
owasp-td-jekyll-0.1.2 _sass/bootstrap/_spinners.scss
owasp-td-jekyll-0.1.1 _sass/bootstrap/_spinners.scss
owasp-td-jekyll-0.1.0 _sass/bootstrap/_spinners.scss
jekyll-theme-centos-0.6.0 _sass/bootstrap/_spinners.scss
jekyll-theme-centos-0.5.12 _sass/bootstrap/_spinners.scss
jekyll-theme-centos-0.5.11 _sass/bootstrap/_spinners.scss