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.
24 lines
366 B
24 lines
366 B
/** |
|
* @file |
|
* Styles for Magazine+'s node side affix. |
|
*/ |
|
#affix.affix { |
|
position: fixed; |
|
width: 70px; |
|
} |
|
#affix.affix > div:first-child { |
|
padding-top: 15px; |
|
} |
|
#affix.affix .share-links { |
|
margin-top: 0; |
|
} |
|
#affix.affix-bottom { |
|
position: absolute; |
|
width: 70px; |
|
} |
|
@media (max-width: 480px) { |
|
#affix.affix, |
|
#affix.affix-bottom { |
|
width: 60px; |
|
} |
|
}
|
|
|