EventAgenda.vue 3.6 KB

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