App.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App'
  9. }
  10. </script>
  11. <style>
  12. .textSpan{
  13. position: relative;
  14. top: 0;
  15. font-size: 14px;
  16. font-weight: 600;
  17. color:rgb(87, 86, 86)
  18. }
  19. /* ¶Card 卡片 */
  20. .clearfix{
  21. line-height: 20px;
  22. font-size: 18px;
  23. font-weight: 600;
  24. }
  25. .topClass{
  26. color:rgb(97, 174, 247)
  27. }
  28. /* //滚动条 */
  29. ::-webkit-scrollbar {
  30. width: 11px;
  31. height: 11px;
  32. }
  33. ::-webkit-scrollbar-thumb {
  34. /* background-color: #0f5ef080; */
  35. background: linear-gradient(to left,#32e4c663,#0c6ceb71);
  36. border-radius: 5px;
  37. box-shadow: 0 2px 12px 0 rgba(204, 201, 201, 0.1)
  38. }
  39. /* .el-button--black_button.is-plain {
  40. background: #2d2d3663;
  41. color: rgb(95, 92, 95);
  42. border: 1px solid #2d2d3663;
  43. }
  44. .el-button--black_button.is-plain:hover{
  45. background: #07070a;
  46. color: rgb(255, 255, 255);
  47. border: 1px solid #010102c2;
  48. }
  49. .el-button--black_button.is-plain:active{
  50. background: #07070a;
  51. color: rgb(255, 255, 255);
  52. border: 1px solid #010102c2;
  53. } */
  54. </style>