default.vue 959 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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", Roboto, "Helvetica Neue", Arial, sans-serif;
  9. font-size: 16px;
  10. word-spacing: 1px;
  11. -ms-text-size-adjust: 100%;
  12. -webkit-text-size-adjust: 100%;
  13. -moz-osx-font-smoothing: grayscale;
  14. -webkit-font-smoothing: antialiased;
  15. box-sizing: border-box;
  16. }
  17. *, *:before, *:after {
  18. box-sizing: border-box;
  19. margin: 0;
  20. }
  21. .button--green {
  22. display: inline-block;
  23. border-radius: 4px;
  24. border: 1px solid #3b8070;
  25. color: #3b8070;
  26. text-decoration: none;
  27. padding: 10px 30px;
  28. }
  29. .button--green:hover {
  30. color: #fff;
  31. background-color: #3b8070;
  32. }
  33. .button--grey {
  34. display: inline-block;
  35. border-radius: 4px;
  36. border: 1px solid #35495e;
  37. color: #35495e;
  38. text-decoration: none;
  39. padding: 10px 30px;
  40. margin-left: 15px;
  41. }
  42. .button--grey:hover {
  43. color: #fff;
  44. background-color: #35495e;
  45. }
  46. </style>