Help.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <template>
  2. <v-container>
  3. <div class="container">
  4. <v-row>
  5. <v-col cols="8">
  6. <v-img class="help-img" src="/images/help/Help.png"></v-img>
  7. </v-col>
  8. <v-col cols="4">
  9. <h4 class="subtitle-team">Notre équipe est à vos côtés pour vous guider</h4>
  10. <p class="need-help">
  11. Besoin d’aide ? Vous souhaitez en savoir plus sur nos solutions ou
  12. vous avez besoin d'assistance sur l'utilisation de l'un de nos
  13. logiciels ?
  14. </p>
  15. <v-row>
  16. <ul class="details">
  17. <li class="detail-item">Ouvert du lundi au vendredi de 8h15 à 17h45</li>
  18. <li class="detail-item">Support joignable par mail</li>
  19. <li class="detail-item">De nombreux articles tutoriels accessibles 24h/24</li>
  20. </ul>
  21. </v-row>
  22. <v-row class="row-faq">
  23. <v-btn class="button-faq">
  24. consulter la FAQ
  25. </v-btn>
  26. </v-row>
  27. </v-col>
  28. </v-row>
  29. </div>
  30. </v-container>
  31. </template>
  32. <style scoped>
  33. .button-faq{
  34. width: 195px;
  35. height: 53px;
  36. /* Vert 60 */
  37. background: #64AFB7;
  38. border-radius: 6px;
  39. color: white;
  40. padding: 19px 28px;
  41. gap: 9px;
  42. font-family: 'Barlow';
  43. }
  44. .row-faq {
  45. margin-top: 170px;
  46. }
  47. .details {
  48. margin-top: 50px;
  49. width: 399px;
  50. height: 58px;
  51. left: 973px;
  52. font-family: 'Barlow';
  53. font-style: normal;
  54. font-weight: 300;
  55. font-size: 16px;
  56. line-height: 20px;
  57. color: #0E2D32;
  58. }
  59. .detail-item {
  60. margin-left: 28px;
  61. margin-bottom: 15px;
  62. width: 286px;
  63. left: 933px;
  64. font-family: 'Barlow';
  65. font-style: normal;
  66. font-weight: 300;
  67. font-size: 16px;
  68. line-height: 20px;
  69. color: #0E2D32;
  70. }
  71. .need-help {
  72. width: 399px;
  73. height: 58px;
  74. left: 933px;
  75. top: 7323px;
  76. font-family: 'Barlow';
  77. font-style: normal;
  78. font-weight: 300;
  79. font-size: 16px;
  80. line-height: 20px;
  81. color: #0E2D32;
  82. }
  83. .help-img {
  84. width: 722px;
  85. height: 506px;
  86. left: 121px;
  87. border-radius: 20px;
  88. }
  89. .subtitle-team{
  90. height: 138px;
  91. left: 933px;
  92. top: 7221px;
  93. /* H4 Headline */
  94. font-family: 'Barlow';
  95. font-style: normal;
  96. font-weight: 400;
  97. font-size: 30px;
  98. line-height: 34px;
  99. width: 300px;
  100. }
  101. .container {
  102. margin-bottom: 100px;
  103. width: 100%;
  104. }
  105. </style>