App.vue 609 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <div id="app" >
  3. <router-view/>
  4. </div>
  5. </template>
  6. <style>
  7. *{
  8. margin:0;
  9. padding: 0;;
  10. }
  11. img{
  12. vertical-align: middle;
  13. }
  14. html {
  15. }
  16. body{ font-family: "PingFang SC", "Helvetica Neue", "Hiragino Sans GB", "Segoe UI", "Microsoft YaHei", 微软雅黑, sans-serif;font-weight: 400;min-width: 1200px;}
  17. #nav a {
  18. font-weight: bold;
  19. color: #2c3e50;
  20. }
  21. .container{
  22. margin: 10px;
  23. padding: 10px;
  24. background: #fff;
  25. }
  26. #nav a.router-link-exact-active {
  27. color: #42b983;
  28. }
  29. .color-info{
  30. /* font-size: 12px; */
  31. color: #606c80;
  32. line-height: 1.5;
  33. }
  34. .text-small{
  35. font-size: 12px;
  36. }
  37. </style>