Besoin.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <template>
  2. <LayoutContainer :overflow="false">
  3. <v-row class="mt-6" justify="center">
  4. <v-col cols="6" class="relative-container" >
  5. <div class="screen-img"></div>
  6. <div class="circle">
  7. <v-icon class="fa-brands fa-react icon" />
  8. <div class="circle-text">Réponse aux besoins</div>
  9. </div>
  10. </v-col>
  11. <v-col cols="6">
  12. <h3 class="title-event">
  13. Une solution évolutive pour vous donner entière satisfaction
  14. </h3>
  15. <p class="details">
  16. La satisfaction de nos clients est notre première motivation et nous
  17. nous tenons à votre écoute pour faire évoluer notre logiciel. <br />
  18. <span class="bold">Un besoin ?</span> <br />
  19. Notifiez le nous et après l'étude de votre demande en interne puis
  20. validation, nous intégrerons votre requête à notre processus de
  21. développement.
  22. </p>
  23. </v-col>
  24. </v-row>
  25. </LayoutContainer>
  26. </template>
  27. <script setup>
  28. import { useDisplay } from "vuetify";
  29. const { smAndDown, mdAndDown } = useDisplay();
  30. </script>
  31. <style scoped>
  32. .container {
  33. display: flex;
  34. flex-direction: row;
  35. justify-content: center;
  36. margin-bottom: 10rem;
  37. }
  38. .relative-container {
  39. position: relative;
  40. }
  41. .bold {
  42. font-weight: bold;
  43. }
  44. .circle {
  45. position: absolute;
  46. top: 20%;
  47. right: 0;
  48. margin-top: 0.5rem;
  49. width: 300px;
  50. height: 300px;
  51. background: #eff9fb;
  52. border-radius: 50%;
  53. display: flex;
  54. align-items: center;
  55. flex-direction: column;
  56. justify-content: center;
  57. }
  58. .icon {
  59. font-size: 3rem;
  60. }
  61. .circle-text {
  62. font-size: 22px;
  63. line-height: 26px;
  64. text-align: center;
  65. color: #0e2d32;
  66. font-family: "Barlow";
  67. font-style: normal;
  68. margin-top: 2rem;
  69. }
  70. .title-event {
  71. font-weight: 400;
  72. font-size: 1.5rem;
  73. line-height: 38px;
  74. margin-top: 1rem;
  75. margin-left: 2rem;
  76. color: #091d20;
  77. width: 16rem;
  78. }
  79. .details {
  80. font-weight: 400;
  81. font-size: 1rem;
  82. margin-top: 3rem;
  83. margin-left: 2rem;
  84. color: #091d20;
  85. width: 20rem;
  86. }
  87. .screen-img {
  88. position: absolute;
  89. right: 0;
  90. margin-left: 3rem;
  91. width: 600px;
  92. height: 500px;
  93. background-image: url("/images/eventAgenda/logiciel.png");
  94. background-position: center;
  95. background-size: cover;
  96. border-radius: 10%;
  97. margin-right: 10rem;
  98. }
  99. </style>