/*nprogress*/ #nprogress { pointer-events: none; } #nprogress .bar { background: rgba(115, 103, 240, 0.8); position: fixed; z-index: 1031; top: 0; left: 0; width: 100%; height: 2.5px; } #nprogress .peg { display: block; position: absolute; right: 0; width: 100px; height: 100%; box-shadow: 0 0 10px #7367f0, 0 0 5px #7367f0; opacity: 1; transform: rotate(3deg) translate(0, -4px); } #nprogress .spinner { display: block; position: fixed; z-index: 1031; top: 25px; right: 15px; } #nprogress .spinner-icon { width: 18px; height: 18px; box-sizing: border-box; border: solid 2px transparent; border-top-color: #7367f0; border-left-color: #7367f0; border-radius: 50%; -webkit-animation: nprogress-spinner 0.4s linear infinite; animation: nprogress-spinner 0.4s linear infinite; } .nprogress-custom-parent { overflow: hidden; position: relative; } .nprogress-custom-parent #nprogress .bar, .nprogress-custom-parent #nprogress .spinner { position: absolute; } @-webkit-keyframes nprogress-spinner { 0% { -webkit-transform: rotate(0); } 100% { -webkit-transform: rotate(360deg); } } @keyframes nprogress-spinner { 0% { transform: rotate(0); } 100% { transform: rotate(360deg); } } /*nprogress*/ html body { background-color: ecf0f5; }