SomeNumbers.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <template>
  2. <LayoutContainer>
  3. <v-row class="align-center">
  4. <LayoutUISubTitle>
  5. Quelques chiffres
  6. </LayoutUISubTitle>
  7. </v-row>
  8. <v-container>
  9. <v-row class="card-container justify-center mb-12">
  10. <v-col
  11. cols="3"
  12. class="d-flex justify-center align-center small-padding"
  13. >
  14. <CommonCardStat
  15. number="140"
  16. text="Structures en réseau"
  17. />
  18. </v-col>
  19. <v-col cols="3" class="d-flex justify-center align-center">
  20. <CommonCardStat
  21. number="300 000"
  22. text="Utilisateurs"
  23. />
  24. </v-col>
  25. <v-col cols="3" class="d-flex justify-center align-center">
  26. <CommonCardStat
  27. number="12"
  28. text="Années de collaboration"
  29. />
  30. </v-col>
  31. </v-row>
  32. </v-container>
  33. <v-row>
  34. <v-col cols="12" class="justify-center">
  35. <span class="cmf-trust-statement">
  36. La plus grande Confédération Musicale de France nous fait confiance
  37. </span>
  38. <v-img
  39. src="/images/logiciels/manager/cmf.jpg"
  40. class="cmf-img mb-6"
  41. />
  42. </v-col>
  43. </v-row>
  44. </LayoutContainer>
  45. </template>
  46. <script setup lang="ts">
  47. </script>
  48. <style scoped lang="scss">
  49. .custom-row {
  50. width: 90%;
  51. margin-right: auto;
  52. margin-left: auto;
  53. }
  54. .v-row {
  55. max-width: 1600px;
  56. margin: 0 auto;
  57. }
  58. :deep(h2) {
  59. width: 60rem;
  60. }
  61. .card-container {
  62. --primary-color-alt: white;
  63. margin-left: auto;
  64. margin-right: auto;
  65. display: flex;
  66. justify-content: center;
  67. align-items: center;
  68. }
  69. .alt-color {
  70. color: var(--on-primary-color-alt);
  71. }
  72. .background-img {
  73. width: 600px;
  74. height: 400px;
  75. background-size: cover;
  76. background-position: center;
  77. }
  78. .cmf-img {
  79. width: 30rem;
  80. height: 18rem;
  81. margin-top: 2rem;
  82. margin-right: auto;
  83. margin-left: auto;
  84. }
  85. .cmf-trust-statement {
  86. font-size: 2rem;
  87. text-align: center;
  88. width: 100%;
  89. display: flex;
  90. justify-content: center;
  91. }
  92. </style>