Navigation.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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>
  37. </script>
  38. <style scoped>
  39. .custom-row{
  40. padding: 0 10px; /* Réduisez cette valeur */
  41. }
  42. body,
  43. .btn,
  44. .btn-contact,
  45. .menu-link {
  46. font-family: "Barlow";
  47. font-style: normal;
  48. }
  49. .vertical-bar {
  50. width: 0px;
  51. height: 43.07px;
  52. border: 0.5px solid rgba(14, 45, 50, 0.4);
  53. margin-left: 10px;
  54. margin-right: 10px;
  55. }
  56. .buttons-col {
  57. display: flex;
  58. }
  59. .menu-bar {
  60. display: flex;
  61. align-items: center;
  62. background-color: #ffffff;
  63. height: 80px;
  64. margin-top: 10px;
  65. }
  66. .menu-link {
  67. text-decoration: none;
  68. width: 75px;
  69. height: 15px;
  70. padding: 13px;
  71. font-weight: 500;
  72. font-size: 12px;
  73. line-height: 15px;
  74. letter-spacing: 0.25em;
  75. text-transform: uppercase;
  76. color: #0e2d32;
  77. margin-right: 4px;
  78. }
  79. .btn {
  80. display: flex;
  81. flex-direction: row;
  82. align-items: center;
  83. padding: 25px;
  84. font-weight: 700;
  85. font-size: 10px;
  86. line-height: 15px;
  87. }
  88. .btn-login {
  89. background: #091d20;
  90. border-radius: 6px;
  91. color: white;
  92. }
  93. .btn-subscribe {
  94. background: #9edbdd;
  95. border-radius: 6px;
  96. }
  97. .btn-contact {
  98. width: 196px;
  99. height: 15px;
  100. font-weight: 700;
  101. font-size: 10px;
  102. line-height: 15px;
  103. letter-spacing: 0.18em;
  104. text-transform: uppercase;
  105. color: #0e2d32;
  106. margin-top: 17px;
  107. text-decoration: none;
  108. }
  109. .btn-contact:hover,
  110. .menu-link:hover {
  111. text-decoration: underline;
  112. }
  113. </style>