Advertisement
Guest User

Untitled

a guest
Jan 9th, 2024
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. @media screen and (max-width: 767px) {
  2. .site_logo {
  3. max-width: 300px;
  4. max-height: 300px;
  5. }
  6. .board_list {
  7. display: grid;
  8. justify-content: center;
  9. }
  10. .board_list_column:nth-child(1) {
  11. grid-column: 1 / span 2;
  12. }
  13. .board_list_column:nth-child(2) {
  14. grid-column: 1 / span 2;
  15. }
  16. .board_list_column:nth-child(3) {
  17. grid-column: 1 / span 1;
  18. }
  19. .board_list_column:nth-child(4) {
  20. grid-column: 2 / span 1;
  21. }
  22. .board_list_column:nth-child(5) {
  23. grid-column: 1 / span 2;
  24. }
  25. }
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement