1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .socials {
- &__list {
- display: flex;
- align-items: center;
- }
- &__item {
- &:not(:last-child) {
- margin-right: 23px;
- }
- }
- }
- .socials-share {
- &__list {
- display: flex;
- align-items: center;
- margin-bottom: 20px;
- }
- &__item {
- &:not(:last-child) {
- margin-right: 5px;
- }
- }
- &__link {
- .size(41px);
- display: flex;
- justify-content: center;
- align-items: center;
- background-color: rgba(@color-blue-darken, .08);
- border-radius: 11px;
- .icon {
- fill: #00077B;
- &-ok {
- .size(9px, 15px);
- }
- &-vk {
- .size(16px, 9px);
- }
- }
- }
- }
|