env_pages.css 629 B

1234567891011121314151617181920212223242526272829303132333435
  1. .env-grid {
  2. display: flex;
  3. flex-wrap: wrap;
  4. justify-content: center;
  5. width: 100%;
  6. box-sizing: border-box;
  7. }
  8. .env-grid__cell {
  9. display: flex;
  10. flex-direction: column;
  11. width: 180px;
  12. height: 180px;
  13. padding: 10px;
  14. }
  15. .cell__image-container {
  16. display: flex;
  17. height: 148px;
  18. justify-content: center;
  19. }
  20. .cell__image-container img {
  21. max-height: 100%;
  22. }
  23. .cell__title {
  24. display: flex;
  25. justify-content: center;
  26. text-align: center;
  27. align-items: flex-end;
  28. height: 32px;
  29. line-height: 16px;
  30. }
  31. .more-btn {
  32. width: 240px;
  33. margin: 12px auto;
  34. display: block;
  35. }