instructor.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <template>
  2. <nuxt />
  3. </template>
  4. <script>
  5. export default {
  6. middleware: 'admin',
  7. }
  8. </script>
  9. <style lang="scss">
  10. html {
  11. font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI',
  12. Roboto, 'Helvetica Neue', Arial, sans-serif;
  13. color: #505763;;
  14. background-color: #f2f3f5;
  15. font-size: 16px;
  16. word-spacing: 1px;
  17. -ms-text-size-adjust: 100%;
  18. -webkit-text-size-adjust: 100%;
  19. -moz-osx-font-smoothing: grayscale;
  20. -webkit-font-smoothing: antialiased;
  21. box-sizing: border-box;
  22. }
  23. *,
  24. *:before,
  25. *:after {
  26. box-sizing: border-box;
  27. margin: 0;
  28. }
  29. .card.manage-card {
  30. .label {
  31. color: #353535;
  32. }
  33. .card-header-title {
  34. color: #616161;
  35. }
  36. }
  37. .full-page-takeover-header {
  38. background-color: #58529f;
  39. color: white;
  40. &-text {
  41. color: white;
  42. font-weight: bold;
  43. font-size: 22px;
  44. }
  45. }
  46. .button--green {
  47. display: inline-block;
  48. border-radius: 4px;
  49. border: 1px solid #3b8070;
  50. color: #3b8070;
  51. text-decoration: none;
  52. padding: 10px 30px;
  53. }
  54. .button--green:hover {
  55. color: #fff;
  56. background-color: #3b8070;
  57. }
  58. .button--grey {
  59. display: inline-block;
  60. border-radius: 4px;
  61. border: 1px solid #35495e;
  62. color: #35495e;
  63. text-decoration: none;
  64. padding: 10px 30px;
  65. margin-left: 15px;
  66. }
  67. .button--grey:hover {
  68. color: #fff;
  69. background-color: #35495e;
  70. }
  71. </style>