Besoin.vue 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <template>
  2. <LayoutContainer>
  3. <v-row class="mt-6" justify="center">
  4. <v-col cols="12" lg="6">
  5. <div class="screen-img ml-4" />
  6. </v-col>
  7. <v-col cols="12" lg="6" class="detail-col">
  8. <h3 class="mt-12">
  9. Une solution évolutive pour vous donner entière satisfaction
  10. </h3>
  11. <p class="details">
  12. La satisfaction de nos clients est notre première motivation et nous
  13. nous tenons à votre écoute pour faire évoluer notre logiciel. <br />
  14. <b>Un besoin ?</b> <br />
  15. Notifiez-le nous et après l'étude de votre demande en interne puis
  16. validation, nous intégrerons votre requête à notre processus de
  17. développement.
  18. </p>
  19. </v-col>
  20. </v-row>
  21. </LayoutContainer>
  22. </template>
  23. <script setup lang="ts"></script>
  24. <style scoped lang="scss">
  25. .v-row {
  26. margin-left: auto !important;
  27. margin-right: auto !important;
  28. max-width: 1400px !important;
  29. }
  30. h3 {
  31. font-weight: 400;
  32. font-size: 1.5rem;
  33. line-height: 38px;
  34. margin-top: 1rem;
  35. margin-left: 2rem;
  36. color: var(--primary-color);
  37. width: 16rem;
  38. }
  39. p {
  40. font-weight: 400;
  41. font-size: 1rem;
  42. margin-top: 3rem;
  43. margin-left: 2rem;
  44. color: var(--primary-color);
  45. width: 20rem;
  46. }
  47. .screen-img {
  48. background-image: url('/images/pages/home/besoin/Repondre-aux-besoins-des-clients-Opentalent.png');
  49. background-position: center;
  50. background-size: cover;
  51. width: 700px;
  52. height: 500px;
  53. @media (max-width: 1240px) {
  54. width: 90%;
  55. height: 400px;
  56. }
  57. @media (max-width: 600px) {
  58. height: 240px;
  59. }
  60. }
  61. .detail-col {
  62. @media (max-width: 1240px) {
  63. * {
  64. width: 80%;
  65. margin: auto;
  66. text-align: justify;
  67. }
  68. h3 {
  69. margin-bottom: 16px;
  70. text-align: center;
  71. font-weight: 600;
  72. }
  73. }
  74. }
  75. </style>