FAQ.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. <template>
  2. <div id="Aide">
  3. <LayoutContainer>
  4. <div class="container-img">
  5. <div class="overlay"></div>
  6. <v-row>
  7. <v-col cols="6">
  8. <div class="container-left">
  9. <div class="container-title">
  10. <v-icon class="fa-brands fa-react icon-title"></v-icon>
  11. <h5 class="subtitle-faq">
  12. Vous voulez tirer le meilleur de notre logiciel ?
  13. </h5>
  14. </div>
  15. <h3 class="title-faq">
  16. Quelle que soit votre demande, notre équipe est à vos côtés pour
  17. vous guider
  18. </h3>
  19. <v-btn class="btn-faq"> Consulter notre FAQ </v-btn>
  20. </div>
  21. </v-col>
  22. <v-col cols="6">
  23. <div class="btn-container">
  24. <v-btn class="btn-faq-tuto">
  25. <div class="container-button">
  26. <v-icon class="fa-brands fa-react icon-button"></v-icon>
  27. <p class="text-btn">
  28. De nombreux articles tutoriels accessibles 24h/24
  29. </p>
  30. </div>
  31. </v-btn>
  32. <v-btn class="btn-faq-tuto">
  33. <div class="container-button">
  34. <v-icon class="fa-brands fa-react icon-button"></v-icon>
  35. <p class="text-btn">
  36. De nombreux articles tutoriels accessibles 24h/24
  37. </p>
  38. </div>
  39. </v-btn>
  40. </div>
  41. </v-col>
  42. </v-row>
  43. </div>
  44. </LayoutContainer>
  45. </div>
  46. </template>
  47. <script setup></script>
  48. <style scoped>
  49. .container-left {
  50. margin-left: 6rem;
  51. }
  52. .text-btn {
  53. font-family: "Barlow";
  54. font-style: normal;
  55. font-weight: 500;
  56. font-size: 16px;
  57. line-height: 26px;
  58. color: #f0e8e4;
  59. white-space: normal !important;
  60. text-align: left;
  61. }
  62. .btn-container {
  63. display: flex;
  64. flex-direction: column;
  65. align-items: center;
  66. justify-content: space-between;
  67. margin-top: 10rem;
  68. margin-right: 15rem;
  69. }
  70. .container-button {
  71. display: flex;
  72. flex-direction: row;
  73. align-items: center;
  74. width: 20rem;
  75. height: 3.5rem;
  76. }
  77. .icon-button {
  78. color: #fff;
  79. font-size: 2rem;
  80. margin-right: 0.7rem;
  81. margin-left: 2rem;
  82. z-index: 2;
  83. }
  84. .btn-faq-tuto {
  85. z-index: 2;
  86. width: 20rem;
  87. height: 5.5rem;
  88. margin-left: 3rem;
  89. border-radius: 6px;
  90. font-family: "Barlow";
  91. background: transparent;
  92. color: #fff;
  93. font-style: normal;
  94. font-weight: 500;
  95. font-size: 0.8rem;
  96. line-height: 1rem;
  97. border: 1px white solid;
  98. margin-bottom: 2rem;
  99. text-transform: none !important;
  100. }
  101. .subtitle-faq {
  102. font-size: 1.5rem;
  103. font-weight: 500;
  104. color: #fff;
  105. margin-top: 5rem;
  106. font-family: "Barlow";
  107. font-style: normal;
  108. font-weight: 600;
  109. font-size: 10px;
  110. line-height: 15px;
  111. margin-right: 25rem;
  112. letter-spacing: 0.18em;
  113. text-transform: uppercase;
  114. z-index: 2;
  115. }
  116. .btn-faq {
  117. width: 14rem;
  118. height: 3.5rem;
  119. margin-left: 3rem;
  120. background: #ffffff;
  121. border-radius: 6px;
  122. font-family: "Barlow";
  123. font-style: normal;
  124. font-weight: 500;
  125. font-size: 0.8rem;
  126. z-index: 2;
  127. text-transform: none !important;
  128. line-height: 1rem;
  129. }
  130. .title-faq {
  131. font-size: 2rem;
  132. font-weight: 500;
  133. color: #fff;
  134. font-family: "Barlow";
  135. margin-left: 3rem;
  136. margin-right: 15rem;
  137. width: 28rem;
  138. margin-bottom: 3rem;
  139. }
  140. .container-title {
  141. display: flex;
  142. align-items: center;
  143. margin-bottom: 1rem;
  144. margin-left: 3rem;
  145. }
  146. .icon-title {
  147. font-size: 1rem;
  148. color: #64afb7;
  149. margin-right: 0.5rem;
  150. margin-top: 3rem;
  151. }
  152. .subtitle-faq {
  153. color: #fff;
  154. margin-bottom: 2rem;
  155. font-family: "Barlow";
  156. width: 15rem;
  157. margin-right: 15rem;
  158. }
  159. .container-img {
  160. background-image: url("/images/logiciels/school/faq.jpg");
  161. background-size: cover;
  162. background-position: center;
  163. background-repeat: no-repeat;
  164. height: 35rem;
  165. display: flex;
  166. flex-direction: column;
  167. justify-content: center;
  168. align-items: center;
  169. position: relative;
  170. }
  171. .container-img::after {
  172. content: "";
  173. position: absolute;
  174. top: 0;
  175. left: 0;
  176. width: 100%;
  177. height: 100%;
  178. background: rgba(0, 0, 0, 0.6);
  179. z-index: 1;
  180. }
  181. .v-row {
  182. position: relative;
  183. z-index: 2;
  184. }
  185. </style>