Banner.vue 1.2 KB

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