Advertisement
srikat

Untitled

Dec 2nd, 2017
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. @media only screen and (max-width: 1200px) {
  2.  
  3. .js .site-header nav {
  4. display: none;
  5. position: relative;
  6. text-align: center;
  7. }
  8.  
  9. .header-image .site-header .wrap {
  10. background-position: left top;
  11. position: relative;
  12. }
  13.  
  14. .nav-header {
  15. clear: left;
  16. }
  17.  
  18. .site-header .menu-toggle {
  19. display: block;
  20. visibility: visible;
  21. background-color: transparent;
  22. width: auto;
  23. position: absolute;
  24. right: 0;
  25. top: 22px;
  26. }
  27.  
  28. .dashicons-before:before {
  29. width: 40px;
  30. height: 40px;
  31. font-size: 40px;
  32. }
  33.  
  34. .header-image .site-header .wrap {
  35. padding: 12px 0 7px 0;
  36. }
  37.  
  38. }
  39.  
  40. @media only screen and (max-width: 1023px) {
  41.  
  42. .site-header .menu-toggle {
  43. top: 16px;
  44. }
  45.  
  46. .dashicons-before:before {
  47. width: 30px;
  48. height: 30px;
  49. font-size: 30px;
  50. }
  51.  
  52. .menu-toggle:before,
  53. .menu-toggle.activated:before {
  54. margin-right: 0;
  55. }
  56.  
  57. }
  58.  
  59. @media only screen and (max-width: 800px) {
  60.  
  61. .header-image .site-header .wrap {
  62. background-position: 6% top;
  63. }
  64.  
  65. .site-header .menu-toggle {
  66. right: 6%;
  67. }
  68.  
  69. }
  70.  
  71. @media only screen and (max-width: 410px) {
  72.  
  73. .site-header {
  74. overflow: hidden;
  75. }
  76.  
  77. .header-image .site-header .wrap {
  78. background-size: 200px 40px;
  79. }
  80.  
  81. .dashicons-before:before {
  82. width: 20px;
  83. height: 20px;
  84. font-size: 20px;
  85. }
  86.  
  87. .site-header .menu-toggle {
  88. top: 10px;
  89. }
  90.  
  91. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement