Solutions.vue 3.6 KB

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