Navigation.vue 2.6 KB

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