Solution.vue 8.1 KB

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