123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <template>
- <div id="app">
- <a href="#" class="back-to-top">
- <i class="fa fa-chevron-up"></i>
- </a>
- <div class="click-closed"></div>
- <SearchTab />
- <NavBar @routerGoTo="routerGoTo" />
- <div class="pushDown"></div>
- <router-view />
- <FooterSection class="margin-top" />
- </div>
- </template>
-
- <script>
- import SearchTab from './components/shared/searchTab.vue';
- import NavBar from './components/shared/navBar.vue';
- import FooterSection from './components/shared/footerSection.vue';
-
- export default {
- name: 'app',
- components: {
- SearchTab,
- NavBar,
- FooterSection,
- },
- methods: {
- routerGoTo(goTo) {
- this.$router.push(goTo);
- },
- },
- };
- </script>
-
- <style>
- button:hover {
- cursor: pointer;
- }
- hr {
- background-color: #60cbeb;
- }
- .my-btn {
- margin: 2px;
- color: #60cbeb;
- }
- .title-img {
- width: 800px;
- height: 400px;
- border-radius: 10px;
- }
- .title-title {
- opacity: 0.7;
- border: white solid 3px;
- border-radius: 15px;
- }
- .myBackground {
- border-color: #60cbeb;
- background-color: #60cbeb;
- }
- .myFill {
- fill: #60cbeb;
- color: #60cbeb;
- }
- .mySuccess {
- border-color: rgba(2, 184, 117, 0.5);
- background-color: rgba(2, 184, 117, 0.5);
- }
- .myInfo {
- border-color: rgba(23, 162, 184, 0.5);
- background-color: rgba(23, 162, 184, 0.5);
- }
- .myWarning {
- border-color: rgba(240, 173, 78, 0.5);
- background-color: rgba(240, 173, 78, 0.5);
- }
- .myError {
- border-color: rgba(217, 83, 79, 0.5);
- background-color: rgba(217, 83, 79, 0.5);
- }
- a {
- cursor: pointer;
- }
- a:hover {
- color: #60cbeb;
- }
- #app {
- font-family: "Avenir", Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- text-align: center;
- color: #2c3e50;
- }
- .cursor-pointer {
- cursor: pointer;
- }
- body,
- html {
- font-size: 13.7px !important;
- color: #666;
- font-family: "Roboto", sans-serif;
- height: 100%;
- margin: 0;
- }
- .isSelected {
- border-color: white white #60cbeb white;
- }
- .isUnSelected {
- border-color: white white white white;
- }
- .tabButton {
- display: block;
- padding: 0.5rem 1rem;
- background-color: white;
- border-style: none none solid none;
- width: 100px;
- }
- .top-left {
- position: absolute;
- top: 8px;
- width: 350px;
- color: white;
- }
- .normalText {
- background-color: #60cbeb;
- }
- .pendingOffer {
- background-color: #ff8344;
- }
- </style>
-
- <style scoped>
- .pushDown {
- height: 70px;
- }
- .margin-top {
- margin-top: 50px;
- }
- </style>
|