FAQ.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. <template>
  2. <div class="alt-theme main my-2">
  3. <v-row>
  4. <v-col cols="12" lg="6">
  5. <LayoutUISubTitle class="mt-12 ml-3">
  6. Vous voulez tirer le meilleur de notre logiciel ?
  7. </LayoutUISubTitle>
  8. <h3 class="mt-6">
  9. Quelle que soit votre demande, notre équipe est à vos côtés pour
  10. vous guider
  11. </h3>
  12. <v-btn
  13. href="https://ressources.opentalent.fr/"
  14. target="_blank"
  15. class="btn-faq inv-theme"
  16. >
  17. Consulter notre FAQ
  18. </v-btn>
  19. </v-col>
  20. <v-col cols="12" lg="6" class="links">
  21. <v-btn
  22. href="https://ressources.opentalent.fr/pages/viewpage.action?pageId=75170564"
  23. target="_blank"
  24. >
  25. <div>
  26. <v-img
  27. src="/images/icons/tuto.svg"
  28. />
  29. <p>
  30. De nombreux articles tutoriels accessibles 24h/24
  31. </p>
  32. </div>
  33. </v-btn>
  34. <v-btn
  35. href="https://ressources.opentalent.fr/?contact"
  36. target="_blank"
  37. >
  38. <div>
  39. <v-img
  40. src="/images/icons/faq.svg"
  41. />
  42. <p class="text-btn">
  43. Support accessible du lundi au vendredi via l’outil en
  44. ligne
  45. </p>
  46. </div>
  47. </v-btn>
  48. </v-col>
  49. </v-row>
  50. </div>
  51. </template>
  52. <style scoped lang="scss">
  53. .v-row {
  54. position: relative;
  55. z-index: 2;
  56. max-width: 100%;
  57. }
  58. .main {
  59. min-height: 600px;
  60. background-image: url("/images/logiciels/school/faq.jpg");
  61. background-size: cover;
  62. background-position: center 15%;
  63. background-repeat: no-repeat;
  64. height: 100%;
  65. display: flex;
  66. flex-direction: column;
  67. justify-content: center;
  68. align-items: center;
  69. position: relative;
  70. }
  71. .main::after {
  72. content: "";
  73. position: absolute;
  74. top: 0;
  75. left: 0;
  76. width: 100%;
  77. height: 100%;
  78. background: rgba(0, 0, 0, 0.6);
  79. z-index: 1;
  80. }
  81. h3 {
  82. margin-left: 3rem;
  83. margin-right: 15rem;
  84. width: 28rem;
  85. margin-bottom: 3rem;
  86. font-size: 30px;
  87. font-weight: 400;
  88. @media (max-width: 600px) {
  89. width: 90%;
  90. margin-right: auto;
  91. margin-left: auto;
  92. }
  93. }
  94. .btn-faq {
  95. width: 14rem;
  96. height: 3.5rem;
  97. margin-left: 3rem;
  98. border-radius: 6px;
  99. font-weight: 500;
  100. font-size: 0.8rem;
  101. z-index: 2;
  102. text-transform: none !important;
  103. line-height: 1rem;
  104. @media (max-width: 600px) {
  105. width: 90%;
  106. margin-left: 5%;
  107. }
  108. }
  109. .links {
  110. justify-content: center;
  111. display: flex;
  112. flex-direction: column;
  113. align-items: center;
  114. @media (max-width: 1240px) {
  115. flex-direction: row;
  116. }
  117. @media (max-width: 1240px) {
  118. flex-direction: column;
  119. }
  120. .v-btn {
  121. z-index: 2;
  122. width: 23rem;
  123. height: 5.5rem;
  124. margin-left: 3rem;
  125. border-radius: 6px;
  126. background: transparent;
  127. font-weight: 500;
  128. font-size: 0.8rem;
  129. line-height: 1rem;
  130. border: 1px var(--on-alt-theme) solid;
  131. margin-bottom: 2rem;
  132. text-transform: none !important;
  133. .v-btn__content>div {
  134. display: flex;
  135. flex-direction: row;
  136. align-items: center;
  137. }
  138. .v-img {
  139. color: var(--on-alt-theme);
  140. margin-right: 0.7rem;
  141. margin-left: 1rem;
  142. z-index: 1;
  143. width: 30px;
  144. }
  145. p {
  146. font-weight: 500;
  147. font-size: 16px;
  148. line-height: 26px;
  149. color: var(--on-alt-theme);
  150. white-space: normal !important;
  151. text-align: left;
  152. }
  153. @media (max-width: 1240px) {
  154. max-width: 40%;
  155. margin: 12px 5%;
  156. height: 8rem;
  157. .v-btn__content>div {
  158. display: flex;
  159. flex-direction: column;
  160. align-items: center;
  161. }
  162. .v-img {
  163. margin-bottom: 6px;
  164. }
  165. p {
  166. text-align: center;
  167. }
  168. }
  169. @media (max-width: 600px) {
  170. max-width: 90%;
  171. }
  172. }
  173. }
  174. </style>
  175. <script setup lang="ts">
  176. </script>