Solutions.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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"
  27. label
  28. >
  29. <span>Agenda</span>
  30. </v-chip>
  31. <v-chip
  32. class="ma-2"
  33. label
  34. >
  35. <span>Facturation</span>
  36. </v-chip>
  37. <v-chip
  38. class="ma-2 chip"
  39. label
  40. >
  41. <span>Comptabilité</span>
  42. </v-chip>
  43. <v-chip
  44. class="ma-2 chip"
  45. label
  46. >
  47. <span>Communication</span>
  48. </v-chip>
  49. <v-chip
  50. class="ma-2 chip"
  51. label
  52. >
  53. <span>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"
  77. color="primary"
  78. label
  79. >
  80. <span>Agenda</span>
  81. </v-chip>
  82. <v-chip
  83. class="ma-2 chip"
  84. color="primary"
  85. label
  86. >
  87. <span>Facturation</span>
  88. </v-chip>
  89. <v-chip
  90. class="ma-2 chip"
  91. color="primary"
  92. label
  93. >
  94. <span>Comptabilité</span>
  95. </v-chip>
  96. <v-chip
  97. class="ma-2 chip"
  98. color="primary"
  99. label
  100. >
  101. <span>Communication</span>
  102. </v-chip>
  103. <v-chip
  104. class="ma-2 chip"
  105. color="primary"
  106. label
  107. >
  108. <span>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 {
  119. /* position: inherit; */
  120. color: black;
  121. border: 1px solid #0E2D32;
  122. border-radius: 3rem;
  123. text-transform: uppercase;
  124. font-family: 'Barlow';
  125. font-style: normal;
  126. font-weight: 500;
  127. font-size: 14px;
  128. line-height: 16px;
  129. /* identical to box height, or 114% */
  130. display: flex;
  131. align-items: center;
  132. text-align: center;
  133. letter-spacing: 0.2em;
  134. }
  135. .row-artist{
  136. border-top: 1px solid #D1CDC7;
  137. margin-left: 2rem;
  138. margin-right: 2rem;
  139. }
  140. .solution-name{
  141. font-family: 'Barlow';
  142. font-style: normal;
  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-family: "Barlow";
  155. font-style: normal;
  156. font-weight: 500;
  157. font-size: 1.5rem;
  158. line-height: 1.5rem;
  159. color: #000000;
  160. margin-top: 2rem;
  161. margin-bottom: 2rem;
  162. text-align: center;
  163. }
  164. .logo{
  165. width: 10rem;
  166. height: 10rem;
  167. margin-left: 2rem;
  168. margin-right: 2rem;
  169. }
  170. </style>