Advertisement
fahimmurshed

How to sticky sidebar in Astra theme?

Nov 7th, 2021
1,113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.60 KB | None | 0 0
  1. <!-- Would you please add this CSS under the Additional CSS tab? fahimm.com -->
  2. .sidebar-main {
  3.     drop-shadow(6 5px 3px rgba(9, 30, 66, .1)): ;
  4.     background: #fff;
  5.     box-shadow: 0 2px 10px #dadef1;
  6.     border-radius: 15px;
  7.     overflow: hidden;
  8.     transition: .4s;
  9.     box-sizing: border-box;
  10.     position: sticky;
  11. }
  12.  
  13. .sidebar-main:hover {
  14.     drop-shadow(6 5px 30px rgba(9, 30, 66, .24));
  15.     background: #fff;
  16.     box-shadow: 0 13px 10px #dadef1;
  17.     border-radius: 15px;
  18.     border: 1px dotted gray;    
  19.     overflow: hidden;
  20.     transition: .4s;
  21.     box-sizing: border-box;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement