| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221 |
- .footer {
- margin-top: 130px;
- font-family: 'Quicksand', sans-serif;
- width: 100%;
- height: auto;
- }
- .footer-header {
- width: 100%;
- height: 60px;
- background-color: #341a42;
- position: relative;
- }
- .form-container {
- display: flex;
- align-items: center;
- justify-content: space-around;
- background-image:
- linear-gradient(rgba(157, 93, 93, 0.117), rgba(157, 93, 93, 0.003)),
- url(../img/fondo.png);
- width: 60%;
- height: 120px;
- max-height: 120px;
- position: absolute;
- top: -61px;
- left: 50%;
- transform: translateX(-50%);
- box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
- border-radius: 8px;
- padding: 20px;
- }
- .footer-form {
- display: flex;
- align-items: center;
- flex-direction: row;
- height: 100%;
- max-height: 50px;
- width: 100%;
- max-width: 40%;
- border: 2px solid rgb(22, 22, 22);
- border-radius: 30px;
- padding-left: 40px;
- }
- .email-footer {
- background-color: transparent;
- height: 100%;
- flex-grow: 2;
- border: none;
- }
- .email-footer:focus {
- outline: none;
- }
- .footer-form:focus-within {
- outline: 1px solid #76225e;
- }
- .subscribe {
- padding: 1px 20px;
- font-family: 'Quicksand', sans-serif;
- font-weight: bold;
- border-top-right-radius: 30px;
- border-bottom-right-radius: 30px;
- height: 100%;
- border: 1px solid #f04f48;
- background: #f04f48;
- }
- .subscribe:hover {
- cursor: pointer;
- transition: color 0.5s ease, color 0.5s ease;
- color: #ffffff;
- }
- .icon-footerT {
- border-radius: 100%;
- padding: 10px;
- margin-left: 5px;
- margin-right: 5px;
- background-color: rgb(150, 150, 150);
- display: flex;
- justify-content: center;
- align-items: center;
- width: 40px;
- height: 40px;
- text-decoration: none;
- transition: color 0.3s ease, color 0.3s ease;
- }
- .icon-footerT i {
- transform: scale(0.8);
- color: black;
- }
- .footer-info {
- width: 100%;
- height: 400px;
- background-color: #76225e;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .info-container {
- display: flex;
- width: 50%;
- }
- .part {
- width: 100%;
- max-width: 33%;
- padding-left: 25px;
- padding-right: 25px;
- }
- .part:nth-child(2) {
- border-left: 1px solid #adadad;
- border-right: 1px solid #adadad;
- }
- .donation-list {
- list-style: none;
- }
- .donation-list div {
- padding-top: 5px;
- padding-bottom: 5px;
- }
- .donation-list div:hover {
- cursor: pointer;
- transition: color 0.5s ease, color 0.5s ease;
- color: #ff7a32;
- }
- .footer-title {
- display: flex;
- align-items: center;
- justify-content: start
- }
- .iconF {
- color: #f04f48;
- transform: scale(2);
- }
- .footer-title-in {
- padding-left: 20px;
- display: flex;
- flex-direction: column;
- }
- .titleC {
- font-size: 20px;
- font-family: 'Caveat', cursive;
- font-weight: 600;
- color: #FB4C44;
- }
- .titleQ {
- font-size: 22px;
- font-family: 'Quicksand', sans-serif;
- font-weight: 600;
- color: #f04f48;
- }
- .part-text {
- margin-top: 20px;
- }
- .join {
- margin-top: 20px;
- border: none;
- border-radius: 25px;
- padding: 20px 25px;
- width: fit-content;
- background-color: #f04f48;
- font-family: 'Quicksand', sans-serif;
- font-weight: bold;
- }
- .join:hover {
- cursor: pointer;
- transition: color 0.5s ease, color 0.5s ease;
- color: #ffffff;
- }
- .footer-color {
- color: #73c7a4;
- }
- .footer-end {
- width: 100%;
- padding-top: 10px;
- padding-bottom: 10px;
- background-color: #341a42;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .footer-end-container {
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- max-width: 50%;
- }
- .ways-donate {
- font-size: 30px;
- font-family: 'Caveat', cursive;
- }
|