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
devops4lib-jekyll-theme-conference-0.0.1 _sass/bootstrap/_spinners.scss
jekyll-theme-conference-3.6.6 _sass/bootstrap/_spinners.scss
jekyll-theme-conference-3.6.5 _sass/bootstrap/_spinners.scss
jekyll-theme-conference-3.6.4 _sass/bootstrap/_spinners.scss
jekyll-theme-conference-3.6.3 _sass/bootstrap/_spinners.scss
jekyll-theme-conference-3.6.2 _sass/bootstrap/_spinners.scss
jekyll-theme-conference-3.6.1 _sass/bootstrap/_spinners.scss
jekyll-theme-centos-0.9.20221031122647 _sass/bootstrap/_spinners.scss
jekyll-theme-centos-0.9.20220805132206 _sass/bootstrap/_spinners.scss
jekyll-theme-conference-3.6.0 _sass/bootstrap/_spinners.scss
jekyll-theme-centos-0.9.20220227231551 _sass/bootstrap/_spinners.scss
jekyll-theme-conference-3.5.0 _sass/bootstrap/_spinners.scss
jekyll-theme-conference-3.4.1 _sass/bootstrap/_spinners.scss
jekyll-theme-centos-0.9.20220212202853 _sass/bootstrap/_spinners.scss
jekyll-theme-centos-0.9.20220212195701 _sass/bootstrap/_spinners.scss
jekyll-theme-centos-0.9.20220201124228 _sass/bootstrap/_spinners.scss
jekyll-theme-centos-0.9.20220201033517 _sass/bootstrap/_spinners.scss
jekyll-theme-centos-0.9.20220201032927 _sass/bootstrap/_spinners.scss
jekyll-theme-conference-3.4.0 _sass/bootstrap/_spinners.scss
owasp-td-jekyll-0.2.1 _sass/bootstrap/_spinners.scss