Navigation.vue 2.6 KB

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