Solutions.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <template>
  2. <div id="solutions">
  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 src="/images/opentalent_artist_black.png" class="logo">
  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 active-class="primary--text" column>
  22. <v-chip class="ma-2 chip-custom" label>
  23. <span class="chip-detail">Agenda</span>
  24. </v-chip>
  25. <v-chip class="ma-2 chip-custom" label>
  26. <span class="chip-detail">Facturation</span>
  27. </v-chip>
  28. <v-chip class="ma-2 chip-custom" label>
  29. <span class="chip-detail">Comptabilité</span>
  30. </v-chip>
  31. <v-chip class="ma-2 chip-custom" label>
  32. <span class="chip-detail">Communication</span>
  33. </v-chip>
  34. <v-chip class="ma-2 chip-custom" label>
  35. <span class="chip-detail">Site internet</span>
  36. </v-chip>
  37. </v-chip-group>
  38. </v-col>
  39. </v-row>
  40. <v-row class="row-artist">
  41. <v-col cols="3">
  42. <v-img src="/images/opentalent_manager_black.jpg" class="logo">
  43. </v-img>
  44. </v-col>
  45. <v-col cols="2">
  46. <h5 class="solution-name">Opentalent Manager</h5>
  47. </v-col>
  48. <v-col cols="7">
  49. <!-- list v-chip-->
  50. <v-chip-group active-class="primary--text" column>
  51. <v-chip class="ma-2 chip-custom" color="primary" label>
  52. <span class="chip-detail">Agenda</span>
  53. </v-chip>
  54. <v-chip class="ma-2 chip-custom" color="primary" label>
  55. <span class="chip-detail">Facturation</span>
  56. </v-chip>
  57. <v-chip class="ma-2 chip-custom" color="primary" label>
  58. <span class="chip-detail">Comptabilité</span>
  59. </v-chip>
  60. <v-chip class="ma-2 chip-custom" color="primary" label>
  61. <span class="chip-detail">Communication</span>
  62. </v-chip>
  63. <v-chip class="ma-2 chip-custom" color="primary" label>
  64. <span class="chip-detail">Site internet</span>
  65. </v-chip>
  66. </v-chip-group>
  67. </v-col>
  68. </v-row>
  69. </LayoutContainer>
  70. </div>
  71. </template>
  72. <script setup></script>
  73. <style scoped>
  74. .chip-detail {
  75. color: #000000;
  76. }
  77. .chip-custom {
  78. color: white;
  79. border: 1px solid #0e2d32;
  80. border-radius: 3rem;
  81. text-transform: uppercase;
  82. font-family: "Barlow";
  83. font-style: normal;
  84. font-weight: 500;
  85. font-size: 14px;
  86. line-height: 16px;
  87. display: flex;
  88. align-items: center;
  89. text-align: center;
  90. letter-spacing: 0.2em;
  91. }
  92. .row-artist {
  93. border-top: 1px solid #d1cdc7;
  94. margin-left: 2rem;
  95. margin-right: 2rem;
  96. }
  97. .solution-name {
  98. font-family: "Barlow";
  99. font-style: normal;
  100. font-weight: 300;
  101. font-size: 1.5rem;
  102. line-height: 1.5rem;
  103. color: #0e2d32;
  104. }
  105. .row-artist {
  106. display: flex;
  107. flex-direction: row;
  108. align-items: center;
  109. }
  110. .solution-title {
  111. font-family: "Barlow";
  112. font-style: normal;
  113. font-weight: 500;
  114. font-size: 1.5rem;
  115. line-height: 1.5rem;
  116. color: #000000;
  117. margin-top: 2rem;
  118. margin-bottom: 2rem;
  119. text-align: center;
  120. }
  121. .logo {
  122. width: 10rem;
  123. height: 10rem;
  124. margin-left: 2rem;
  125. margin-right: 2rem;
  126. }
  127. </style>