123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653 |
- @charset "utf-8";
- body {
- margin-top: 10px;
- }
- .col-sm-2 {
- padding: 10px;
- border-radius: 4px;
- height: 125px;
- margin-bottom: 10px;
- }
- .sp {
- width: 32px;
- height: 32px;
- clear: both;
- margin: 20px auto;
- }
- /* Spinner Circle Rotation */
- .sp-circle {
- border: 4px rgba(0, 0, 0, 0.25) solid;
- border-top: 4px black solid;
- border-radius: 50%;
- -webkit-animation: spCircRot .6s infinite linear;
- animation: spCircRot .6s infinite linear;
- }
- @-webkit-keyframes spCircRot {
- from {
- -webkit-transform: rotate(0deg);
- }
- to {
- -webkit-transform: rotate(359deg);
- }
- }
- @keyframes spCircRot {
- from {
- transform: rotate(0deg);
- }
- to {
- transform: rotate(359deg);
- }
- }
- /* Spinner 3Balls Scale */
- .sp-3balls, .sp-3balls:before, .sp-3balls:after {
- border-radius: 50%;
- background-color: #000;
- width: 18px;
- height: 18px;
- transform-origin: center center;
- display: inline-block;
- }
- .sp-3balls {
- position: relative;
- background-color: black;
- opacity: 1;
- -webkit-animation: spScaleAlpha 1s infinite linear;
- animation: spScaleAlpha 1s infinite linear;
- }
- .sp-3balls:before, .sp-3balls:after {
- content: '';
- position: relative;
- opacity: 0.25;
- }
- .sp-3balls:before {
- left: 30px;
- top: 0px;
- -webkit-animation: spScaleAlphaBefore 1s infinite linear;
- animation: spScaleAlphaBefore 1s infinite linear;
- }
- .sp-3balls:after {
- left: -30px;
- top: -23px;
- -webkit-animation: spScaleAlphaAfter 1s infinite linear;
- animation: spScaleAlphaAfter 1s infinite linear;
- }
- @-webkit-keyframes spScaleAlpha {
- 0% {
- opacity: 1;
- }
- 33% {
- opacity: 0.25;
- }
- 66% {
- opacity: 0.25;
- }
- 100% {
- opacity: 1;
- }
- }
- @keyframes spScaleAlpha {
- 0% {
- opacity: 1;
- }
- 33% {
- opacity: 0.25;
- }
- 66% {
- opacity: 0.25;
- }
- 100% {
- opacity: 1;
- }
- }
- @-webkit-keyframes spScaleAlphaBefore {
- 0% {
- opacity: 0.25;
- }
- 33% {
- opacity: 1;
- }
- 66% {
- opacity: 0.25;
- }
- }
- @keyframes spScaleAlphaBefore {
- 0% {
- opacity: 0.25;
- }
- 33% {
- opacity: 1;
- }
- 66% {
- opacity: 0.25;
- }
- }
- @-webkit-keyframes spScaleAlphaAfter {
- 33% {
- opacity: 0.25;
- }
- 66% {
- opacity: 1;
- }
- 100% {
- opacity: 0.25;
- }
- }
- @keyframes spScaleAlphaAfter {
- 33% {
- opacity: 0.25;
- }
- 66% {
- opacity: 1;
- }
- 100% {
- opacity: 0.25;
- }
- }
- /* Spinner VolumeButton */
- .sp-volume {
- background-color: #000;
- border-radius: 50%;
- position: relative;
- -webkit-animation: spVolRot .6s infinite linear;
- animation: spVolRot .6s infinite linear;
- }
- .sp-volume:after {
- content: '';
- border-radius: 50%;
- position: absolute;
- display: block;
- width: 10px;
- height: 10px;
- left: 5px;
- top: 5px;
- background-color: white;
- }
- @-webkit-keyframes spVolRot {
- from {
- -webkit-transform: rotate(0deg);
- }
- to {
- -webkit-transform: rotate(359deg);
- }
- }
- @keyframes spVolRot {
- from {
- transform: rotate(0deg);
- }
- to {
- transform: rotate(359deg);
- }
- }
- /* Spinner Vortex */
- .sp-vortex {
- border: 1px #000 solid;
- border-radius: 4px;
- overflow: hidden;
- position: relative;
- }
- .sp-vortex:after, .sp-vortex:before {
- content: '';
- border-radius: 50%;
- position: absolute;
- width: inherit;
- height: inherit;
- -webkit-animation: spVortex 2s infinite linear;
- animation: spVortex 2s infinite linear;
- }
- .sp-vortex:before {
- border-top: 6px #000 solid;
- top: -3px;
- left: calc( -50% - 3px );
- transform-origin: right center;
- }
- .sp-vortex:after {
- border-bottom: 6px #000 solid;
- top: 3px;
- right: calc( -50% - 3px );
- transform-origin: left center;
- }
- @-webkit-keyframes spVortex {
- from {
- -webkit-transform: rotate(0deg);
- }
- to {
- -webkit-transform: rotate(359deg);
- }
- }
- @keyframes spVortex {
- from {
- transform: rotate(0deg);
- }
- to {
- transform: rotate(359deg);
- }
- }
- /* Spinner Slices */
- .sp.sp-slices {
- border-radius: 50%;
- border-top: 16px rgba(0, 0, 0, 0.75) solid;
- border-left: 16px rgba(0, 0, 0, 0.25) solid;
- border-bottom: 16px rgba(0, 0, 0, 0.25) solid;
- border-right: 16px rgba(0, 0, 0, 0.25) solid;
- -webkit-animation: spSlices 1s infinite linear;
- animation: spSlices 1s infinite linear;
- }
- @-webkit-keyframes spSlices {
- 0% {
- border-top: 16px rgba(0, 0, 0, 0.75) solid;
- border-right: 16px rgba(0, 0, 0, 0.25) solid;
- border-bottom: 16px rgba(0, 0, 0, 0.25) solid;
- border-left: 16px rgba(0, 0, 0, 0.25) solid;
- }
- 25% {
- border-top: 16px rgba(0, 0, 0, 0.25) solid;
- border-right: 16px rgba(0, 0, 0, 0.75) solid;
- border-bottom: 16px rgba(0, 0, 0, 0.25) solid;
- border-left: 16px rgba(0, 0, 0, 0.25) solid;
- }
- 50% {
- border-top: 16px rgba(0, 0, 0, 0.25) solid;
- border-right: 16px rgba(0, 0, 0, 0.25) solid;
- border-bottom: 16px rgba(0, 0, 0, 0.75) solid;
- border-left: 16px rgba(0, 0, 0, 0.25) solid;
- }
- 75% {
- border-top: 16px rgba(0, 0, 0, 0.25) solid;
- border-right: 16px rgba(0, 0, 0, 0.25) solid;
- border-bottom: 16px rgba(0, 0, 0, 0.25) solid;
- border-left: 16px rgba(0, 0, 0, 0.75) solid;
- }
- 100% {
- border-top: 16px rgba(0, 0, 0, 0.75) solid;
- border-right: 16px rgba(0, 0, 0, 0.25) solid;
- border-bottom: 16px rgba(0, 0, 0, 0.25) solid;
- border-left: 16px rgba(0, 0, 0, 0.25) solid;
- }
- }
- @keyframes spSlices {
- 0% {
- border-top: 16px rgba(0, 0, 0, 0.75) solid;
- border-right: 16px rgba(0, 0, 0, 0.25) solid;
- border-bottom: 16px rgba(0, 0, 0, 0.25) solid;
- border-left: 16px rgba(0, 0, 0, 0.25) solid;
- }
- 25% {
- border-top: 16px rgba(0, 0, 0, 0.25) solid;
- border-right: 16px rgba(0, 0, 0, 0.75) solid;
- border-bottom: 16px rgba(0, 0, 0, 0.25) solid;
- border-left: 16px rgba(0, 0, 0, 0.25) solid;
- }
- 50% {
- border-top: 16px rgba(0, 0, 0, 0.25) solid;
- border-right: 16px rgba(0, 0, 0, 0.25) solid;
- border-bottom: 16px rgba(0, 0, 0, 0.75) solid;
- border-left: 16px rgba(0, 0, 0, 0.25) solid;
- }
- 75% {
- border-top: 16px rgba(0, 0, 0, 0.25) solid;
- border-right: 16px rgba(0, 0, 0, 0.25) solid;
- border-bottom: 16px rgba(0, 0, 0, 0.25) solid;
- border-left: 16px rgba(0, 0, 0, 0.75) solid;
- }
- 100% {
- border-top: 16px rgba(0, 0, 0, 0.75) solid;
- border-right: 16px rgba(0, 0, 0, 0.25) solid;
- border-bottom: 16px rgba(0, 0, 0, 0.25) solid;
- border-left: 16px rgba(0, 0, 0, 0.25) solid;
- }
- }
- /* Spinner Sphere */
- .sp-sphere {
- border-radius: 50%;
- border-left: 0px #000 solid;
- border-right: 0px #000 solid;
- -webkit-animation: spSphere 1s infinite linear;
- animation: spSphere 1s infinite linear;
- }
- @-webkit-keyframes spSphere {
- 0% {
- border-left: 0px #000 solid;
- border-right: 0px #000 solid;
- }
- 33% {
- border-left: 32px #000 solid;
- border-right: 0px #000 solid;
- }
- 34% {
- border-left: 0px #000 solid;
- border-right: 32px #000 solid;
- }
- 66% {
- border-left: 0px #000 solid;
- border-right: 0px #000 solid;
- }
- }
- @keyframes spSphere {
- 0% {
- border-left: 0px #000 solid;
- border-right: 0px #000 solid;
- }
- 33% {
- border-left: 32px #000 solid;
- border-right: 0px #000 solid;
- }
- 34% {
- border-left: 0px #000 solid;
- border-right: 32px #000 solid;
- }
- 66% {
- border-left: 0px #000 solid;
- border-right: 0px #000 solid;
- }
- }
- /* Spinner Bars */
- .sp-bars {
- position: relative;
- width: 10px;
- border: 1px #000 solid;
- background-color: rgba(0, 0, 0, 0.25);
- -webkit-animation: spBars 1s infinite linear;
- animation: spBars 1s infinite linear;
- }
- .sp-bars:after, .sp-bars:before {
- content: '';
- position: absolute;
- width: inherit;
- height: inherit;
- border: inherit;
- background-color: inherit;
- top: -1px;
- }
- .sp-bars:before {
- left: -20px;
- -webkit-animation: spBarsBefore 1s infinite linear;
- animation: spBarsBefore 1s infinite linear;
- }
- .sp-bars:after {
- right: -20px;
- -webkit-animation: spBarsAfter 1s infinite linear;
- animation: spBarsAfter 1s infinite linear;
- }
- @keyframes spBarsBefore {
- 0% {
- transform: scale(1, 1);
- }
- 25% {
- transform: scale(1, 1.25);
- }
- 50% {
- transform: scale(1, 0.75);
- }
- 75% {
- transform: scale(1, 1);
- }
- 100% {
- transform: scale(1, 1);
- }
- }
- @keyframes spBars {
- 0% {
- transform: scale(1, 1);
- }
- 25% {
- transform: scale(1, 1);
- }
- 50% {
- transform: scale(1, 1.25);
- }
- 75% {
- transform: scale(1, 1);
- }
- 100% {
- transform: scale(1, 1);
- }
- }
- @keyframes spBarsAfter {
- 0% {
- transform: scale(1, 1);
- }
- 25% {
- transform: scale(1, 1);
- }
- 50% {
- transform: scale(1, 0.75);
- }
- 75% {
- transform: scale(1, 1.25);
- }
- 100% {
- transform: scale(1, 1);
- }
- }
- /* Spinner Clock */
- .sp-clock {
- border: 1px #000 solid;
- border-radius: 50%;
- position: relative;
- }
- .sp-clock:before {
- content: '';
- border-left: 1px #000 solid;
- position: absolute;
- top: 2px;
- width: 1px;
- height: calc( 50% - 2px );
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
- -ms-transform-origin: 0% 100%;
- -webkit-transform-origin: 0% 100%;
- transform-origin: 0% 100%;
- -webkit-animation: spClock 1s infinite linear;
- animation: spClock 1s infinite linear;
- }
- @-webkit-keyframes spClock {
- from {
- -webkit-transform: rotate(0deg);
- }
- to {
- -webkit-transform: rotate(359deg);
- }
- }
- @keyframes spClock {
- from {
- transform: rotate(0deg);
- }
- to {
- transform: rotate(359deg);
- }
- }
- /* Spinner Wave */
- .sp-wave {
- border-radius: 50%;
- position: relative;
- opacity: 1;
- }
- .sp-wave:before, .sp-wave:after {
- content: '';
- border: 1px #000 solid;
- border-radius: 50%;
- width: 100%;
- height: 100%;
- position: absolute;
- left: 0px;
- }
- .sp-wave:before {
- transform: scale(1, 1);
- opacity: 1;
- -webkit-animation: spWaveBe 0.6s infinite linear;
- animation: spWaveBe 0.6s infinite linear;
- }
- .sp-wave:after {
- transform: scale(0, 0);
- opacity: 0;
- -webkit-animation: spWaveAf 0.6s infinite linear;
- animation: spWaveAf 0.6s infinite linear;
- }
- @-webkit-keyframes spWaveAf {
- from {
- -webkit-transform: scale(0.5, 0.5);
- opacity: 0;
- }
- to {
- -webkit-transform: scale(1, 1);
- opacity: 1;
- }
- }
- @keyframes spWaveAf {
- from {
- transform: scale(0.5, 0.5);
- opacity: 0;
- }
- to {
- transform: scale(1, 1);
- opacity: 1;
- }
- }
- @-webkit-keyframes spWaveBe {
- from {
- -webkit-transform: scale(1, 1);
- opacity: 1;
- }
- to {
- -webkit-transform: scale(1.5, 1.5);
- opacity: 0;
- }
- }
- @keyframes spWaveBe {
- from {
- -webkit-transform: scale(1, 1);
- opacity: 1;
- }
- to {
- -webkit-transform: scale(1.5, 1.5);
- opacity: 0;
- }
- }
- /* Spinner Texture */
- .sp-texture {
- border: 1px #000 solid;
- border-radius: 4px;
- position: relative;
- background: linear-gradient(45deg, transparent 49%, #000 50%, #000 50%, transparent 51%, transparent), linear-gradient(-45deg, transparent 49%, #000 50%, #000 50%, transparent 51%, transparent);
- background-size: 16px 16px;
- background-position: 0% 0%;
- -webkit-animation: spTexture 1s infinite linear;
- animation: spTexture 1s infinite linear;
- }
- @-webkit-keyframes spTexture {
- from {
- background-position: 0px 0px;
- }
- to {
- background-position: -16px 0px;
- }
- }
- @keyframes spTexture {
- from {
- background-position: 0px 0px;
- }
- to {
- background-position: -16px 0px;
- }
- }
- /* Spinner LoadBar */
- .sp-loadbar {
- width: 50px;
- height: 18px;
- border: 1px #000 solid;
- border-radius: 4px;
- background: linear-gradient(-60deg, transparent 0%, transparent 50%, #000 50%, #000 75%, transparent 75%, transparent);
- background-size: 20px 30px;
- background-position: 0px 0px;
- -webkit-animation: spLoadBar 0.8s infinite linear;
- animation: spLoadBar 0.8s infinite linear;
- }
- @-webkit-keyframes spLoadBar {
- from {
- background-position: 0px 0px;
- }
- to {
- background-position: -20px 0px;
- }
- }
- @keyframes spLoadBar {
- from {
- background-position: 0px 0px;
- }
- to {
- background-position: -20px 0px;
- }
- }
- /* Spinner Hydrogen */
- .sp-hydrogen {
- position: relative;
- border: 1px #000 solid;
- border-radius: 50%;
- -webkit-animation: spHydro 0.6s infinite linear;
- animation: spHydro 0.6s infinite linear;
- }
- .sp-hydrogen:before, .sp-hydrogen:after {
- content: '';
- position: absolute;
- width: 10px;
- height: 10px;
- background-color: #000;
- border-radius: 50%;
- }
- .sp-hydrogen:before {
- top: calc( 50% - 5px );
- left: calc( 50% - 5px );
- }
- .sp-hydrogen:after {
- top: -1px;
- left: -1px;
- }
- @-webkit-keyframes spHydro {
- from {
- -webkit-transform: rotate(0deg);
- }
- to {
- -webkit-transform: rotate(359deg);
- }
- }
- @keyframes spHydro {
- from {
- transform: rotate(0deg);
- }
- to {
- transform: rotate(359deg);
- }
- }
|