You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <template>
  2. <div id="app">
  3. <a href="#" class="back-to-top">
  4. <i class="fa fa-chevron-up"></i>
  5. </a>
  6. <div class="click-closed"></div>
  7. <NavBar @routerGoTo="routerGoTo" />
  8. <div class="pushDown"></div>
  9. <router-view />
  10. <FooterSection class="margin-top" />
  11. </div>
  12. </template>
  13. <script>
  14. import NavBar from "./components/shared/navBar.vue";
  15. import FooterSection from "./components/shared/footerSection.vue";
  16. export default {
  17. name: "app",
  18. components: {
  19. NavBar,
  20. FooterSection,
  21. },
  22. methods: {
  23. routerGoTo(goTo) {
  24. this.$router.push(goTo);
  25. },
  26. },
  27. };
  28. </script>
  29. <style>
  30. button:hover {
  31. cursor: pointer;
  32. }
  33. hr {
  34. background-color: #24aae1;
  35. }
  36. .my-btn {
  37. margin: 2px;
  38. color: #24aae1;
  39. }
  40. .title-img {
  41. width: 800px;
  42. height: 400px;
  43. border-radius: 10px;
  44. }
  45. .title-title {
  46. opacity: 0.7;
  47. border: white solid 3px;
  48. border-radius: 15px;
  49. }
  50. .myBackground {
  51. border-color: #24aae1;
  52. background-color: #24aae1;
  53. }
  54. .myFill {
  55. fill: #24aae1;
  56. color: #24aae1;
  57. }
  58. .mySuccess {
  59. border-color: rgba(2, 184, 117, 0.5);
  60. background-color: rgba(2, 184, 117, 0.5);
  61. }
  62. .myInfo {
  63. border-color: rgba(23, 162, 184, 0.5);
  64. background-color: rgba(23, 162, 184, 0.5);
  65. }
  66. .myWarning {
  67. border-color: rgba(240, 173, 78, 0.5);
  68. background-color: rgba(240, 173, 78, 0.5);
  69. }
  70. .myError {
  71. border-color: rgba(217, 83, 79, 0.5);
  72. background-color: rgba(217, 83, 79, 0.5);
  73. }
  74. a {
  75. cursor: pointer;
  76. }
  77. a:hover {
  78. color: #24aae1;
  79. }
  80. #app {
  81. font-family: "Avenir", Helvetica, Arial, sans-serif;
  82. -webkit-font-smoothing: antialiased;
  83. -moz-osx-font-smoothing: grayscale;
  84. text-align: center;
  85. color: #2c3e50;
  86. }
  87. .cursor-pointer {
  88. cursor: pointer;
  89. }
  90. body,
  91. html {
  92. font-size: 13.7px !important;
  93. color: #666;
  94. font-family: "Roboto", sans-serif;
  95. height: 100%;
  96. margin: 0;
  97. }
  98. .isSelected {
  99. border-color: white white #24aae1 white;
  100. }
  101. .isUnSelected {
  102. border-color: white white white white;
  103. }
  104. .tabButton {
  105. display: block;
  106. padding: 0.5rem 1rem;
  107. background-color: white;
  108. border-style: none none solid none;
  109. width: 100px;
  110. }
  111. .top-left {
  112. position: absolute;
  113. top: 8px;
  114. width: 350px;
  115. color: white;
  116. }
  117. .normalText {
  118. background-color: #24aae1;
  119. }
  120. .pendingOffer {
  121. background-color: #ff8344;
  122. }
  123. </style>
  124. <style scoped>
  125. .pushDown {
  126. height: 70px;
  127. }
  128. .margin-top {
  129. margin-top: 50px;
  130. }
  131. </style>