Outil.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. <template>
  2. <LayoutContainer>
  3. <v-row class="outil-row">
  4. <v-col cols="4">
  5. <h4 class="title">Présentation d'opentalent school</h4>
  6. <v-img src="/images/logiciels/school/screen.jpg" class="screen-img">
  7. </v-img>
  8. </v-col>
  9. <v-col cols="6">
  10. <h2>Un outil complet en ligne</h2>
  11. <ul>
  12. <li>Logiciel de gestion et communication en ligne</li>
  13. <li>Destiné aux établissements d'enseignement artistique</li>
  14. <li>
  15. Gestion quotidienne et en temps réel (suivi pédagogique,
  16. facturation, encaissement…)
  17. </li>
  18. <li>Pilotage complet de votre structure</li>
  19. </ul>
  20. </v-col>
  21. <v-col cols="2">
  22. <v-row>
  23. <div class="blue-square">
  24. <p>Nous contacter</p>
  25. </div>
  26. </v-row>
  27. <v-row>
  28. <div class="blue-square">
  29. <p>Nous contacter</p>
  30. </div>
  31. </v-row>
  32. <v-row>
  33. <div class="darkblue-square">
  34. <p>Nous contacter</p>
  35. </div>
  36. </v-row>
  37. </v-col>
  38. <v-row>
  39. <v-col cols="4"> </v-col>
  40. <v-col cols="5">
  41. <div class="title-picto-container">
  42. <h2>Des caractéristiques uniques & dédiées</h2>
  43. <div class="picto-container">
  44. <v-img
  45. class="picto-img"
  46. src="/images/logiciels/school/picto1.png"
  47. ></v-img>
  48. <v-img
  49. class="picto-img"
  50. src="/images/logiciels/school/picto2.png"
  51. ></v-img>
  52. <v-img
  53. class="picto-img"
  54. src="/images/logiciels/school/picto3.png"
  55. ></v-img>
  56. <v-img
  57. class="picto-img"
  58. src="/images/logiciels/school/picto4.png"
  59. ></v-img>
  60. </div>
  61. </div>
  62. </v-col>
  63. <v-col cols="2"> </v-col>
  64. </v-row>
  65. </v-row>
  66. <v-row class="container-green">
  67. <v-row>
  68. <v-col cols="6" class="citation-school"> “ Pour les petits comme pour les grands établissements d’enseignement artistique.“</v-col>
  69. </v-row>
  70. <v-col cols="6">
  71. <h6 class="subtitle-logiciel">Logiciel Opentalent</h6>
  72. <v-img src="/images/logiciels/school/screen2.png" class="screen2-img">
  73. </v-img>
  74. </v-col>
  75. </v-row>
  76. </LayoutContainer>
  77. </template>
  78. <script setup></script>
  79. <style scoped>
  80. .citation-school {
  81. font-family: 'Barlow';
  82. font-style: italic;
  83. font-weight: 300;
  84. font-size: 2rem;
  85. width: 3rem;
  86. line-height: 40px;
  87. color: #ffffff;
  88. font-style: italic;
  89. margin-top: 20rem;
  90. margin-left: 5rem;
  91. }
  92. .subtitle-logiciel {
  93. font-family: "Barlow";
  94. font-style: normal;
  95. font-weight: 600;
  96. font-size: 1.5rem;
  97. line-height: 18px;
  98. color: #ffffff;
  99. margin-left: 5rem;
  100. margin-right: 15rem;
  101. margin-top : 4rem;
  102. top: 10rem;
  103. }
  104. .screen2-img {
  105. width: 50rem;
  106. height: 40rem;
  107. bottom: 4rem;
  108. }
  109. .container-green {
  110. background: linear-gradient(180deg, rgba(14, 45, 50, 0) 26.84%, #0e2d32 100%),
  111. rgba(7, 27, 31, 0.3);
  112. height: 35rem;
  113. }
  114. .title-picto-container {
  115. align-items: start;
  116. }
  117. .picto-container {
  118. display: flex;
  119. justify-content: flex-start;
  120. padding: 0 2rem;
  121. }
  122. .picto-img {
  123. right: 5rem;
  124. height: 10rem;
  125. margin-bottom: 3rem;
  126. }
  127. .title {
  128. font-family: "Barlow";
  129. font-style: normal;
  130. font-weight: 600;
  131. font-size: 1.5rem;
  132. line-height: 18px;
  133. color: #091d20;
  134. margin-left: 5rem;
  135. margin-right: 15rem;
  136. }
  137. .screen-img {
  138. width: 20rem;
  139. height: 15rem;
  140. margin-top: 2rem;
  141. margin-left: 5rem;
  142. }
  143. .outil-row {
  144. margin-top: 5rem;
  145. margin-bottom: 5rem;
  146. }
  147. .darkblue-square {
  148. width: 6rem;
  149. height: 6rem;
  150. background: #0e2d32;
  151. margin-left: 12rem;
  152. }
  153. .blue-square {
  154. margin-left: 12rem;
  155. width: 6rem;
  156. height: 6rem;
  157. background: rgba(32, 147, 190, 0.6);
  158. }
  159. </style>