Logiciels.vue 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  1. <template>
  2. <div id="Nos logiciels">
  3. <LayoutContainer :overflow="false">
  4. <div class="title-container mt-12">
  5. <v-icon size="6" class="fa-solid fa-circle icon-title" />
  6. <h4 class="subtitle">Ce qui nous anime</h4>
  7. </div>
  8. <h3 class="title">Nos Logiciels</h3>
  9. <v-row>
  10. <v-col cols="3" class="col-info">
  11. <small class="opentalent-small">Opentalent</small>
  12. <h2 class="logiciel-name">Artist</h2>
  13. <hr class="bar" />
  14. <p class="description-logiciel">
  15. Orchestre, chorales, compagnies de danse, théâtre et cirque
  16. </p>
  17. <v-row>
  18. <div class="artist-image">
  19. <v-img
  20. src="/images/OpenTalent_LogoNoir_Jaune_white.png"
  21. class="logo"
  22. />
  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. <div class="overlay">
  59. <button class="discover-button">Découvrir</button>
  60. </div>
  61. </div>
  62. </v-row>
  63. </v-row>
  64. <v-row>
  65. <v-col cols="6">
  66. <ul class="list-solutions">
  67. <li class="details-solution">Gestion des membres</li>
  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. </ul>
  72. </v-col>
  73. <v-col cols="6">
  74. <ul>
  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-row>
  82. </v-col>
  83. <v-col cols="3" class="col-info">
  84. <small class="opentalent-small">Opentalent</small>
  85. <h2 class="logiciel-name">School</h2>
  86. <hr class="bar" />
  87. <p class="description-logiciel">
  88. Petits et grands établissements d'enseignement artistique
  89. </p>
  90. <v-row>
  91. <v-row>
  92. <div class="school-image">
  93. <v-img src="/images/logo_school_white.png" class="logo" />
  94. </div>
  95. </v-row>
  96. </v-row>
  97. <v-row>
  98. <v-col cols="6">
  99. <ul class="list-solutions">
  100. <li class="details-solution">Gestion des membres</li>
  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. </ul>
  105. </v-col>
  106. <v-col cols="6">
  107. <ul>
  108. <li class="details-solution">Gestion des membres</li>
  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. </ul>
  113. </v-col>
  114. </v-row>
  115. </v-col>
  116. </v-row>
  117. </LayoutContainer>
  118. </div>
  119. </template>
  120. <style scoped>
  121. .title-container {
  122. display: flex;
  123. justify-content: center;
  124. align-items: center;
  125. font-weight: 600;
  126. font-size: 1.5rem;
  127. line-height: 18px;
  128. color: #091d20;
  129. width: 15rem;
  130. margin-left: 2rem;
  131. }
  132. .subtitle {
  133. color: #071b1f;
  134. font-family: "Barlow";
  135. font-size: 1rem;
  136. font-style: normal;
  137. font-weight: 600;
  138. line-height: 15px;
  139. letter-spacing: 1.8px;
  140. text-transform: uppercase;
  141. }
  142. .title {
  143. font-family: "Barlow";
  144. font-weight: 600;
  145. font-size: 3rem;
  146. line-height: 18px;
  147. color: #091d20;
  148. margin-bottom: 4rem;
  149. }
  150. .icon-title {
  151. margin-right: 0.7rem;
  152. color: #64afb7;
  153. }
  154. .discover-button {
  155. background-color: transparent;
  156. border: none;
  157. color: white;
  158. font-family: "Barlow";
  159. font-size: 1.2rem;
  160. font-weight: 600;
  161. padding: 1rem 2rem;
  162. border-radius: 2rem;
  163. cursor: pointer;
  164. }
  165. .logo {
  166. width: 5rem;
  167. height: 4rem;
  168. margin-top: 13rem;
  169. margin-left: 13rem;
  170. }
  171. .list-solutions {
  172. margin-left: 0.5rem;
  173. margin-top: 0.5rem;
  174. font-size: 0.5rem;
  175. }
  176. .details-solution {
  177. font-size: 0.5rem;
  178. margin-top: 0.5rem;
  179. width: 10rem;
  180. margin-left: 1rem;
  181. font-family: "Barlow";
  182. font-style: normal;
  183. font-size: 0.7rem;
  184. line-height: 18px;
  185. color: #091d20;
  186. }
  187. .bar {
  188. color: #c3e5e7;
  189. }
  190. .artist-image {
  191. position: relative;
  192. background: url(/images/solutions/artist.jpg);
  193. background-size: cover;
  194. background-position: center;
  195. border-radius: 0px 0px 10px 10px;
  196. width: 19rem;
  197. height: 17rem;
  198. margin-top: 2rem;
  199. margin-left: 0.9rem;
  200. }
  201. .artist-image::before {
  202. content: "";
  203. position: absolute;
  204. top: 0;
  205. left: 0;
  206. right: 0;
  207. bottom: 0;
  208. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  209. border-radius: 0px 0px 10px 10px;
  210. opacity: 0;
  211. transition: opacity 0.3s;
  212. }
  213. .artist-image:hover::before {
  214. opacity: 1;
  215. }
  216. .manager-image {
  217. position: relative;
  218. background: url(/images/solutions/manager.png);
  219. background-size: cover;
  220. background-position: center;
  221. border-radius: 0px 0px 10px 10px;
  222. width: 19rem;
  223. height: 17rem;
  224. margin-top: 4rem;
  225. margin-left: 2rem;
  226. }
  227. .manager-image::before {
  228. content: "";
  229. position: absolute;
  230. top: 0;
  231. left: 0;
  232. right: 0;
  233. bottom: 0;
  234. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  235. border-radius: 0px 0px 10px 10px;
  236. opacity: 0;
  237. transition: opacity 0.3s;
  238. }
  239. .manager-image:hover::before {
  240. opacity: 1;
  241. }
  242. .school-image {
  243. position: relative;
  244. background: url(/images/solutions/school.jpg);
  245. background-size: cover;
  246. background-position: center;
  247. border-radius: 0px 0px 10px 10px;
  248. width: 19rem;
  249. height: 17rem;
  250. margin-top: 4rem;
  251. margin-left: 1.5rem;
  252. }
  253. .school-image::before {
  254. content: "";
  255. position: absolute;
  256. top: 0;
  257. left: 0;
  258. right: 0;
  259. bottom: 0;
  260. background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  261. border-radius: 0px 0px 10px 10px;
  262. opacity: 0;
  263. transition: opacity 0.3s;
  264. }
  265. .school-image:hover::before {
  266. opacity: 1;
  267. }
  268. .col-info:first-child {
  269. margin-left: 9rem;
  270. }
  271. .col-info {
  272. width: 4rem;
  273. margin-left: 2rem;
  274. }
  275. .solution-img {
  276. width: 15rem;
  277. height: 15rem;
  278. object-fit: cover;
  279. margin-top: 2rem;
  280. }
  281. .description-logiciel {
  282. font-family: "Barlow";
  283. font-style: normal;
  284. font-size: 0.9rem;
  285. line-height: 0.9rem;
  286. margin-top: 1rem;
  287. color: #0e2d32;
  288. }
  289. .logiciel-name {
  290. font-family: "Barlow";
  291. font-style: normal;
  292. font-weight: 400;
  293. font-size: 30px;
  294. line-height: 2rem;
  295. color: #0e2d32;
  296. margin-bottom: 1rem;
  297. }
  298. .opentalent-small {
  299. font-family: "Barlow";
  300. font-style: normal;
  301. font-weight: 600;
  302. font-size: 10px;
  303. line-height: 15px;
  304. letter-spacing: 0.18em;
  305. text-transform: uppercase;
  306. color: #0e2d32;
  307. }
  308. .title {
  309. font-family: "Barlow";
  310. font-style: normal;
  311. font-weight: 600;
  312. font-size: 42px;
  313. line-height: 42px;
  314. color: #071b1f;
  315. flex: none;
  316. margin-bottom: 3rem;
  317. margin-top: 2rem;
  318. margin-left: 5rem;
  319. }
  320. .solution-subtitle {
  321. font-family: "Barlow";
  322. font-style: normal;
  323. font-weight: 600;
  324. font-size: 10px;
  325. line-height: 15px;
  326. display: flex;
  327. align-items: center;
  328. letter-spacing: 0.18em;
  329. text-transform: uppercase;
  330. color: #071b1f;
  331. }
  332. .container {
  333. margin-bottom: 20rem;
  334. height: 30rem;
  335. position: relative;
  336. }
  337. .container-title {
  338. margin-top: 5rem;
  339. margin-left: 8rem;
  340. margin-bottom: 5rem;
  341. }
  342. </style>