default.vue 963 B

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