| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- body {
- background-image: url(../img/fondo.png);
- }
- .container-all{
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .carousel-container {
- width: 80%;
- display: flex;
- flex-direction: column;
- align-items: center;
- overflow: hidden;
- }
- .carousel {
- display: flex;
- justify-content: center;
- }
- .carousel-track {
- display: flex;
- transition: transform 0.4s ease-in-out;
- }
- .card-car {
- min-width: 200px;
- margin: 10px;
- display: flex;
- flex-direction: column;
- align-items: center;
- font-size: 24px;
- border-radius: 10px;
- filter: grayscale(100%);
- transition: filter 0.3s ease;
- }
- .card-car.active {
- filter: grayscale(0%);
- }
- .carousel-controls {
- margin-top: 15px;
- display: flex;
- justify-content: space-between;
- }
- .carousel-btn {
- margin: 0 10px;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: #ffffff;
- color: #76225e;
- font-weight: bold;
- font-size: 20px;
- border: none;
- width: 50px;
- height: 50px;
- cursor: pointer;
- border-radius: 50%;
- }
- .team {
- width: 80%;
- }
- .team img {
- height: 70px;
- width: 70px;
- border-radius: 50%;
- margin: 0 10px;
- }
- .member {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- margin-top: 40px;
- }
- .name-bg {
- margin-top: 15px;
- width: 40%;
- background-color: #76225e;
- text-align: center;
- }
- .name-bgF {
- margin-top: 15px;
- width: 40%;
- background-color: #03C0A8;
- text-align: center;
- }
- .name {
- font-size: 22px;
- color: white;
- }
- .position {
- margin-top: 10px;
- font-size: 22px;
- color: rgb(37, 37, 37);
- }
|