Advertisement
Guest User

Untitled

a guest
Nov 15th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. if (window.location.pathname === '/blog/') {
  2. $('article.post').css({
  3. 'box-shadow': '0 0 5px -1px rgba(0, 0, 0, 0.25)',
  4. '-webkit-box-shadow': '0 0 5px -1px rgba(0, 0, 0, 0.25)',
  5. });
  6.  
  7. $('.main').addClass('blog-page-decor');
  8. }
  9.  
  10. if (window.location.pathname === '/product/') {
  11. $('.main').css('background-color', 'black');
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement