Solutions.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  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-weight: 500;
  129. font-size: 14px;
  130. line-height: 16px;
  131. /* identical to box height, or 114% */
  132. display: flex;
  133. align-items: center;
  134. text-align: center;
  135. letter-spacing: 0.2em;
  136. }
  137. .row-artist {
  138. border-top: 1px solid #d1cdc7;
  139. margin-left: 2rem;
  140. margin-right: 2rem;
  141. }
  142. .solution-name {
  143. font-weight: 300;
  144. font-size: 1.5rem;
  145. line-height: 1.5rem;
  146. color: #0e2d32;
  147. }
  148. .row-artist {
  149. display: flex;
  150. flex-direction: row;
  151. align-items: center;
  152. }
  153. .solution-title {
  154. font-weight: 500;
  155. font-size: 1.5rem;
  156. line-height: 1.5rem;
  157. color: #000000;
  158. margin-top: 2rem;
  159. margin-bottom: 2rem;
  160. text-align: center;
  161. }
  162. .logo {
  163. width: 10rem;
  164. height: 10rem;
  165. margin-left: 2rem;
  166. margin-right: 2rem;
  167. }
  168. </style>