123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- /*--------------------------------------------------------------
- # Footer
- --------------------------------------------------------------*/
- #footer {
- background: darken($secondary, 5);
- padding: 0 0 30px 0;
- color: $white;
- font-size: 14px;
- .footer-top {
- padding: 60px 0 30px 0;
- .footer-info {
- margin-top: -90px;
- margin-bottom: 15px;
- background: lighten($primary, 48);
- color: $secondary;
- border-top: 4px solid $primary;
- text-align: center;
- padding: 30px 20px;
- h3 {
- font-size: 24px;
- margin: 0 0 20px 0;
- padding: 2px 0 2px 0;
- line-height: 1;
- font-weight: 700;
- }
- p {
- font-size: 14px;
- line-height: 24px;
- margin-bottom: 0;
- font-family: $font-primary;
- }
- }
- .social-links {
- a {
- font-size: 18px;
- display: inline-block;
- background: $secondary;
- color: $white;
- line-height: 1;
- padding: 8px 0;
- margin-right: 4px;
- border-radius: 50%;
- text-align: center;
- width: 36px;
- height: 36px;
- transition: 0.3s;
- &:hover {
- background: $primary;
- color: #fff;
- text-decoration: none;
- }
- }
- }
- h4 {
- font-size: 16px;
- font-weight: 600;
- color: #fff;
- position: relative;
- padding-bottom: 12px;
- }
- .footer-links {
- margin-bottom: 30px;
- ul{
- list-style: none;
- padding: 0;
- margin: 0;
- i {
- padding-right: 2px;
- color: lighten($primary, 20);
- font-size: 18px;
- line-height: 1;
- }
- li {
- padding: 10px 0;
- &:first-child {
- padding-top: 0;
- }
- display: flex;
- align-items: center;
- }
- a {
- color: $white;
- transition: 0.3s;
- display: inline-block;
- line-height: 1;
- &:hover {
- color: lighten($primary, 15);
- }
- }
- }
- }
- .footer-newsletter {
-
- form {
- margin-top: 30px;
- background: #fff;
- padding: 6px 10px;
- position: relative;
- border-radius: 4;
-
- input[type="email"] {
- border: 0;
- padding: 4px;
- width: calc(100% - 110px);
- }
- input[type="submit"] {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- border: 0;
- background: none;
- font-size: 16px;
- padding: 0 20px;
- background: $primary;
- color: $white;
- transition: 0.3s;
- border-radius: 4;
- &:hover {
- background: darken($primary, 10%);
- }
- }
- }
- }
- }
- .copyright {
- border-top: 1px solid lighten($secondary, 5);
- text-align: center;
- padding-top: 30px;
- }
- .credits {
- padding-top: 10px;
- text-align: center;
- font-size: 13px;
- color: $white;
- }
- @media (max-width: 575px) {
- .footer-top .footer-info {
- margin: -20px 0 30px 0;
- }
- }
- }
|