57.41b47c61.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. /* Make clicks pass-through */
  2. #nprogress {
  3. pointer-events: none;
  4. }
  5. #nprogress .bar {
  6. background: #29d;
  7. position: fixed;
  8. z-index: 1031;
  9. top: 0;
  10. left: 0;
  11. width: 100%;
  12. height: 2px;
  13. }
  14. /* Fancy blur effect */
  15. #nprogress .peg {
  16. display: block;
  17. position: absolute;
  18. right: 0px;
  19. width: 100px;
  20. height: 100%;
  21. box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  22. opacity: 1.0;
  23. transform: rotate(3deg) translate(0px, -4px);
  24. }
  25. /* Remove these to get rid of the spinner */
  26. #nprogress .spinner {
  27. display: block;
  28. position: fixed;
  29. z-index: 1031;
  30. top: 15px;
  31. right: 15px;
  32. }
  33. #nprogress .spinner-icon {
  34. width: 18px;
  35. height: 18px;
  36. box-sizing: border-box;
  37. border: solid 2px transparent;
  38. border-top-color: #29d;
  39. border-left-color: #29d;
  40. border-radius: 50%;
  41. -webkit-animation: nprogress-spinner 400ms linear infinite;
  42. animation: nprogress-spinner 400ms linear infinite;
  43. }
  44. .nprogress-custom-parent {
  45. overflow: hidden;
  46. position: relative;
  47. }
  48. .nprogress-custom-parent #nprogress .spinner,
  49. .nprogress-custom-parent #nprogress .bar {
  50. position: absolute;
  51. }
  52. @-webkit-keyframes nprogress-spinner {
  53. 0% { -webkit-transform: rotate(0deg); }
  54. 100% { -webkit-transform: rotate(360deg); }
  55. }
  56. @keyframes nprogress-spinner {
  57. 0% { transform: rotate(0deg); }
  58. 100% { transform: rotate(360deg); }
  59. }
  60. /*
  61. Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com>
  62. */
  63. .hljs {
  64. display: block;
  65. overflow-x: auto;
  66. padding: 0.5em;
  67. background: #fdf6e3;
  68. color: #657b83;
  69. }
  70. .hljs-comment,
  71. .hljs-quote {
  72. color: #93a1a1;
  73. }
  74. /* Solarized Green */
  75. .hljs-keyword,
  76. .hljs-selector-tag,
  77. .hljs-addition {
  78. color: #859900;
  79. }
  80. /* Solarized Cyan */
  81. .hljs-number,
  82. .hljs-string,
  83. .hljs-meta .hljs-meta-string,
  84. .hljs-literal,
  85. .hljs-doctag,
  86. .hljs-regexp {
  87. color: #2aa198;
  88. }
  89. /* Solarized Blue */
  90. .hljs-title,
  91. .hljs-section,
  92. .hljs-name,
  93. .hljs-selector-id,
  94. .hljs-selector-class {
  95. color: #268bd2;
  96. }
  97. /* Solarized Yellow */
  98. .hljs-attribute,
  99. .hljs-attr,
  100. .hljs-variable,
  101. .hljs-template-variable,
  102. .hljs-class .hljs-title,
  103. .hljs-type {
  104. color: #b58900;
  105. }
  106. /* Solarized Orange */
  107. .hljs-symbol,
  108. .hljs-bullet,
  109. .hljs-subst,
  110. .hljs-meta,
  111. .hljs-meta .hljs-keyword,
  112. .hljs-selector-attr,
  113. .hljs-selector-pseudo,
  114. .hljs-link {
  115. color: #cb4b16;
  116. }
  117. /* Solarized Red */
  118. .hljs-built_in,
  119. .hljs-deletion {
  120. color: #dc322f;
  121. }
  122. .hljs-formula {
  123. background: #eee8d5;
  124. }
  125. .hljs-emphasis {
  126. font-style: italic;
  127. }
  128. .hljs-strong {
  129. font-weight: bold;
  130. }