app.css 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. /* latin-ext */
  2. @font-face {
  3. font-family: 'Raleway';
  4. font-style: normal;
  5. font-weight: 300;
  6. src: local("Raleway Light"), local("Raleway-Light"), url(/fonts/ZKwULyCG95tk6mOqHQfRBAsYbbCjybiHxArTLjt7FRU.woff2?d41d8cd98f00b204e9800998ecf8427e) format("woff2");
  7. unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
  8. }
  9. /* latin */
  10. @font-face {
  11. font-family: 'Raleway';
  12. font-style: normal;
  13. font-weight: 300;
  14. src: local("Raleway Light"), local("Raleway-Light"), url(/fonts/-_Ctzj9b56b8RgXW8FAriQzyDMXhdD8sAj6OAJTFsBI.woff2?d41d8cd98f00b204e9800998ecf8427e) format("woff2");
  15. unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
  16. }
  17. /* latin-ext */
  18. @font-face {
  19. font-family: 'Raleway';
  20. font-style: normal;
  21. font-weight: 400;
  22. src: local("Raleway"), local("Raleway-Regular"), url(/fonts/YZaO6llzOP57DpTBv2GnyFKPGs1ZzpMvnHX-7fPOuAc.woff2?d41d8cd98f00b204e9800998ecf8427e) format("woff2");
  23. unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
  24. }
  25. /* latin */
  26. @font-face {
  27. font-family: 'Raleway';
  28. font-style: normal;
  29. font-weight: 400;
  30. src: local("Raleway"), local("Raleway-Regular"), url(/fonts/QAUlVt1jXOgQavlW5wEfxQLUuEpTyoUstqEm5AMlJo4.woff2?d41d8cd98f00b204e9800998ecf8427e) format("woff2");
  31. unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
  32. }
  33. /* latin-ext */
  34. @font-face {
  35. font-family: 'Raleway';
  36. font-style: normal;
  37. font-weight: 600;
  38. src: local("Raleway SemiBold"), local("Raleway-SemiBold"), url(/fonts/STBOO2waD2LpX45SXYjQBQsYbbCjybiHxArTLjt7FRU.woff2?d41d8cd98f00b204e9800998ecf8427e) format("woff2");
  39. unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
  40. }
  41. /* latin */
  42. @font-face {
  43. font-family: 'Raleway';
  44. font-style: normal;
  45. font-weight: 600;
  46. src: local("Raleway SemiBold"), local("Raleway-SemiBold"), url(/fonts/xkvoNo9fC8O2RDydKj12bwzyDMXhdD8sAj6OAJTFsBI.woff2?d41d8cd98f00b204e9800998ecf8427e) format("woff2");
  47. unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
  48. }
  49. .app-view-loading {
  50. position: fixed;
  51. top: 0;
  52. left: 0;
  53. right: 0;
  54. bottom: 0;
  55. z-index: 99999;
  56. background-color: rgba(255, 255, 255, 0.7);
  57. display: flex;
  58. align-items: center;
  59. justify-content: center;
  60. }
  61. .app-view-loading > div {
  62. text-align: center;
  63. }
  64. .app-view-loading > div > div {
  65. color: #ccc;
  66. margin: 0;
  67. font: 11px verdana;
  68. line-height: 16px;
  69. text-transform: uppercase;
  70. letter-spacing: 1px;
  71. }
  72. .app-view-loading > div > span {
  73. display: inline-block;
  74. vertical-align: middle;
  75. width: 8px;
  76. height: 8px;
  77. margin: 2px;
  78. background: #007DB6;
  79. border-radius: 8px;
  80. -webkit-animation: app-view-loadanim 1s infinite alternate;
  81. animation: app-view-loadanim 1s infinite alternate;
  82. }
  83. .app-view-loading > div > span:nth-of-type(2) {
  84. background: #008FB2;
  85. -webkit-animation-delay: 0.2s;
  86. animation-delay: 0.2s;
  87. }
  88. .app-view-loading > div > span:nth-of-type(3) {
  89. background: #009B9E;
  90. -webkit-animation-delay: 0.4s;
  91. animation-delay: 0.4s;
  92. }
  93. .app-view-loading > div > span:nth-of-type(4) {
  94. background: #00A77D;
  95. -webkit-animation-delay: 0.6s;
  96. animation-delay: 0.6s;
  97. }
  98. .app-view-loading > div > span:nth-of-type(5) {
  99. background: #00B247;
  100. -webkit-animation-delay: 0.8s;
  101. animation-delay: 0.8s;
  102. }
  103. .app-view-loading > div > span:nth-of-type(6) {
  104. background: #5AB027;
  105. -webkit-animation-delay: 1.0s;
  106. animation-delay: 1.0s;
  107. }
  108. .app-view-loading > div > span:nth-of-type(7) {
  109. background: #A0B61E;
  110. -webkit-animation-delay: 1.2s;
  111. animation-delay: 1.2s;
  112. }
  113. @-webkit-keyframes app-view-loadanim {
  114. 0% {
  115. opacity: 0;
  116. }
  117. 100% {
  118. opacity: 1;
  119. }
  120. }
  121. @keyframes app-view-loadanim {
  122. 0% {
  123. opacity: 0;
  124. }
  125. 100% {
  126. opacity: 1;
  127. }
  128. }
  129. .navbar-laravel {
  130. background-color: #fff;
  131. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  132. }
  133. body {
  134. font-family: -apple-system, SF UI Text, Arial, PingFang SC, Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, sans-serif;
  135. }