Solutions.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. <template>
  2. <LayoutContainer>
  3. <v-row>
  4. <v-col cols="12">
  5. <h4 class="solution-title text-center">Ces solutions peuvent vous intéresser</h4>
  6. </v-col>
  7. </v-row>
  8. <v-row class="row-artist">
  9. <v-col cols="3">
  10. <v-img
  11. src="/images/opentalent_artist_black.png"
  12. class="logo"
  13. >
  14. </v-img>
  15. </v-col>
  16. <v-col cols="2">
  17. <h5 class="solution-name">Opentalent Artist</h5>
  18. </v-col>
  19. <v-col cols="7">
  20. <!-- list v-chip-->
  21. <v-chip-group
  22. active-class="primary--text"
  23. column
  24. >
  25. <v-chip
  26. class="ma-2 chip-custom"
  27. label
  28. >
  29. <span class="chip-detail">Agenda</span>
  30. </v-chip>
  31. <v-chip
  32. class="ma-2 chip-custom"
  33. label
  34. >
  35. <span class="chip-detail">Facturation</span>
  36. </v-chip>
  37. <v-chip
  38. class="ma-2 chip-custom"
  39. label
  40. >
  41. <span class="chip-detail">Comptabilité</span>
  42. </v-chip>
  43. <v-chip
  44. class="ma-2 chip-custom"
  45. label
  46. >
  47. <span class="chip-detail">Communication</span>
  48. </v-chip>
  49. <v-chip
  50. class="ma-2 chip-custom"
  51. label
  52. >
  53. <span class="chip-detail">Site internet</span>
  54. </v-chip>
  55. </v-chip-group>
  56. </v-col>
  57. </v-row>
  58. <v-row class="row-artist">
  59. <v-col cols="3">
  60. <v-img
  61. src="/images/opentalent_manager_black.jpg"
  62. class="logo"
  63. >
  64. </v-img>
  65. </v-col>
  66. <v-col cols="2">
  67. <h5 class="solution-name">Opentalent Manager</h5>
  68. </v-col>
  69. <v-col cols="7">
  70. <!-- list v-chip-->
  71. <v-chip-group
  72. active-class="primary--text"
  73. column
  74. >
  75. <v-chip
  76. class="ma-2 chip-custom"
  77. color="primary"
  78. label
  79. >
  80. <span class="chip-detail">Agenda</span>
  81. </v-chip>
  82. <v-chip
  83. class="ma-2 chip-custom"
  84. color="primary"
  85. label
  86. >
  87. <span class="chip-detail">Facturation</span>
  88. </v-chip>
  89. <v-chip
  90. class="ma-2 chip-custom"
  91. color="primary"
  92. label
  93. >
  94. <span class="chip-detail">Comptabilité</span>
  95. </v-chip>
  96. <v-chip
  97. class="ma-2 chip-custom"
  98. color="primary"
  99. label
  100. >
  101. <span class="chip-detail">Communication</span>
  102. </v-chip>
  103. <v-chip
  104. class="ma-2 chip-custom"
  105. color="primary"
  106. label
  107. >
  108. <span class="chip-detail">Site internet</span>
  109. </v-chip>
  110. </v-chip-group>
  111. </v-col>
  112. </v-row>
  113. </LayoutContainer>
  114. </template>
  115. <script setup>
  116. </script>
  117. <style scoped>
  118. .chip-detail{
  119. color: #000000;
  120. }
  121. .chip-custom {
  122. color:white;
  123. border: 1px solid #0E2D32;
  124. border-radius: 3rem;
  125. text-transform: uppercase;
  126. font-family: 'Barlow';
  127. font-style: normal;
  128. font-weight: 500;
  129. font-size: 14px;
  130. line-height: 16px;
  131. display: flex;
  132. align-items: center;
  133. text-align: center;
  134. letter-spacing: 0.2em;
  135. }
  136. .row-artist{
  137. border-top: 1px solid #D1CDC7;
  138. margin-left: 2rem;
  139. margin-right: 2rem;
  140. }
  141. .solution-name{
  142. font-family: 'Barlow';
  143. font-style: normal;
  144. font-weight: 300;
  145. font-size: 1.5rem;
  146. line-height: 1.5rem;
  147. color: #0E2D32;
  148. }
  149. .row-artist{
  150. display: flex;
  151. flex-direction: row;
  152. align-items: center;
  153. }
  154. .solution-title{
  155. font-family: "Barlow";
  156. font-style: normal;
  157. font-weight: 500;
  158. font-size: 1.5rem;
  159. line-height: 1.5rem;
  160. color: #000000;
  161. margin-top: 2rem;
  162. margin-bottom: 2rem;
  163. text-align: center;
  164. }
  165. .logo{
  166. width: 10rem;
  167. height: 10rem;
  168. margin-left: 2rem;
  169. margin-right: 2rem;
  170. }
  171. </style>