Advertisement
Guest User

Untitled

a guest
Oct 21st, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. /* Extra Small Devices, Phones */
  2. @media only screen and (max-width : 479px) {
  3. .main_menu ul {
  4. display: none;
  5. width:100%;
  6. background-color: #9d8a71;
  7. }
  8.  
  9. .main_menu ul li {
  10. display: block;
  11. }
  12. }
  13.  
  14. /* Custom, iPhone Retina */
  15. @media only screen and (max-width : 320px) {
  16.  
  17. }
  18.  
  19.  
  20. /*========== Mobile First Method ==========*/
  21.  
  22. /* Custom, iPhone Retina */
  23. @media only screen and (min-width : 320px) {
  24.  
  25. }
  26.  
  27. /* Extra Small Devices, Phones */
  28. @media only screen and (min-width : 480px) {
  29. .main_menu_button {
  30. display: none;
  31. }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement