Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 760 | blopes | 1 | .layout-footer { |
| 2 | box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08); |
||
| 3 | background-color: $contentBgColor; |
||
| 4 | padding: 21px 32px; |
||
| 5 | @include flex(); |
||
| 6 | @include flex-align-center(); |
||
| 7 | @include flex-justify-between(); |
||
| 8 | |||
| 9 | > img { |
||
| 10 | height: 30px; |
||
| 11 | width: auto; |
||
| 12 | } |
||
| 13 | |||
| 14 | .social-icons { |
||
| 15 | @include flex(); |
||
| 16 | @include flex-align-center(); |
||
| 17 | |||
| 18 | a { |
||
| 19 | color: $textColor; |
||
| 20 | margin-left: 18px; |
||
| 21 | cursor: pointer; |
||
| 22 | padding: 6px; |
||
| 23 | |||
| 24 | i { |
||
| 25 | font-size: 22px; |
||
| 26 | @include transition(color $transitionDuration); |
||
| 27 | } |
||
| 28 | |||
| 29 | &:hover { |
||
| 30 | i { |
||
| 31 | color: $primaryColor; |
||
| 32 | } |
||
| 33 | } |
||
| 34 | } |
||
| 35 | } |
||
| 36 | } |