Solutions.vue 3.7 KB

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