Solution.vue 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  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">Agenda</li>
  35. <li class="details-solution">Matériel & médiathèque</li>
  36. <li class="details-solution">Export de données</li>
  37. </ul>
  38. </v-col>
  39. <v-col cols="6">
  40. <ul class="list-solutions">
  41. <li class="details-solution">Communication</li>
  42. <li class="details-solution">Statistiques</li>
  43. <li class="details-solution">Site internet</li>
  44. <li class="details-solution">Partage de données en réseau</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">Agenda du réseau</li>
  77. <li class="details-solution">Matériel & médiathèque</li>
  78. <li class="details-solution">Gestion administrative</li>
  79. </ul>
  80. </v-col>
  81. <v-col cols="6">
  82. <ul class="list-solutions">
  83. <li class="details-solution">Statistiques réseau</li>
  84. <li class="details-solution">Cotisations</li>
  85. <li class="details-solution">Site internet</li>
  86. <li class="details-solution">Communication</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">
  103. </v-img>
  104. </div>
  105. </v-row>
  106. </nuxt-link>
  107. </v-row>
  108. <v-row>
  109. <v-col cols="6">
  110. <ul class="list-solutions">
  111. <li class="details-solution">Gestion des personnes</li>
  112. <li class="details-solution">Préinscription en ligne*</li>
  113. <li class="details-solution">Agenda</li>
  114. <li class="details-solution">Suivi pédagogique</li>
  115. </ul>
  116. </v-col>
  117. <v-col cols="6">
  118. <ul class="list-solutions">
  119. <li class="details-solution">Règlements</li>
  120. <li class="details-solution">Communication</li>
  121. <li class="details-solution">Site internet</li>
  122. <li class="details-solution">Statistiques</li>
  123. </ul>
  124. </v-col>
  125. </v-row>
  126. </v-col>
  127. </v-row>
  128. </LayoutContainer>
  129. </template>
  130. <style scoped>
  131. .icon-title {
  132. margin-top: 1rem;
  133. color: #ffffff;
  134. }
  135. .discover-button {
  136. background-color: transparent;
  137. border: none;
  138. color: white;
  139. font-family: "Barlow";
  140. font-size: 1.2rem;
  141. font-weight: 600;
  142. padding: 1rem 2rem;
  143. border-radius: 2rem;
  144. cursor: pointer;
  145. }
  146. .logo {
  147. width: 5rem;
  148. height: 4rem;
  149. margin-top: 13rem;
  150. margin-left: 13rem;
  151. }
  152. .list-solutions {
  153. margin-top: 0.9rem;
  154. font-size: 0.5rem;
  155. }
  156. .details-solution {
  157. font-size: 0.5rem;
  158. width: 10rem;
  159. margin-left: 1rem;
  160. font-family: "Barlow";
  161. font-style: normal;
  162. font-size: 0.7rem;
  163. line-height: 18px;
  164. color: #091d20;
  165. }
  166. .bar {
  167. color: #c3e5e7;
  168. }
  169. .artist-image {
  170. position: relative;
  171. background: url(/images/solutions/artist.jpg);
  172. background-size: cover;
  173. background-position: center;
  174. border-radius: 0px 0px 10px 10px;
  175. width: 19rem;
  176. height: 17rem;
  177. margin-top: 2rem;
  178. margin-left: 0.9rem;
  179. }
  180. .artist-image::before {
  181. content: "";
  182. position: absolute;
  183. top: 0;
  184. left: 0;
  185. right: 0;
  186. bottom: 0;
  187. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  188. border-radius: 0px 0px 10px 10px;
  189. opacity: 0;
  190. transition: opacity 0.3s;
  191. }
  192. .artist-image:hover::before {
  193. opacity: 1;
  194. cursor: pointer;
  195. }
  196. .manager-image {
  197. position: relative;
  198. background: url(/images/solutions/manager.png);
  199. background-size: cover;
  200. background-position: center;
  201. border-radius: 0px 0px 10px 10px;
  202. width: 19rem;
  203. height: 17rem;
  204. margin-top: 4rem;
  205. margin-left: 2rem;
  206. }
  207. .manager-image::before {
  208. content: "";
  209. position: absolute;
  210. top: 0;
  211. left: 0;
  212. right: 0;
  213. bottom: 0;
  214. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  215. border-radius: 0px 0px 10px 10px;
  216. opacity: 0;
  217. transition: opacity 0.3s;
  218. }
  219. .manager-image:hover::before {
  220. opacity: 1;
  221. cursor: pointer;
  222. }
  223. .school-image {
  224. position: relative;
  225. background: url(/images/solutions/school.jpg);
  226. background-size: cover;
  227. background-position: center;
  228. border-radius: 0px 0px 10px 10px;
  229. width: 19rem;
  230. height: 17rem;
  231. margin-top: 4rem;
  232. margin-left: 1.5rem;
  233. }
  234. .school-image::before {
  235. content: "";
  236. position: absolute;
  237. top: 0;
  238. left: 0;
  239. right: 0;
  240. bottom: 0;
  241. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  242. border-radius: 0px 0px 10px 10px;
  243. opacity: 0;
  244. transition: opacity 0.3s;
  245. }
  246. .school-image:hover::before {
  247. opacity: 1;
  248. cursor: pointer;
  249. }
  250. .col-info:first-child {
  251. margin-left: 9rem;
  252. }
  253. .col-info {
  254. width: 4rem;
  255. margin-left: 2rem;
  256. }
  257. .solution-img {
  258. width: 15rem;
  259. height: 15rem;
  260. object-fit: cover;
  261. margin-top: 2rem;
  262. }
  263. .description-logiciel {
  264. font-family: "Barlow";
  265. font-style: normal;
  266. font-size: 0.9rem;
  267. line-height: 0.9rem;
  268. margin-top: 1rem;
  269. color: #eff9fb;
  270. }
  271. .logiciel-name {
  272. font-family: "Barlow";
  273. font-style: normal;
  274. font-weight: 400;
  275. font-size: 30px;
  276. line-height: 2rem;
  277. color: #c3e5e7;
  278. margin-bottom: 1rem;
  279. }
  280. .opentalent-small {
  281. font-family: "Barlow";
  282. font-style: normal;
  283. font-weight: 600;
  284. font-size: 10px;
  285. line-height: 15px;
  286. letter-spacing: 0.18em;
  287. text-transform: uppercase;
  288. color: #ffffff;
  289. }
  290. .title {
  291. font-family: "Barlow";
  292. font-style: normal;
  293. font-weight: 00;
  294. font-size: 2rem;
  295. line-height: 42px;
  296. text-align: center;
  297. color: #ffffff;
  298. margin-bottom: 3rem;
  299. }
  300. .solution-subtitle {
  301. font-family: "Barlow";
  302. font-style: normal;
  303. font-size: 15px;
  304. line-height: 1rem;
  305. margin-top: 0.5rem;
  306. margin-bottom: 1rem;
  307. color: #c1eff0;
  308. }
  309. .container {
  310. background: #0e2d32;
  311. margin-bottom: 20rem;
  312. height: 30rem;
  313. position: relative;
  314. }
  315. </style>