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.
70 lines
1.3 KiB
70 lines
1.3 KiB
6 years ago
|
/**
|
||
|
* @file
|
||
|
* Visual styles for Magazine+'s share links component.
|
||
|
*/
|
||
|
.share-links {
|
||
|
margin-bottom: 20px;
|
||
|
width: 100%;
|
||
|
}
|
||
|
.share-links ul {
|
||
|
list-style: none;
|
||
|
padding-left: 0;
|
||
|
}
|
||
|
.share-links ul li {
|
||
|
margin-bottom: 10px;
|
||
|
white-space: normal;
|
||
|
}
|
||
|
.share-links ul li a {
|
||
|
line-height: 1;
|
||
|
white-space: normal;
|
||
|
display: block;
|
||
|
text-align: center;
|
||
|
padding: 15px 0;
|
||
|
background-color: #f4f4f4;
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
.share-links ul li a:hover {
|
||
|
color: #eeeeee;
|
||
|
}
|
||
|
.share-links ul li a i {
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
/*fixed share links*/
|
||
|
.js-share-links-fixed .main-content__section {
|
||
|
position: relative;
|
||
|
z-index: 1;
|
||
|
}
|
||
|
.js-share-links-fixed .share-links {
|
||
|
position: fixed;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
margin-bottom: 0;
|
||
|
z-index: 10;
|
||
|
}
|
||
|
.js-share-links-fixed .share-links ul {
|
||
|
margin-bottom: 0;
|
||
|
width: 100%;
|
||
|
font-size: 0;
|
||
|
}
|
||
|
.js-share-links-fixed .share-links ul li {
|
||
|
display: inline-block;
|
||
|
width: 33.33333%;
|
||
|
margin-bottom: 0;
|
||
|
}
|
||
|
.js-share-links-fixed .share-links ul li.print {
|
||
|
width: 100%;
|
||
|
}
|
||
|
.js-share-links-fixed .share-links ul li.print-button-enabled,
|
||
|
.js-share-links-fixed .share-links ul li.share-links-enabled {
|
||
|
width: 25%;
|
||
|
}
|
||
|
.js-share-links-fixed .share-links ul li a {
|
||
|
padding: 25px 0;
|
||
|
font-size: 20px;
|
||
|
color: #eeeeee;
|
||
|
}
|
||
|
.js-share-links-fixed .share-links ul li a:hover {
|
||
|
background-color: #eeeeee;
|
||
|
}
|