Navigation.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <template>
  2. <LayoutContainer>
  3. <v-row class="menu-bar custom-row">
  4. <v-col cols="6" sm="4" md="2">
  5. <nuxt-link to="/">
  6. <v-img class="logo" src="/images/Opentalent.png"></v-img>
  7. </nuxt-link>
  8. </v-col>
  9. <v-col cols="12" sm="7" md="5">
  10. <nuxt-link class="common-styles menu-link" to="/about"
  11. >A propos</nuxt-link
  12. >
  13. <nuxt-link class="common-styles menu-link" to="/software"
  14. >Nos logiciels</nuxt-link
  15. >
  16. <nuxt-link class="common-styles menu-link" to="/directory"
  17. >Annuaire</nuxt-link
  18. >
  19. <nuxt-link class="common-styles menu-link" to="/news"
  20. >Actualités</nuxt-link
  21. >
  22. </v-col>
  23. <v-col cols="12" sm="12" md="5" class="buttons-col">
  24. <v-btn class="btn btn-common common-styles btn-login" text>
  25. <v-icon left class="fas fa-user mr-4"></v-icon> Se connecter
  26. </v-btn>
  27. <v-btn class="btn btn-common common-styles btn-subscribe ml-4" text>
  28. <v-icon left class="fas fa-bell mr-4"></v-icon>Vous abonner
  29. </v-btn>
  30. <div class="vertical-bar"></div>
  31. <nuxt-link class="common-styles btn-contact" to="/contact">
  32. <v-icon class="fas fa-comment-dots mr-2"></v-icon>Nous contacter
  33. </nuxt-link>
  34. </v-col>
  35. </v-row>
  36. </LayoutContainer>
  37. </template>
  38. <script></script>
  39. <style scoped>
  40. .logo {
  41. height: 4.5rem;
  42. height: 5rem;
  43. }
  44. .custom-row {
  45. padding: 0 4rem;
  46. }
  47. .common-styles {
  48. font-family: "Barlow";
  49. font-style: normal;
  50. font-weight: 700;
  51. font-size: 0.7rem;
  52. line-height: 15px;
  53. }
  54. .vertical-bar {
  55. width: 0px;
  56. height: 3rem;
  57. border: 0.5px solid rgba(14, 45, 50, 0.4);
  58. margin-left: 10px;
  59. margin-right: 10px;
  60. margin-top: 0.2rem;
  61. }
  62. .buttons-col {
  63. display: flex;
  64. }
  65. .menu-bar {
  66. display: flex;
  67. align-items: center;
  68. background-color: #ffffff;
  69. height: 100%;
  70. margin-top: 10px;
  71. }
  72. .menu-link {
  73. text-decoration: none;
  74. padding: 1.1rem;
  75. font-weight: 500;
  76. font-size: 0.96rem;
  77. letter-spacing: 0.1em;
  78. text-transform: uppercase;
  79. color: #0e2d32;
  80. margin-right: 4px;
  81. }
  82. .btn-common {
  83. display: flex;
  84. flex-direction: row;
  85. align-items: center;
  86. padding: 25px;
  87. font-weight: 700;
  88. font-size: 0.8rem;
  89. line-height: 15px;
  90. border-radius: 6px;
  91. }
  92. .btn-login {
  93. background: #091d20;
  94. color: white;
  95. }
  96. .btn-subscribe {
  97. background: #9edbdd;
  98. }
  99. .btn-contact {
  100. letter-spacing: 0.18em;
  101. text-transform: uppercase;
  102. color: #0e2d32;
  103. margin-top: 17px;
  104. text-decoration: none;
  105. }
  106. .btn-contact:hover,
  107. .menu-link:hover {
  108. text-decoration: underline;
  109. }
  110. </style>