Guest User

Untitled

a guest
Feb 13th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. #menu {
  2. width: 100vw;
  3. position: fixed;
  4. top: 0px;
  5. text-align: center;
  6. }
  7.  
  8. ul {
  9. list-style: none;
  10. }
  11.  
  12. .container {
  13. display: flex;
  14. }
  15.  
  16. .container>li {
  17. flex: 1;
  18. }
  19.  
  20. @media all and (max-width: 600px) {
  21. .container {
  22. flex-wrap: wrap;
  23. }
  24. .container>li {
  25. flex-basis: 50%;
  26. }
  27. }
  28.  
  29. @media all and (max-width: 400px) {
  30. .container>li {
  31. flex-basis: 100%;
  32. }
  33. }
  34.  
  35. .language {
  36. z-index: auto;
  37. }
  38.  
  39. .language {
  40. position: absolute;
  41. left: 0;
  42. top: 0;
  43. width: 100%;
  44. }
Add Comment
Please, Sign In to add comment