index.vue 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <template>
  2. <div class="container">
  3. <div>
  4. <Logo />
  5. <h1 class="title">
  6. TBTools
  7. </h1>
  8. <div class="links">
  9. <a
  10. href="https://nuxtjs.org/"
  11. target="_blank"
  12. rel="noopener noreferrer"
  13. class="button--green"
  14. >
  15. Documentation
  16. </a>
  17. <a
  18. href="https://github.com/nuxt/nuxt.js"
  19. target="_blank"
  20. rel="noopener noreferrer"
  21. class="button--grey"
  22. >
  23. GitHub
  24. </a>
  25. </div>
  26. </div>
  27. </div>
  28. </template>
  29. <script>
  30. export default {}
  31. </script>
  32. <style>
  33. .container {
  34. margin: 0 auto;
  35. min-height: 100vh;
  36. display: flex;
  37. justify-content: center;
  38. align-items: center;
  39. text-align: center;
  40. }
  41. .title {
  42. font-family:
  43. 'Quicksand',
  44. 'Source Sans Pro',
  45. -apple-system,
  46. BlinkMacSystemFont,
  47. 'Segoe UI',
  48. Roboto,
  49. 'Helvetica Neue',
  50. Arial,
  51. sans-serif;
  52. display: block;
  53. font-weight: 300;
  54. font-size: 100px;
  55. color: #35495e;
  56. letter-spacing: 1px;
  57. }
  58. .subtitle {
  59. font-weight: 300;
  60. font-size: 42px;
  61. color: #526488;
  62. word-spacing: 5px;
  63. padding-bottom: 15px;
  64. }
  65. .links {
  66. padding-top: 15px;
  67. }
  68. </style>