Solution.vue 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  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"> </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 personnes</li>
  111. <li class="details-solution">Préinscription en ligne*</li>
  112. <li class="details-solution">Agenda</li>
  113. <li class="details-solution">Suivi pédagogique</li>
  114. </ul>
  115. </v-col>
  116. <v-col cols="6">
  117. <ul class="list-solutions">
  118. <li class="details-solution">Règlements</li>
  119. <li class="details-solution">Communication</li>
  120. <li class="details-solution">Site internet</li>
  121. <li class="details-solution">Statistiques</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-top: 0.9rem;
  153. font-size: 0.5rem;
  154. }
  155. .details-solution {
  156. font-size: 0.5rem;
  157. width: 10rem;
  158. margin-left: 1rem;
  159. font-family: "Barlow";
  160. font-style: normal;
  161. font-size: 0.7rem;
  162. line-height: 18px;
  163. color: #091d20;
  164. }
  165. .bar {
  166. color: #c3e5e7;
  167. }
  168. .artist-image {
  169. position: relative;
  170. background: url(/images/solutions/artist.jpg);
  171. background-size: cover;
  172. background-position: center;
  173. border-radius: 0px 0px 10px 10px;
  174. width: 19rem;
  175. height: 17rem;
  176. margin-top: 2rem;
  177. margin-left: 0.9rem;
  178. }
  179. .artist-image::before {
  180. content: "";
  181. position: absolute;
  182. top: 0;
  183. left: 0;
  184. right: 0;
  185. bottom: 0;
  186. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  187. border-radius: 0px 0px 10px 10px;
  188. opacity: 0;
  189. transition: opacity 0.3s;
  190. }
  191. .artist-image:hover::before {
  192. opacity: 1;
  193. cursor: pointer;
  194. }
  195. .manager-image {
  196. position: relative;
  197. background: url(/images/solutions/manager.png);
  198. background-size: cover;
  199. background-position: center;
  200. border-radius: 0px 0px 10px 10px;
  201. width: 19rem;
  202. height: 17rem;
  203. margin-top: 4rem;
  204. margin-left: 2rem;
  205. }
  206. .manager-image::before {
  207. content: "";
  208. position: absolute;
  209. top: 0;
  210. left: 0;
  211. right: 0;
  212. bottom: 0;
  213. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  214. border-radius: 0px 0px 10px 10px;
  215. opacity: 0;
  216. transition: opacity 0.3s;
  217. }
  218. .manager-image:hover::before {
  219. opacity: 1;
  220. cursor: pointer;
  221. }
  222. .school-image {
  223. position: relative;
  224. background: url(/images/solutions/school.jpg);
  225. background-size: cover;
  226. background-position: center;
  227. border-radius: 0px 0px 10px 10px;
  228. width: 19rem;
  229. height: 17rem;
  230. margin-top: 4rem;
  231. margin-left: 1.5rem;
  232. }
  233. .school-image::before {
  234. content: "";
  235. position: absolute;
  236. top: 0;
  237. left: 0;
  238. right: 0;
  239. bottom: 0;
  240. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  241. border-radius: 0px 0px 10px 10px;
  242. opacity: 0;
  243. transition: opacity 0.3s;
  244. }
  245. .school-image:hover::before {
  246. opacity: 1;
  247. cursor: pointer;
  248. }
  249. .col-info:first-child {
  250. margin-left: 9rem;
  251. }
  252. .col-info {
  253. width: 4rem;
  254. margin-left: 2rem;
  255. }
  256. .solution-img {
  257. width: 15rem;
  258. height: 15rem;
  259. object-fit: cover;
  260. margin-top: 2rem;
  261. }
  262. .description-logiciel {
  263. font-family: "Barlow";
  264. font-style: normal;
  265. font-size: 0.9rem;
  266. line-height: 0.9rem;
  267. margin-top: 1rem;
  268. color: #eff9fb;
  269. }
  270. .logiciel-name {
  271. font-family: "Barlow";
  272. font-style: normal;
  273. font-weight: 400;
  274. font-size: 30px;
  275. line-height: 2rem;
  276. color: #c3e5e7;
  277. margin-bottom: 1rem;
  278. }
  279. .opentalent-small {
  280. font-family: "Barlow";
  281. font-style: normal;
  282. font-weight: 600;
  283. font-size: 10px;
  284. line-height: 15px;
  285. letter-spacing: 0.18em;
  286. text-transform: uppercase;
  287. color: #ffffff;
  288. }
  289. .title {
  290. font-family: "Barlow";
  291. font-style: normal;
  292. font-weight: 00;
  293. font-size: 2rem;
  294. line-height: 42px;
  295. text-align: center;
  296. color: #ffffff;
  297. margin-bottom: 3rem;
  298. }
  299. .solution-subtitle {
  300. font-family: "Barlow";
  301. font-style: normal;
  302. font-size: 15px;
  303. line-height: 1rem;
  304. margin-top: .5rem;
  305. margin-bottom: 1rem;
  306. color: #c1eff0;
  307. }
  308. .container {
  309. background: #0e2d32;
  310. margin-bottom: 20rem;;
  311. height: 30rem;
  312. position: relative;
  313. }
  314. </style>