default.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <template>
  2. <div>
  3. <navi></navi>
  4. <nuxt />
  5. <foot></foot>
  6. </div>
  7. </template>
  8. <script>
  9. import { mapState } from 'vuex'
  10. import Navi from "~/components/Navi";
  11. import Foot from "~/components/Foot";
  12. export default{
  13. components: {Navi, Foot},
  14. }
  15. </script>
  16. <style>
  17. html {
  18. font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI',
  19. Roboto, 'Helvetica Neue', Arial, sans-serif;
  20. word-spacing: 1px;
  21. -ms-text-size-adjust: 100%;
  22. -webkit-text-size-adjust: 100%;
  23. -moz-osx-font-smoothing: grayscale;
  24. -webkit-font-smoothing: antialiased;
  25. box-sizing: border-box;
  26. }
  27. *,
  28. *:before,
  29. *:after {
  30. box-sizing: border-box;
  31. margin: 0;
  32. }
  33. .button--green {
  34. display: inline-block;
  35. border-radius: 4px;
  36. border: 1px solid #3b8070;
  37. color: #3b8070;
  38. text-decoration: none;
  39. padding: 10px 30px;
  40. }
  41. .button--green:hover {
  42. color: #fff;
  43. background-color: #3b8070;
  44. }
  45. .button--grey {
  46. display: inline-block;
  47. border-radius: 4px;
  48. border: 1px solid #35495e;
  49. color: #35495e;
  50. text-decoration: none;
  51. padding: 10px 30px;
  52. margin-left: 15px;
  53. }
  54. .button--grey:hover {
  55. color: #fff;
  56. background-color: #35495e;
  57. }
  58. </style>