EventAgenda.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <template>
  2. <LayoutContainer>
  3. <h2 class="title">
  4. Retrouvez tous vos évènements dans l'agenda et référencez vous dans
  5. l'annuaire
  6. </h2>
  7. <v-row>
  8. <v-col col="6">
  9. <v-btn class="btn-event"> Découvrir l'évènement </v-btn>
  10. </v-col>
  11. <v-col col="6">
  12. <v-btn class="btn-event"> Découvrir l'évènement </v-btn>
  13. </v-col>
  14. </v-row>
  15. <div class="white-container">
  16. <v-row>
  17. <v-col cols="6">
  18. <v-img
  19. src="/images/eventAgenda/logiciel.png"
  20. class="screen-img"
  21. > </v-img>
  22. </v-col>
  23. <v-col cols="6">
  24. <h3 class="title-event">Une solution évolutive pour vous donner entière satisfaction</h3>
  25. <p class="details">
  26. La satisfaction de nos clients est notre première motivation et nous
  27. nous tenons à votre écoute pour faire évoluer notre logiciel. Un
  28. besoin ? Notifiez le nous et après l'étude de votre demande en
  29. interne puis validation, nous intégrerons votre requête à notre
  30. processus de développement.
  31. </p>
  32. </v-col>
  33. </v-row>
  34. </div>
  35. </LayoutContainer>
  36. </template>
  37. <style scoped>
  38. .details{
  39. font-family: "Barlow";
  40. font-style: normal;
  41. font-weight: 400;
  42. font-size: 1rem;
  43. margin-top: 3rem;
  44. margin-left: 2rem;
  45. color: #091d20;
  46. width: 16rem;
  47. margin-left: 10rem;
  48. }
  49. .title-event {
  50. font-family: "Barlow";
  51. font-style: normal;
  52. font-weight: 400;
  53. font-size: 1.5rem;
  54. line-height: 38px;
  55. margin-top: 3rem;
  56. margin-left: 2rem;
  57. color: #091d20;
  58. width: 16rem;
  59. margin-left: 10rem;
  60. }
  61. .btn-event {
  62. border-radius: 0.5rem;
  63. margin-left: 7vw;
  64. gap: 9px;
  65. font-weight: 700;
  66. font-size: 10px;
  67. line-height: 15px;
  68. width: 15rem;
  69. height: 3rem;
  70. font-family: "Barlow";
  71. font-style: normal;
  72. margin-left:10rem;
  73. margin-top:2rem;
  74. }
  75. .title {
  76. height: 114px;
  77. font-family: "Barlow";
  78. font-style: normal;
  79. font-weight: 400;
  80. font-size:2rem;
  81. line-height: 38px;
  82. text-align: center;
  83. margin-left: 25rem;
  84. margin-right: 25rem;
  85. margin-top: 3rem;
  86. color: #ffffff;
  87. }
  88. .container {
  89. height: 20rem;
  90. margin-bottom: 30rem;
  91. background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
  92. linear-gradient(180deg, rgba(14, 45, 50, 0.04) 0%, rgba(14, 45, 50, 0.2) 100%),
  93. linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
  94. url("/images/eventAgenda/eventAgenda.jpg") no-repeat center center;
  95. background-size: cover;
  96. }
  97. .white-container {
  98. margin-top: 5rem;
  99. background-color: #ffffff;
  100. }
  101. .screen-img{
  102. margin-left: 8rem;
  103. width: 30rem;
  104. height: 30rem;
  105. margin-bottom: -7rem;
  106. border-radius: èrem;
  107. }
  108. </style>