default.vue 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <template>
  2. <div>
  3. <Navbar/>
  4. <nuxt />
  5. <app-footer />
  6. </div>
  7. </template>
  8. <script>
  9. import AppFooter from '~/components/shared/Footer'
  10. import Navbar from "~/components/shared/Navbar";
  11. export default {
  12. components : {
  13. Navbar, AppFooter
  14. }
  15. }
  16. </script>
  17. <style>
  18. html {
  19. font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI',
  20. 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. *,
  30. *:before,
  31. *:after {
  32. box-sizing: border-box;
  33. margin: 0;
  34. }
  35. .button--green {
  36. display: inline-block;
  37. border-radius: 4px;
  38. border: 1px solid #3b8070;
  39. color: #3b8070;
  40. text-decoration: none;
  41. padding: 10px 30px;
  42. }
  43. .button--green:hover {
  44. color: #fff;
  45. background-color: #3b8070;
  46. }
  47. .button--grey {
  48. display: inline-block;
  49. border-radius: 4px;
  50. border: 1px solid #35495e;
  51. color: #35495e;
  52. text-decoration: none;
  53. padding: 10px 30px;
  54. margin-left: 15px;
  55. }
  56. .button--grey:hover {
  57. color: #fff;
  58. background-color: #35495e;
  59. }
  60. </style>