App.vue 891 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <style lang="scss">
  7. * {
  8. margin: 0;
  9. padding: 0;
  10. }
  11. html,
  12. body {
  13. overflow: hidden;
  14. width: 100%;
  15. height: 100%;
  16. font-weight: 400;
  17. font-size: 14px;
  18. color: #bfcbd9;
  19. }
  20. body {
  21. font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue",
  22. Helvetica, Segoe UI, Arial, Roboto, "PingFang SC", "miui",
  23. "Hiragino Sans GB", "Microsoft Yahei", sans-serif;
  24. overflow-y: scroll;
  25. font-weight: 400;
  26. color: #2c3e50;
  27. }
  28. .local_table {
  29. width: 100%;
  30. border-top: 1px solid #eee;
  31. border-bottom: 1px solid #eee;
  32. }
  33. td {
  34. padding: 5px;
  35. }
  36. .title {
  37. padding-left: 13px;
  38. height: 3em;
  39. line-height: 3em;
  40. position: relative;
  41. }
  42. .title::before {
  43. position: absolute;
  44. left: 5px;
  45. top: 1em;
  46. display: block;
  47. content: " ";
  48. width: 2px;
  49. height: 1em;
  50. background-color: #bfcbd9;
  51. }
  52. </style>