EventAgenda.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <template>
  2. <LayoutContainer :overflow="false">
  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. * {
  39. font-family: "Barlow";
  40. font-style: normal;
  41. }
  42. .details{
  43. font-weight: 400;
  44. font-size: 1rem;
  45. margin-top: 3rem;
  46. margin-left: 2rem;
  47. color: #091d20;
  48. width: 16rem;
  49. margin-left: 10rem;
  50. }
  51. .title-event {
  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. margin-left:15rem;
  71. margin-top:2rem;
  72. }
  73. .title {
  74. height: 114px;
  75. font-weight: 400;
  76. font-size:2rem;
  77. line-height: 38px;
  78. text-align: center;
  79. margin-left: 25rem;
  80. margin-right: 25rem;
  81. margin-top: 3rem;
  82. color: #ffffff;
  83. }
  84. .container {
  85. height: 20rem;
  86. margin-bottom: 30rem;
  87. background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
  88. linear-gradient(180deg, rgba(14, 45, 50, 0.04) 0%, rgba(14, 45, 50, 0.2) 100%),
  89. linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
  90. url("/images/eventAgenda/eventAgenda.jpg") no-repeat center center;
  91. background-size: cover;
  92. }
  93. .white-container {
  94. margin-top: 5rem;
  95. background-color: #ffffff;
  96. }
  97. .screen-img{
  98. margin-left: 8rem;
  99. width: 70%;
  100. height: 90%;
  101. border-radius: 20%;
  102. }
  103. </style>