EventAgenda.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. <template>
  2. <LayoutContainer :overflow="false">
  3. <div class="title-container">
  4. <h2 class="title">
  5. Retrouvez tous vos évènements dans l'agenda et référencez vous dans
  6. l'annuaire
  7. </h2>
  8. </div>
  9. <v-row>
  10. <v-col cols="12" class="btn-container">
  11. <v-col col="6">
  12. <v-btn class="btn-event"
  13. >Découvrir les évènements
  14. <v-icon class="fa-solid fa-arrow-right icon-arrow"></v-icon>
  15. </v-btn>
  16. </v-col>
  17. <v-col col="6">
  18. <v-btn class="btn-event"
  19. >Découvrir l’ANNUAIRE
  20. <v-icon class="fa-solid fa-arrow-right icon-arrow"></v-icon>
  21. </v-btn>
  22. </v-col>
  23. </v-col>
  24. </v-row>
  25. <div class="white-container">
  26. <v-row>
  27. <v-col cols="6">
  28. <v-img src="/images/eventAgenda/logiciel.png" class="screen-img">
  29. </v-img>
  30. </v-col>
  31. <div class="circle">
  32. <v-icon class="fa-brands fa-react icon"></v-icon>
  33. <div class="circle-text">Réponse aux besoins</div>
  34. </div>
  35. <v-col cols="6">
  36. <h3 class="title-event">
  37. Une solution évolutive pour vous donner entière satisfaction
  38. </h3>
  39. <p class="details">
  40. La satisfaction de nos clients est notre première motivation et nous
  41. nous tenons à votre écoute pour faire évoluer notre logiciel. Un
  42. besoin ? Notifiez le nous et après l'étude de votre demande en
  43. interne puis validation, nous intégrerons votre requête à notre
  44. processus de développement.
  45. </p>
  46. </v-col>
  47. </v-row>
  48. </div>
  49. </LayoutContainer>
  50. </template>
  51. <style scoped>
  52. .icon-arrow {
  53. font-size: 1rem;
  54. margin-left: 1rem;
  55. }
  56. .btn-container {
  57. display: flex;
  58. align-items: center;
  59. justify-content: center;
  60. padding: 0 20rem;
  61. }
  62. .btn-event {
  63. font-family: "Barlow";
  64. font-style: normal;
  65. border-radius: 0.5rem;
  66. margin-left: 7vw;
  67. gap: 9px;
  68. font-weight: 700;
  69. font-size: 0.9rem;
  70. line-height: 15px;
  71. width: 18rem;
  72. height: 3rem;
  73. margin-top: 3rem;
  74. padding-top: 2rem;
  75. padding-bottom: 2rem;
  76. }
  77. .title {
  78. font-family: "Barlow";
  79. font-style: normal;
  80. height: 9rem;
  81. font-weight: 400;
  82. font-size: 3rem;
  83. line-height: 3rem;
  84. text-align: center;
  85. margin-bottom: 3rem;
  86. margin-top: 4rem;
  87. color: #ffffff;
  88. width: 45rem;
  89. }
  90. .title-container {
  91. display: flex;
  92. justify-content: center;
  93. align-items: center;
  94. }
  95. .circle {
  96. position: absolute;
  97. left: 35%;
  98. margin-top: 0.5rem;
  99. width: 300px;
  100. height: 300px;
  101. background: #eff9fb;
  102. border-radius: 50%;
  103. }
  104. .icon {
  105. font-size: 3rem;
  106. font-weight: bold;
  107. color: #0e2d32;
  108. margin-top: 6rem;
  109. margin-left: 8rem;
  110. }
  111. .circle-text {
  112. font-style: normal;
  113. font-weight: 300;
  114. font-size: 22px;
  115. line-height: 26px;
  116. text-align: center;
  117. color: #0e2d32;
  118. font-family: "Barlow";
  119. font-style: normal;
  120. margin-top: 2rem;
  121. }
  122. .details {
  123. font-weight: 400;
  124. font-size: 1rem;
  125. margin-top: 3rem;
  126. margin-left: 2rem;
  127. color: #091d20;
  128. width: 16rem;
  129. margin-left: 10rem;
  130. font-family: "Barlow";
  131. font-style: normal;
  132. }
  133. .title-event {
  134. font-family: "Barlow";
  135. font-style: normal;
  136. font-weight: 400;
  137. font-size: 1.5rem;
  138. line-height: 38px;
  139. margin-top: 1rem;
  140. margin-left: 2rem;
  141. color: #091d20;
  142. width: 16rem;
  143. margin-left: 10rem;
  144. }
  145. .container {
  146. height: 30rem;
  147. margin-bottom: 30rem;
  148. background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
  149. linear-gradient(
  150. 180deg,
  151. rgba(14, 45, 50, 0.04) 0%,
  152. rgba(14, 45, 50, 0.2) 100%
  153. ),
  154. linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
  155. url("/images/eventAgenda/eventAgenda.jpg") no-repeat center 60%;
  156. background-size: cover;
  157. }
  158. .white-container {
  159. margin-top: 9rem;
  160. background-color: #ffffff;
  161. }
  162. .screen-img {
  163. margin-left: 8rem;
  164. width: 60%;
  165. border-radius: 20%;
  166. }
  167. </style>