App.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <template>
  2. <div id="app">
  3. <router-view></router-view>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'app'
  9. }
  10. </script>
  11. <style>
  12. #app {
  13. font-family: 'Avenir', Helvetica, Arial, sans-serif;
  14. -webkit-font-smoothing: antialiased;
  15. -moz-osx-font-smoothing: grayscale;
  16. text-align: center;
  17. color: #2c3e50;
  18. min-width: 1200px;
  19. display: block;
  20. }
  21. .el-loading-spinner{
  22. .path{
  23. stroke:#c81118!important;
  24. }
  25. }
  26. /*.rechange{
  27. height: 50px;
  28. li{
  29. float: left;
  30. height: 50px;
  31. line-height: 50px;
  32. text-align: center;
  33. font-size: 18px;
  34. color: #000;
  35. }
  36. .pleft{
  37. width: 96px;
  38. border-bottom: 3px solid #c81118;
  39. }
  40. .pright{
  41. width:739px;
  42. border-bottom: 3px solid #ccc;
  43. }
  44. }*/
  45. #app{
  46. ::-webkit-scrollbar{
  47. display:none;
  48. }
  49. }
  50. scrollbar-arrow-color: rgba(15,15,15,15);
  51. scrollbar-face-color: rgba(15,15,15,15);
  52. scrollbar-3dlight-color: rgba(15,15,15,15);
  53. scrollbar-highlight-color: rgba(15,15,15,15);
  54. scrollbar-shadow-color: rgba(15,15,15,15);
  55. scrollbar-darkshadow-color: rgba(15,15,15,15);
  56. scrollbar-track-color: rgba(15,15,15,15);
  57. scrollbar-base-color:rgba(15,15,15,15);
  58. </style>