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