EventAgenda.vue 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <!--
  2. Section "Agenda" de la page d'accueil
  3. -->
  4. <template>
  5. <LayoutContainer>
  6. <div class="container">
  7. <div class="d-flex align-center justify-center">
  8. <h2>
  9. Retrouvez tous vos évènements dans l'agenda et référencez vous dans
  10. l'annuaire
  11. </h2>
  12. </div>
  13. <v-row justify="center">
  14. <div class="btn-container">
  15. <v-col cols="12" md="6">
  16. <v-btn append-icon="fas fa-arrow-right" class="btn-event">
  17. Découvrir l'agenda
  18. </v-btn>
  19. </v-col>
  20. <v-col cols="12" md="6">
  21. <v-btn append-icon="fas fa-arrow-right" class="btn-event">
  22. Découvrir l’ANNUAIRE
  23. </v-btn>
  24. </v-col>
  25. </div>
  26. </v-row>
  27. </div>
  28. </LayoutContainer>
  29. </template>
  30. <script setup>
  31. import { useDisplay } from "vuetify";
  32. const { mdAndDown } = useDisplay();
  33. </script>
  34. <style scoped>
  35. @media (min-width: 600px) {
  36. .container {
  37. height: 35rem;
  38. background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
  39. linear-gradient(
  40. 180deg,
  41. rgba(14, 45, 50, 0.04) 0%,
  42. rgba(14, 45, 50, 0.2) 100%
  43. ),
  44. linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
  45. url("/images/eventAgenda/eventAgenda.jpg") no-repeat center 60%;
  46. background-size: cover;
  47. }
  48. }
  49. h2 {
  50. height: 9rem;
  51. font-weight: 400;
  52. font-size: 3rem;
  53. line-height: 3rem;
  54. text-align: center;
  55. margin-bottom: 3rem;
  56. margin-top: 4rem;
  57. color: var(--on-primary-color);
  58. width: 45rem;
  59. }
  60. .btn-container {
  61. display: flex;
  62. align-items: center;
  63. justify-content: center;
  64. padding: 0 20rem;
  65. }
  66. @media (max-width: 960px) {
  67. .btn-container {
  68. padding: 0 5rem;
  69. }
  70. }
  71. .btn-event {
  72. border-radius: 0.5rem;
  73. gap: 9px;
  74. font-weight: 700;
  75. font-size: 0.9rem;
  76. line-height: 15px;
  77. width: 18rem;
  78. margin-top: 3rem;
  79. min-width: 20rem;
  80. max-width: 20rem;
  81. height: 3.5rem;
  82. }
  83. </style>