You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
2.3 KiB
92 lines
2.3 KiB
6 years ago
|
/**
|
||
|
* @file
|
||
|
* Visual styles for Magazine+'s social links.
|
||
|
*/
|
||
|
.social-links {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
list-style-type: none;
|
||
|
display: block;
|
||
|
font-size: 0;
|
||
|
}
|
||
|
.social-links.social-links--inline li {
|
||
|
display: inline-block;
|
||
|
}
|
||
|
.social-links li a {
|
||
|
font-size: 12px;
|
||
|
font-weight: 600;
|
||
|
text-decoration: none;
|
||
|
padding: 10px 20px;
|
||
|
line-height: 1;
|
||
|
display: inline-block;
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
.social-links li a:hover {
|
||
|
background-color: rgba(255, 255, 255, 0.8);
|
||
|
}
|
||
|
.headings-wide-spacing-enabled .social-links li a {
|
||
|
letter-spacing: 0.25em;
|
||
|
text-transform: uppercase;
|
||
|
}
|
||
|
.text-color-facebook,
|
||
|
.region--light-typography .text-color-facebook,
|
||
|
a.hover-color-facebook:hover,
|
||
|
.region--light-typography a.hover-color-facebook:hover {
|
||
|
color: #39579a;
|
||
|
}
|
||
|
.text-color-twitter,
|
||
|
.region--light-typography .text-color-twitter,
|
||
|
a.hover-color-twitter:hover,
|
||
|
.region--light-typography a.hover-color-twitter:hover {
|
||
|
color: #50abf1
|
||
|
}
|
||
|
.text-color-behance,
|
||
|
.region--light-typography .text-color-behance,
|
||
|
a.hover-color-behance:hover,
|
||
|
.region--light-typography a.hover-color-behance:hover {
|
||
|
color: #1769ff;
|
||
|
}
|
||
|
.text-color-dribbble,
|
||
|
.region--light-typography .text-color-dribbble,
|
||
|
a.hover-color-dribbble:hover,
|
||
|
.region--light-typography a.hover-color-dribbble:hover {
|
||
|
color: #ea4c89;
|
||
|
}
|
||
|
.text-color-instagram,
|
||
|
.region--light-typography .text-color-instagram,
|
||
|
a.hover-color-instagram:hover,
|
||
|
.region--light-typography a.hover-color-instagram:hover {
|
||
|
color: #883bb9;
|
||
|
}
|
||
|
.text-color-vimeo,
|
||
|
.region--light-typography .text-color-vimeo,
|
||
|
a.hover-color-vimeo:hover,
|
||
|
.region--light-typography a.hover-color-vimeo:hover {
|
||
|
color: #1ab7ea;
|
||
|
}
|
||
|
.text-color-youtube,
|
||
|
.region--light-typography .text-color-youtube,
|
||
|
a.hover-color-youtube:hover,
|
||
|
.region--light-typography a.hover-color-youtube:hover {
|
||
|
color: #e82a1b;
|
||
|
}
|
||
|
.text-color-googleplus,
|
||
|
.region--light-typography .text-color-googleplus,
|
||
|
a.hover-color-googleplus:hover,
|
||
|
.region--light-typography a.hover-color-googleplus:hover {
|
||
|
color: #d34836;
|
||
|
}
|
||
|
.text-color-linkedin,
|
||
|
.region--light-typography .text-color-linkedin,
|
||
|
a.hover-color-linkedin:hover,
|
||
|
.region--light-typography a.hover-color-linkedin:hover {
|
||
|
color: #0077b5;
|
||
|
}
|
||
|
@media (max-width:767px) {
|
||
|
.footer-bottom__section ul.social-links li,
|
||
|
.footer__section ul.social-links li,
|
||
|
.subfooter__section ul.social-links li {
|
||
|
display: block;
|
||
|
}
|
||
|
}
|