Besoin.vue 1.9 KB

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