Banner.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <template>
  2. <LayoutContainer>
  3. <v-row>
  4. <v-col cols="12" class="title">
  5. <h1 class="text-center">Nous rejoindre</h1>
  6. </v-col>
  7. </v-row>
  8. <v-row>
  9. <v-col cols="12">
  10. <div class="banner-container">
  11. <img src="/images/join/join.jpg" alt="line" class="cover-image" />
  12. </div>
  13. </v-col>
  14. </v-row>
  15. <h3 class="text-center join-title bold mt-6">
  16. Opentalent, où l'innovation & la passion se rencontre !
  17. </h3>
  18. <h4 class="text-center join-title">
  19. Découvrez nos opportunités et rejoignez-nous dans cette aventure
  20. passionnante.
  21. </h4>
  22. </LayoutContainer>
  23. </template>
  24. <script setup></script>
  25. <style scoped>
  26. .bold {
  27. font-weight: 600 !important;
  28. }
  29. .join-title {
  30. font-family: "Barlow";
  31. font-style: normal;
  32. font-weight: 300;
  33. font-size: 1.5rem;
  34. line-height: 2.5rem;
  35. text-align: center;
  36. margin-left: 30rem;
  37. margin-right: 30rem;
  38. }
  39. .title {
  40. margin-top: 2rem;
  41. margin-bottom: 2rem;
  42. text-align: center;
  43. font-family: "Barlow";
  44. font-style: normal;
  45. font-weight: 600;
  46. font-size: 3rem;
  47. line-height: 85px;
  48. }
  49. .banner-container {
  50. position: relative;
  51. overflow: hidden;
  52. }
  53. .cover-image {
  54. width: 100%;
  55. height: 25rem;
  56. object-fit: cover;
  57. transition: transform 0.2s;
  58. margin: 0 auto;
  59. transform: scaleX(-1);
  60. }
  61. </style>