Banner.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <template>
  2. <LayoutContainer>
  3. <div class="container-title">
  4. <v-col cols="12">
  5. <h1 class="formation">Formation</h1>
  6. <h4 class="subtitle-formation">
  7. Prise en main ou piqûre de rappel,
  8. <br />
  9. on est toujours à vos côtés.
  10. </h4>
  11. </v-col>
  12. </div>
  13. <v-row>
  14. <v-col cols="12" style="position: relative">
  15. <img
  16. src="/images/formation/banner.jpg"
  17. alt="line"
  18. class="cover-image"
  19. />
  20. <div class="image-text mt-12">
  21. Et si vous passiez rapidement à la vitesse supérieure...
  22. </div>
  23. </v-col>
  24. </v-row>
  25. <v-row>
  26. <v-col cols="12" class="menu-container">
  27. <div v-for="menu in menus" :key="menu.label">
  28. <v-chip v-if="state.activeMenu === menu.label" class="active-menu">
  29. {{ menu.label }}
  30. </v-chip>
  31. <span v-else>{{ menu.label }}</span>
  32. </div>
  33. </v-col>
  34. </v-row>
  35. </LayoutContainer>
  36. </template>
  37. <script setup>
  38. </script>
  39. <style scoped>
  40. .image-text {
  41. position: absolute;
  42. top: 40px;
  43. left: 20px;
  44. font-family: "Barlow";
  45. color: white;
  46. font-size: 3rem;
  47. width: 30rem;
  48. font-style: italic;
  49. font-weight: 300;
  50. line-height: 40px;
  51. }
  52. .subtitle-formation {
  53. font-family: "Barlow";
  54. font-style: normal;
  55. font-weight: 600;
  56. font-size: 30px;
  57. line-height: 35px;
  58. text-align: center;
  59. color: #000000;
  60. margin-left: 34rem;
  61. margin-right: 34rem;
  62. }
  63. .formation {
  64. font-family: "Barlow";
  65. font-style: normal;
  66. font-weight: 600;
  67. font-size: 90px;
  68. line-height: 85px;
  69. text-align: center;
  70. color: #000000;
  71. margin-bottom: 1rem;
  72. }
  73. .container-title {
  74. display: flex;
  75. flex-direction: row;
  76. justify-content: space-around;
  77. }
  78. .menu-container {
  79. display: flex;
  80. justify-content: space-around;
  81. padding: 1rem 10rem;
  82. background: white;
  83. color: #bbb8b8;
  84. font-family: "Barlow";
  85. font-size: 12px;
  86. line-height: 16px;
  87. display: flex;
  88. align-items: center;
  89. text-align: center;
  90. letter-spacing: 0.18em;
  91. text-transform: uppercase;
  92. }
  93. .v-chip.active-menu {
  94. background: black;
  95. color: white;
  96. }
  97. .cover-image {
  98. width: 100%;
  99. height: 35rem;
  100. object-fit: cover;
  101. object-position: center 30%;
  102. margin: 0 auto;
  103. transform: scaleX(-1);
  104. }
  105. </style>