index.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <template>
  2. <div class="app-container home">
  3. </div>
  4. </template>
  5. <script setup name="Index" lang="ts">
  6. const goTarget = (url: string) => {
  7. window.open(url, '__blank');
  8. };
  9. </script>
  10. <style lang="scss" scoped>
  11. .home {
  12. blockquote {
  13. padding: 10px 20px;
  14. margin: 0 0 20px;
  15. font-size: 17.5px;
  16. border-left: 5px solid #eee;
  17. }
  18. hr {
  19. margin-top: 20px;
  20. margin-bottom: 20px;
  21. border: 0;
  22. border-top: 1px solid #eee;
  23. }
  24. .col-item {
  25. margin-bottom: 20px;
  26. }
  27. ul {
  28. padding: 0;
  29. margin: 0;
  30. }
  31. font-family: 'open sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  32. font-size: 13px;
  33. color: #676a6c;
  34. overflow-x: hidden;
  35. ul {
  36. list-style-type: none;
  37. }
  38. h4 {
  39. margin-top: 0px;
  40. }
  41. h2 {
  42. margin-top: 10px;
  43. font-size: 26px;
  44. font-weight: 100;
  45. }
  46. p {
  47. margin-top: 10px;
  48. b {
  49. font-weight: 700;
  50. }
  51. }
  52. .update-log {
  53. ol {
  54. display: block;
  55. list-style-type: decimal;
  56. margin-block-start: 1em;
  57. margin-block-end: 1em;
  58. margin-inline-start: 0;
  59. margin-inline-end: 0;
  60. padding-inline-start: 40px;
  61. }
  62. }
  63. }
  64. </style>