Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. .container {
  2. margin: 0 auto;
  3. width: 90%;
  4.  
  5. display: flex;
  6. align-items: center;
  7. }
  8.  
  9. @media (min-width: 320px) and (max-width: 720px) {
  10. .headerList {
  11. display: none;
  12. }
  13. }
  14.  
  15. .header{
  16. background: #fff;
  17. padding: 20px 0;
  18.  
  19. }
  20.  
  21. .header-title{
  22. flex-grow: 2;
  23. }
  24.  
  25. .header-titleImg {
  26. width: 250px;
  27. }
  28.  
  29. @media (min-width: 721px) {
  30. .headerList{
  31. display: flex;
  32. justify-content: space-between;
  33. flex-grow: 1;
  34. }
  35.  
  36. .headerBurger {
  37. display: none;
  38. }
  39.  
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement