123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- <template>
- <div id="app" style="overflow-x: hidden">
- <a v-if="!isLandingPage" href="#" class="back-to-top">
- <i class="fa fa-chevron-up"></i>
- </a>
- <div v-if="!isLandingPage" class="click-closed"></div>
- <SearchTab v-if="!isLandingPage" />
- <NavBar v-if="!isLandingPage" @routerGoTo="routerGoTo" />
- <div v-if="!isLandingPage"></div>
- <router-view @setLandingPage="setLandingPage" style="margin-top:140px" />
- <FooterSection v-if="!isLandingPage" />
- </div>
- </template>
-
- <script>
- /* eslint-disable */
- 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",
- data() {
- return {
- isLandingPage: false
- };
- },
- components: {
- SearchTab,
- NavBar,
- FooterSection
- },
-
- methods: {
- routerGoTo(goTo) {
- this.$router.push(goTo);
- },
- setLandingPage(item) {
- this.isLandingPage = item;
- }
- }
- };
- </script>
-
- <style>
- @import "../public/css/newStyle.css";
- 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;
- }
- .noWeeks {
- background-color: #ff4444;
- }
- </style>
-
- <style scoped>
- .pushDown {
- height: 70px;
- }
- </style>
|