Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*Estilos del boton en las tarjetas*/
- a.ui-btn1 {
- color: #ffffff;
- background: #5D55FA;
- border: 2px solid #5D55FA;
- padding: 4px 15px;
- margin-top: 20px;
- border-radius: 50px;
- display: inline-block;
- transition: all 0.3s ease-in-out;
- }
- /*Hover. Efecto al pasar el cursor por encima del botón*/
- a.ui-btn1:hover {
- background: #1D0EBE;
- color: #fff;
- border: 2px solid #1D0EBE;
- cursor: pointer;
- transition: all 0.3s ease-in-out;
- }
- /***Estilos para las tarjetas de miembros***/
- .ui-tarjeta .ui-botones {
- display: flex;
- justify-content: space-evenly;
- }
- .ui-tarjeta .et_pb_team_member_image img {
- border: 2px solid #fff;
- border-radius: 100%;
- }
- /*** Estilos del carrusel***/
- /*Bullets*/
- .swiper-pagination-bullets {
- position: relative !important;
- }
- .swiper-pagination-bullet {
- height: 7px!important;
- width: 26px!important;
- border-radius: 25px!important;
- background: #5D55FA!important;
- margin: 0 5px;
- }
- /* Estilos iconos de siguiente - anterior */
- .swiper-button-next, .swiper-button-prev {
- background: #DFDDFE;
- padding: 20px;
- border-radius: 8px;
- top: 45%;
- z-index: 10;
- transition: 0.3s all;
- }
- .swiper-button-next {
- right: 8%!important;
- }
- .swiper-button-prev {
- left: 8%!important;
- }
- /*Hover. Pasar el cursor de los iconos siguiente - anterior*/
- .swiper-button-next:hover, .swiper-button-prev:hover {
- background: #5C54F6;
- transition: 0.3s all;
- }
- /* HOVER - icono de las flechitas blanco*/
- .swiper-button-next:hover:after, .swiper-button-prev:hover:after {
- color: #fff;
- }
- /* NORMAL - Color Icono de las flechitas siguiente - anterior*/
- .swiper-button-next:after, .swiper-button-prev:after {
- font-family: 'ETmodules'!important;
- font-size: 25px!important;
- font-weight: 900;
- color: #5C54F6;
- }
- .swiper-button-prev:after {
- content: '\44'!important;
- }
- .swiper-button-next:after {
- content: '\45'!important;
- }
- @media screen and (max-width: 980px) {
- .swiper-button-next, .swiper-button-prev {
- display: none!important;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement