Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. body {
  2. margin: 0;
  3. font-family: 'Lato', sans-serif;
  4. }
  5.  
  6. .mobilemenu {
  7. height: 0%;
  8. width: 100%;
  9. position: fixed;
  10. z-index: 1;
  11. top: 0;
  12. left: 0;
  13. background-color: rgb(0,0,0);
  14. background-color: rgba(0,0,0, 0.9);
  15. overflow-y: hidden;
  16. transition: 0.5s;
  17. }
  18.  
  19. .mobilemenu-content {
  20. position: relative;
  21. top: 25%;
  22. width: 100%;
  23. text-align: center;
  24. margin-top: 30px;
  25. }
  26.  
  27. .mobilemenu a {
  28. padding: 8px;
  29. text-decoration: none;
  30. font-size: 36px;
  31. color: #818181;
  32. display: block;
  33. transition: 0.3s;
  34. }
  35.  
  36. .mobilemenu a:hover, .mobilemenu a:focus {
  37. color: #f1f1f1;
  38. }
  39.  
  40. .mobilemenu .closebtn {
  41. position: absolute;
  42. top: 20px;
  43. right: 45px;
  44. font-size: 60px;
  45. }
  46.  
  47. @media screen and (max-height: 450px) {
  48. .mobilemenu {overflow-y: auto;}
  49. .mobilemenu a {font-size: 20px}
  50. .mobilemenu .closebtn {
  51. font-size: 40px;
  52. top: 15px;
  53. right: 35px;
  54. }
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement