Banner.vue 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <template>
  2. <LayoutContainer>
  3. <LayoutUITitlePage title="Nous rejoindre ?" />
  4. <v-row>
  5. <v-col cols="12">
  6. <CommonBanner
  7. :imageSrc="'/images/join/join.jpg'"
  8. imageAlt="'line'"
  9. />
  10. </v-col>
  11. </v-row>
  12. <h3 class="text-center join-title bold mt-6">
  13. Opentalent, où l'innovation & la passion se rencontre !
  14. </h3>
  15. <h4 class="text-center join-title">
  16. Découvrez nos opportunités et rejoignez-nous dans cette aventure
  17. passionnante.
  18. </h4>
  19. </LayoutContainer>
  20. </template>
  21. <script setup></script>
  22. <style scoped>
  23. :deep().cover-image {
  24. object-position: center 50% !important;
  25. }
  26. :deep().text-left,
  27. :deep().text-right,
  28. :deep().description-square,
  29. :deep().black-square,
  30. :deep().blue-square {
  31. display: none;
  32. }
  33. :deep().text-right {
  34. display: none;
  35. }
  36. .bold {
  37. font-weight: 600 !important;
  38. }
  39. .join-title {
  40. font-family: "Barlow";
  41. font-style: normal;
  42. font-weight: 300;
  43. font-size: 1.5rem;
  44. line-height: 2.5rem;
  45. text-align: center;
  46. }
  47. </style>