EventAgenda.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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. <div 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. </div>
  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. .circle {
  47. position: absolute;
  48. left: 35%;
  49. margin-top: 2rem;
  50. width: 300px;
  51. height: 300px;
  52. background: #eff9fb;
  53. border-radius: 50%;
  54. }
  55. .icon {
  56. font-size: 3rem;
  57. font-weight: bold;
  58. color: #0e2d32;
  59. margin-top: 6rem;
  60. margin-left: 8rem;
  61. }
  62. .circle-text {
  63. font-style: normal;
  64. font-weight: 300;
  65. font-size: 22px;
  66. line-height: 26px;
  67. text-align: center;
  68. color: #0e2d32;
  69. font-family: "Barlow";
  70. font-style: normal;
  71. margin-top: 2rem;
  72. }
  73. .btn-container {
  74. display: flex;
  75. justify-content: space-between;
  76. margin-left: 10rem;
  77. margin-right: 10rem;
  78. }
  79. .details {
  80. font-weight: 400;
  81. font-size: 1rem;
  82. margin-top: 3rem;
  83. margin-left: 2rem;
  84. color: #091d20;
  85. width: 16rem;
  86. margin-left: 10rem;
  87. font-family: "Barlow";
  88. font-style: normal;
  89. }
  90. .title-event {
  91. font-family: "Barlow";
  92. font-style: normal;
  93. font-weight: 400;
  94. font-size: 1.5rem;
  95. line-height: 38px;
  96. margin-top: 1rem;
  97. margin-left: 2rem;
  98. color: #091d20;
  99. width: 16rem;
  100. margin-left: 10rem;
  101. }
  102. .btn-event {
  103. font-family: "Barlow";
  104. font-style: normal;
  105. border-radius: 0.5rem;
  106. margin-left: 7vw;
  107. gap: 9px;
  108. font-weight: 700;
  109. font-size: 10px;
  110. line-height: 15px;
  111. width: 15rem;
  112. height: 3rem;
  113. margin-left: 15rem;
  114. margin-top: 2rem;
  115. }
  116. .title {
  117. font-family: "Barlow";
  118. font-style: normal;
  119. height: 114px;
  120. font-weight: 400;
  121. font-size: 2rem;
  122. line-height: 38px;
  123. text-align: center;
  124. margin-bottom: 2rem;
  125. margin-top: 4rem;
  126. color: #ffffff;
  127. width: 30rem;
  128. }
  129. .title-container {
  130. display: flex;
  131. justify-content: center;
  132. align-items: center;
  133. }
  134. .container {
  135. height: 30rem;
  136. margin-bottom: 30rem;
  137. background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
  138. linear-gradient(
  139. 180deg,
  140. rgba(14, 45, 50, 0.04) 0%,
  141. rgba(14, 45, 50, 0.2) 100%
  142. ),
  143. linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
  144. url("/images/eventAgenda/eventAgenda.jpg") no-repeat center center;
  145. background-size: cover;
  146. }
  147. .white-container {
  148. margin-top: 15rem;
  149. background-color: #ffffff;
  150. }
  151. .screen-img {
  152. margin-left: 8rem;
  153. width: 70%;
  154. height: 90%;
  155. border-radius: 20%;
  156. }
  157. </style>