default.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <template>
  2. <div>
  3. <nuxt/>
  4. <div>
  5. <common-footer/>
  6. </div>
  7. </div>
  8. </template>
  9. <script>
  10. import CommonFooter from '~components/default/CommonFooter.vue'
  11. export default {
  12. name: 'default',
  13. components: {
  14. CommonFooter
  15. }
  16. }
  17. </script>
  18. <style>
  19. html {
  20. font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  21. font-size: 16px;
  22. word-spacing: 1px;
  23. -ms-text-size-adjust: 100%;
  24. -webkit-text-size-adjust: 100%;
  25. -moz-osx-font-smoothing: grayscale;
  26. -webkit-font-smoothing: antialiased;
  27. box-sizing: border-box;
  28. }
  29. *, *:before, *: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>