Besoin.vue 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. text-align: justify;
  54. }
  55. .screen-img {
  56. background-image: url("/images/home/Repondre-aux-besoins-des-clients-Opentalent.png");
  57. background-position: center;
  58. background-size: cover;
  59. width: 700px;
  60. height: 500px;
  61. @media (max-width: 1240px) {
  62. width: 90%;
  63. height: 400px;
  64. }
  65. @media (max-width: 600px) {
  66. height: 240px;
  67. }
  68. }
  69. .detail-col {
  70. @media (max-width: 1240px) {
  71. * {
  72. width: 80%;
  73. margin: auto;
  74. text-align: justify;
  75. }
  76. h3 {
  77. margin-bottom: 16px;
  78. text-align: center;
  79. font-weight: 600;
  80. }
  81. }
  82. }
  83. </style>