| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- /*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;
- }
- body,
- .header-navbar,
- .navigation,
- .breadcrumb,
- h1,
- h2,
- h3,
- h4,
- h5 {
- font-family: Nunito, system-ui, BlinkMacSystemFont, -apple-system, sans-serif;
- }
- body.vertical-layout.vertical-menu-modern.menu-expanded .main-menu .navigation > li > a > i:before {
- font-size: 1.3rem;
- }
- .breadcrumb {
- border-left: 0;
- }
- .content-header h1 {
- font-weight: 400;
- font-size: 24px;
- display: inline-block;
- }
- .content-header h1 small {
- font-size: 15px;
- display: inline-block;
- padding-left: 5px;
- font-weight: 300;
- }
|