Guest User

Untitled

a guest
Mar 22nd, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.84 KB | None | 0 0
  1. @media only screen and (max-width: 767px){
  2.     #logo{
  3.         display: none!important;
  4.     }
  5.     #header-leaderboard{
  6.         display: block!important;
  7.     }              
  8. }
  9.  
  10. @media only screen and (max-width: 768px) and (min-width: 480px){
  11.     #logo{
  12.         display: none!important;
  13.     }  
  14.     #header-leaderboard{
  15.         display: block!important;
  16.     }          
  17. }
  18.  
  19. @media only screen and (max-width: 960px) and (min-width: 768px) {
  20.     #logo{
  21.         display: none!important;
  22.     }
  23.     #header-leaderboard{
  24.         display: block!important;
  25.     }
  26. }
  27.  
  28. .menu-logo a:hover{
  29.     background: inherit!important;
  30. }
  31.  
  32. .sticky-wrapper.is-sticky .menu-logo{
  33.     display: inline-block!important;
  34.     float: left;
  35. }
  36.  
  37. .sticky-wrapper.is-sticky .menu-logo a{
  38.     padding: 10px;
  39. }
  40.  
  41. .sticky-wrapper.is-sticky .menu-mobile .menu-logo,
  42. .menu-mobile .menu-logo{
  43.     display: block!important;
  44.     text-align: center;
  45.     width: 100%;
  46. }
Add Comment
Please, Sign In to add comment