equipo.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. body {
  7. background-image: url(../img/fondo.png);
  8. }
  9. .container-all{
  10. display: flex;
  11. flex-direction: column;
  12. align-items: center;
  13. justify-content: center;
  14. }
  15. .carousel-container {
  16. width: 80%;
  17. display: flex;
  18. flex-direction: column;
  19. align-items: center;
  20. overflow: hidden;
  21. }
  22. .carousel {
  23. display: flex;
  24. justify-content: center;
  25. }
  26. .carousel-track {
  27. display: flex;
  28. transition: transform 0.4s ease-in-out;
  29. }
  30. .card-car {
  31. min-width: 200px;
  32. margin: 10px;
  33. display: flex;
  34. flex-direction: column;
  35. align-items: center;
  36. font-size: 24px;
  37. border-radius: 10px;
  38. filter: grayscale(100%);
  39. transition: filter 0.3s ease;
  40. }
  41. .card-car.active {
  42. filter: grayscale(0%);
  43. }
  44. .carousel-controls {
  45. margin-top: 15px;
  46. display: flex;
  47. justify-content: space-between;
  48. }
  49. .carousel-btn {
  50. margin: 0 10px;
  51. display: flex;
  52. align-items: center;
  53. justify-content: center;
  54. background-color: #ffffff;
  55. color: #76225e;
  56. font-weight: bold;
  57. font-size: 20px;
  58. border: none;
  59. width: 50px;
  60. height: 50px;
  61. cursor: pointer;
  62. border-radius: 50%;
  63. }
  64. .team {
  65. width: 80%;
  66. }
  67. .team img {
  68. height: 70px;
  69. width: 70px;
  70. border-radius: 50%;
  71. margin: 0 10px;
  72. }
  73. .member {
  74. display: flex;
  75. flex-direction: column;
  76. align-items: center;
  77. justify-content: center;
  78. margin-top: 40px;
  79. }
  80. .name-bg {
  81. margin-top: 15px;
  82. width: 40%;
  83. background-color: #76225e;
  84. text-align: center;
  85. }
  86. .name-bgF {
  87. margin-top: 15px;
  88. width: 40%;
  89. background-color: #03C0A8;
  90. text-align: center;
  91. }
  92. .name {
  93. font-size: 22px;
  94. color: white;
  95. }
  96. .position {
  97. margin-top: 10px;
  98. font-size: 22px;
  99. color: rgb(37, 37, 37);
  100. }