Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2020
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4. .antraste {
  5. display: flex;
  6. flex-direction: column;
  7. flex-wrap: nowrap;
  8. justify-content: center;
  9. align-items: center;
  10. align-content: center;
  11. background-color: #A52A2A;
  12. height: 70px;
  13. color: white;
  14.  
  15. }
  16. .poraste {
  17. display: flex;
  18. flex-direction: column;
  19. flex-wrap: nowrap;
  20. justify-content: center;
  21. align-items: center;
  22. align-content: center;
  23. background-color: #A52A2A;
  24. height: 70px;
  25. color: white;
  26.  
  27. }
  28. .flex-grid {
  29. display: flex;
  30. }
  31. .col {
  32. background-color: blue;
  33. height: 200px;
  34. flex: 1;
  35. align-items: flex-start;
  36. align-content: center;
  37. justify-content: center;
  38. }
  39. .col1 {
  40. background-color: yellow;
  41. height: 200px;
  42. flex: 1;
  43. align-items: flex-start;
  44. align-content: center;
  45. justify-content: center;
  46. }
  47. .col2 {
  48. background-color: orange;
  49. height: 200px;
  50. flex: 1;
  51. align-items: flex-start;
  52. align-content: center;
  53. }
  54. .col3 {
  55. background-color: purple;
  56. height: 200px;
  57. flex: 1;
  58. align-items: flex-start;
  59. align-content: center;
  60. }
  61. .col4 {
  62. background-color: yellow;
  63. height: 200px;
  64. flex: 1;
  65. align-items: flex-start;
  66. align-content: center;
  67. }
  68. .col5 {
  69. background-color: orange;
  70. height: 200px;
  71. flex: 1;
  72. align-items: flex-start;
  73. align-content: center;
  74. }
  75. .col6 {
  76. background-color: purple;
  77. height: 200px;
  78. flex: 1;
  79. align-items: flex-start;
  80. align-content: center;
  81. }
  82. @media (max-width: 400px) {
  83. .flex-grid {
  84. display: block;
  85. }
  86. }
  87. .flex-grid-thirds {
  88. display: flex;
  89. justify-content: space-between;
  90. }
  91. .flex-grid-thirds .col {
  92. width: 32%;
  93. }
  94. .skirtukas {
  95. display: flex;
  96. flex-direction: column;
  97. flex-wrap: nowrap;
  98. justify-content: center;
  99. align-items: center;
  100. align-content: center;
  101. background-color: #A52A2A;
  102. height: 100px;
  103. color: white;
  104.  
  105. }
  106. </style>
  107. </head>
  108. <body>
  109. <div class="antraste">Antraštė
  110. </div>
  111. <div class="flex-grid-thirds">
  112. <div class="col">BOX 1-1</div>
  113. <div class="col1">BOX 1-2</div>
  114. <div class="col2">BOX 1-3</div>
  115. <div class="col3">BOX 1-4</div>
  116. </div>
  117. <div class="skirtukas">Skirtukas
  118. </div>
  119. <div class="flex-grid-thirds">
  120. <div class="col4">BOX 2-1</div>
  121. <div class="col5">BOX 2-2</div>
  122. <div class="col6">BOX 2-3</div>
  123. </div>
  124. <div class="poraste">Poraštė
  125. </div>
  126. </body>
  127. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement