Navigation.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <template>
  2. <v-row class="menu-bar">
  3. <!-- Column for the logo -->
  4. <v-col cols="2">
  5. <v-img
  6. class="logo"
  7. src="/images/Opentalent.png"
  8. width="294px"
  9. height="49px"
  10. ></v-img>
  11. </v-col>
  12. <!-- Column for the categories -->
  13. <v-col cols="5">
  14. <nuxt-link class="menu-link" to="/about">A propos</nuxt-link>
  15. <nuxt-link class="menu-link" to="/software">Nos logiciels</nuxt-link>
  16. <nuxt-link class="menu-link" to="/directory">Annuaire</nuxt-link>
  17. <nuxt-link class="menu-link" to="/news">Actualités</nuxt-link>
  18. </v-col>
  19. <!-- Column for the buttons -->
  20. <v-col cols="5" class="buttons-col">
  21. <v-btn class="btn btn-login" text>
  22. <v-icon left class="fas fa-user mr-4"></v-icon> Se connecter
  23. </v-btn>
  24. <v-btn class="btn btn-subscribe ml-4" text>
  25. <v-icon left class="fas fa-bell mr-4"></v-icon>Vous abonner
  26. </v-btn>
  27. <div class="vertical-bar"></div>
  28. <nuxt-link to="/contact" class="btn-contact ml-4">
  29. <v-icon class="fas fa-comment-dots mr-4"></v-icon> Nous contacter
  30. </nuxt-link>
  31. </v-col>
  32. </v-row>
  33. <v-container class="content"></v-container>
  34. </template>
  35. <script>
  36. // script goes here
  37. </script>
  38. <style scoped>
  39. body,
  40. .btn,
  41. .btn-contact,
  42. .menu-link {
  43. font-family: "Barlow";
  44. font-style: normal;
  45. }
  46. .vertical-bar {
  47. width: 0px;
  48. height: 43.07px;
  49. border: 0.5px solid rgba(14, 45, 50, 0.4);
  50. margin-left: 10px;
  51. margin-right: 10px;
  52. }
  53. .buttons-col {
  54. display: flex;
  55. }
  56. .menu-bar {
  57. display: flex;
  58. align-items: center;
  59. background-color: #ffffff;
  60. height: 80px;
  61. margin-top: 10px;
  62. }
  63. .menu-link {
  64. text-decoration: none;
  65. width: 75px;
  66. height: 15px;
  67. padding: 17px;
  68. font-weight: 500;
  69. font-size: 12px;
  70. line-height: 15px;
  71. letter-spacing: 0.25em;
  72. text-transform: uppercase;
  73. color: #0e2d32;
  74. margin-right: 4px;
  75. }
  76. .btn {
  77. display: flex;
  78. flex-direction: row;
  79. align-items: center;
  80. padding: 25px;
  81. gap: 9px;
  82. font-weight: 700;
  83. font-size: 10px;
  84. line-height: 15px;
  85. width: 200px;
  86. height: 56px;
  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>