Help.vue 2.2 KB

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