default.vue 1.1 KB

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