1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /*========================================================
- DARK LAYOUT
- =========================================================*/
- @-webkit-keyframes line-scale {
- 0% {
- transform: scaley(1);
- }
- 50% {
- transform: scaley(0.4);
- }
- 100% {
- transform: scaley(1);
- }
- }
- @keyframes line-scale {
- 0% {
- transform: scaley(1);
- }
- 50% {
- transform: scaley(0.4);
- }
- 100% {
- transform: scaley(1);
- }
- }
- .line-scale > div:nth-child(1) {
- -webkit-animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
- animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
- }
- .line-scale > div:nth-child(2) {
- -webkit-animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
- animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
- }
- .line-scale > div:nth-child(3) {
- -webkit-animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
- animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
- }
- .line-scale > div:nth-child(4) {
- -webkit-animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
- animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
- }
- .line-scale > div:nth-child(5) {
- -webkit-animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
- animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
- }
- .line-scale > div {
- background-color: #b8c2cc;
- width: 4px;
- height: 3.45rem;
- border-radius: 2px;
- margin: 2px;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
- display: inline-block;
- }
|