EventAgenda.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <v-container>
  3. <div class="container">
  4. <h2 class="title">
  5. Retrouvez tous vos évènements dans l'agenda et référencez vous dans
  6. l'annuaire
  7. </h2>
  8. <v-row>
  9. <v-col col="6">
  10. <v-btn> Découvrir l'évènement </v-btn>
  11. </v-col>
  12. <v-col col="6">
  13. <v-btn> Découvrir l'annuaire </v-btn>
  14. </v-col>
  15. </v-row>
  16. </div>
  17. <div class="white-container">
  18. <v-row>
  19. <v-col cols="6">
  20. <v-img
  21. src="/images/eventAgenda/logiciel.png"
  22. class="screen-img"
  23. > </v-img>
  24. </v-col>
  25. <v-col cols="6">
  26. <h3>Une solution évolutive pour vous donner entière satisfaction</h3>
  27. <p>
  28. La satisfaction de nos clients est notre première motivation et nous
  29. nous tenons à votre écoute pour faire évoluer notre logiciel. Un
  30. besoin ? Notifiez le nous et après l'étude de votre demande en
  31. interne puis validation, nous intégrerons votre requête à notre
  32. processus de développement.
  33. </p>
  34. </v-col>
  35. </v-row>
  36. </div>
  37. </v-container>
  38. </template>
  39. <style scoped>
  40. .screen-img {
  41. height: 400px;
  42. width: 500px;
  43. border-radius: 20px;
  44. }
  45. .white-container {
  46. height: 500px;
  47. width: 1600px;
  48. }
  49. .title {
  50. height: 114px;
  51. /* H3 Headline */
  52. font-family: "Barlow";
  53. font-style: normal;
  54. font-weight: 400;
  55. font-size: 34px;
  56. line-height: 38px;
  57. /* or 112% */
  58. text-align: center;
  59. /* NEUTRAL - BLANC */
  60. color: #ffffff;
  61. }
  62. .container {
  63. height: 500px;
  64. width: 1600px;
  65. background: url("/images/eventAgenda/eventAgenda.jpg") no-repeat center center;
  66. background-size: cover;
  67. }
  68. </style>