Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. .crazy-layout {
  2. display:flex;
  3. flex-direction: column;
  4. width: 960px;
  5. .row {
  6. display: flex;
  7. flex-direction: row;
  8. .row--sub {
  9. flex-grow: 1;
  10. justify-content: center;
  11. align-items: center;
  12. display: flex;
  13. height: 100px;
  14. .col {
  15. background: aqua;
  16. }
  17. }
  18. .col {
  19. background: aqua;
  20. justify-content: center;
  21. align-items: center;
  22. display: flex;
  23. height: 100px;
  24. margin: 10px;
  25. flex-grow: 1;
  26. }
  27. }
  28. .row:nth-of-type(4) {
  29. flex-wrap: wrap;
  30. .col:nth-of-type(3){
  31. min-width: 960px - 20px; // czyli 100% ustawionej przeze mnie szerokosci kontenera - 20px margin
  32. }
  33. }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement