Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. @media screen and (min-device-width: 320px) and (max-device-width: 768px) and (orientation:portrait){
  2. #mobile-menu
  3. {
  4. display: inline;
  5. }
  6. #normal-menu
  7. {
  8. display: none;
  9. }
  10.  
  11. /* MOBILE NAV */
  12. nav
  13. {
  14. font-family: arial;
  15. }
  16. nav a
  17. {
  18. margin-left: 4em;
  19. margin-right: 4em;
  20.  
  21. display: block;
  22. color: rgb(45, 119, 239);
  23. padding: 0.5em 1em;
  24. text-decoration: none;
  25. border: 1px solid black;
  26. background-color: rgb(185,185,185);
  27. }
  28. nav a:hover
  29. {
  30. background-color: green;
  31. }
  32.  
  33. /* MOBILE DIV */
  34. div
  35. {
  36. margin-left: 5em;
  37. margin-right: 5em;
  38. padding: 1em;
  39. background-color: rgba(255,255,255,0.5);
  40. font-size: 0.8em;
  41. font-family: arial;
  42. border-radius: 40px 0px 40px 0px;
  43. border-color: rgb(0,0,0);
  44. border: 1px solid;
  45. }
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement