Solution.vue 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  1. <template>
  2. <LayoutContainer :overflow="false">
  3. <p class="text-center solution-subtitle">3 solutions</p>
  4. <h3 class="text-center title">
  5. Trouvez la solution <br />
  6. faite pour vous
  7. </h3>
  8. <v-row>
  9. <v-col cols="3" class="col-info">
  10. <small class="opentalent-small">Opentalent</small>
  11. <h2 class="logiciel-name">Artist</h2>
  12. <hr class="bar" />
  13. <p class="description-logiciel">
  14. Orchestre, chorales, compagnies de danse, théâtre et cirque
  15. </p>
  16. <v-row>
  17. <div class="artist-image">
  18. <v-img
  19. src="/images/OpenTalent_LogoNoir_Jaune_white.png"
  20. class="logo"
  21. >
  22. </v-img>
  23. </div>
  24. </v-row>
  25. <v-row>
  26. <v-col cols="6">
  27. <ul class="list-solutions">
  28. <li class="details-solution">Gestion des membres</li>
  29. <li class="details-solution">Gestion des membres</li>
  30. <li class="details-solution">Gestion des membres</li>
  31. <li class="details-solution">Gestion des membres</li>
  32. </ul>
  33. </v-col>
  34. <v-col cols="6">
  35. <ul>
  36. <li class="details-solution">Gestion des membres</li>
  37. <li class="details-solution">Gestion des membres</li>
  38. <li class="details-solution">Gestion des membres</li>
  39. <li class="details-solution">Gestion des membres</li>
  40. </ul>
  41. </v-col>
  42. </v-row>
  43. </v-col>
  44. <v-col cols="3" class="col-info">
  45. <small class="opentalent-small">Opentalent</small>
  46. <h2 class="logiciel-name">Manager</h2>
  47. <hr class="bar" />
  48. <p class="description-logiciel">
  49. Fédérations, confédérations et collectivités
  50. </p>
  51. <v-row>
  52. <v-row>
  53. <div class="manager-image">
  54. <v-img
  55. src="/images/OpenTalent_LogoNoir_rouge_manager_white.png"
  56. class="logo"
  57. >
  58. </v-img>
  59. <div class="overlay">
  60. <button class="discover-button">Découvrir</button>
  61. </div>
  62. </div>
  63. </v-row>
  64. </v-row>
  65. <v-row>
  66. <v-col cols="6">
  67. <ul class="list-solutions">
  68. <li class="details-solution">Gestion des membres</li>
  69. <li class="details-solution">Gestion des membres</li>
  70. <li class="details-solution">Gestion des membres</li>
  71. <li class="details-solution">Gestion des membres</li>
  72. </ul>
  73. </v-col>
  74. <v-col cols="6">
  75. <ul>
  76. <li class="details-solution">Gestion des membres</li>
  77. <li class="details-solution">Gestion des membres</li>
  78. <li class="details-solution">Gestion des membres</li>
  79. <li class="details-solution">Gestion des membres</li>
  80. </ul>
  81. </v-col>
  82. </v-row>
  83. </v-col>
  84. <v-col cols="3" class="col-info">
  85. <small class="opentalent-small">Opentalent</small>
  86. <h2 class="logiciel-name">School</h2>
  87. <hr class="bar" />
  88. <p class="description-logiciel">
  89. Petits et grands établissements d'enseignement artistique
  90. </p>
  91. <v-row>
  92. <v-row>
  93. <div class="school-image">
  94. <v-img src="/images/logo_school_white.png" class="logo"> </v-img>
  95. </div>
  96. </v-row>
  97. </v-row>
  98. <v-row>
  99. <v-col cols="6">
  100. <ul class="list-solutions">
  101. <li class="details-solution">Gestion des membres</li>
  102. <li class="details-solution">Gestion des membres</li>
  103. <li class="details-solution">Gestion des membres</li>
  104. <li class="details-solution">Gestion des membres</li>
  105. </ul>
  106. </v-col>
  107. <v-col cols="6">
  108. <ul>
  109. <li class="details-solution">Gestion des membres</li>
  110. <li class="details-solution">Gestion des membres</li>
  111. <li class="details-solution">Gestion des membres</li>
  112. <li class="details-solution">Gestion des membres</li>
  113. </ul>
  114. </v-col>
  115. </v-row>
  116. </v-col>
  117. </v-row>
  118. </LayoutContainer>
  119. </template>
  120. <style scoped>
  121. .discover-button {
  122. background-color: transparent;
  123. border: none;
  124. color: white;
  125. font-family: "Barlow";
  126. font-size: 1.2rem;
  127. font-weight: 600;
  128. padding: 1rem 2rem;
  129. border-radius: 2rem;
  130. cursor: pointer;
  131. }
  132. .logo {
  133. width: 5rem;
  134. height: 4rem;
  135. margin-top: 13rem;
  136. margin-left: 13rem;
  137. }
  138. .list-solutions {
  139. margin-left: 0.5rem;
  140. margin-top: 0.5rem;
  141. font-size: 0.5rem;
  142. }
  143. .details-solution {
  144. font-size: 0.5rem;
  145. margin-top: 0.5rem;
  146. width: 10rem;
  147. margin-left: 1rem;
  148. font-family: "Barlow";
  149. font-style: normal;
  150. font-size: 0.7rem;
  151. line-height: 18px;
  152. color: #091d20;
  153. }
  154. .bar {
  155. color: #c3e5e7;
  156. }
  157. .artist-image {
  158. position: relative;
  159. background: url(/images/solutions/artist.jpg);
  160. background-size: cover;
  161. background-position: center;
  162. border-radius: 0px 0px 10px 10px;
  163. width: 19rem;
  164. height: 17rem;
  165. margin-top: 2rem;
  166. margin-left: 0.9rem;
  167. }
  168. .artist-image::before {
  169. content: "";
  170. position: absolute;
  171. top: 0;
  172. left: 0;
  173. right: 0;
  174. bottom: 0;
  175. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  176. border-radius: 0px 0px 10px 10px;
  177. opacity: 0;
  178. transition: opacity 0.3s;
  179. }
  180. .artist-image:hover::before {
  181. opacity: 1;
  182. }
  183. .manager-image {
  184. position: relative;
  185. background: url(/images/solutions/manager.png);
  186. background-size: cover;
  187. background-position: center;
  188. border-radius: 0px 0px 10px 10px;
  189. width: 19rem;
  190. height: 17rem;
  191. margin-top: 4rem;
  192. margin-left: 2rem;
  193. }
  194. .manager-image::before {
  195. content: "";
  196. position: absolute;
  197. top: 0;
  198. left: 0;
  199. right: 0;
  200. bottom: 0;
  201. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  202. border-radius: 0px 0px 10px 10px;
  203. opacity: 0;
  204. transition: opacity 0.3s;
  205. }
  206. .manager-image:hover::before {
  207. opacity: 1;
  208. }
  209. .school-image {
  210. position: relative;
  211. background: url(/images/solutions/school.jpg);
  212. background-size: cover;
  213. background-position: center;
  214. border-radius: 0px 0px 10px 10px;
  215. width: 19rem;
  216. height: 17rem;
  217. margin-top: 4rem;
  218. margin-left: 1.5rem;
  219. }
  220. .school-image::before {
  221. content: "";
  222. position: absolute;
  223. top: 0;
  224. left: 0;
  225. right: 0;
  226. bottom: 0;
  227. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  228. border-radius: 0px 0px 10px 10px;
  229. opacity: 0;
  230. transition: opacity 0.3s;
  231. }
  232. .school-image:hover::before {
  233. opacity: 1;
  234. }
  235. .col-info:first-child {
  236. margin-left: 9rem;
  237. }
  238. .col-info {
  239. width: 4rem;
  240. margin-left: 2rem;
  241. }
  242. .solution-img {
  243. width: 15rem;
  244. height: 15rem;
  245. object-fit: cover;
  246. margin-top: 2rem;
  247. }
  248. .description-logiciel {
  249. font-family: "Barlow";
  250. font-style: normal;
  251. font-size: 0.9rem;
  252. line-height: 0.9rem;
  253. margin-top: 1rem;
  254. color: #eff9fb;
  255. }
  256. .logiciel-name {
  257. font-family: "Barlow";
  258. font-style: normal;
  259. font-weight: 400;
  260. font-size: 30px;
  261. line-height: 2rem;
  262. color: #c3e5e7;
  263. margin-bottom: 1rem;
  264. }
  265. .opentalent-small {
  266. font-family: "Barlow";
  267. font-style: normal;
  268. font-weight: 600;
  269. font-size: 10px;
  270. line-height: 15px;
  271. letter-spacing: 0.18em;
  272. text-transform: uppercase;
  273. color: #ffffff;
  274. }
  275. .title {
  276. font-family: "Barlow";
  277. font-style: normal;
  278. font-weight: 00;
  279. font-size: 2rem;
  280. line-height: 42px;
  281. text-align: center;
  282. color: #ffffff;
  283. margin-bottom: 3rem;
  284. }
  285. .solution-subtitle {
  286. font-family: "Barlow";
  287. font-style: normal;
  288. font-size: 15px;
  289. line-height: 1rem;
  290. margin-top: 2rem;
  291. margin-bottom: 1rem;
  292. color: #c1eff0;
  293. }
  294. .container {
  295. background: #0e2d32;
  296. margin-bottom: 20rem;;
  297. height: 30rem;
  298. position: relative;
  299. }
  300. </style>