common.css 389 B

123456789101112131415161718192021222324252627282930
  1. .FlexColumn {
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. justify-content: center;
  6. }
  7. .FlexRow {
  8. display: flex;
  9. flex-direction: row;
  10. align-items: center;
  11. justify-content: center;
  12. }
  13. body {
  14. padding: 0;
  15. margin: auto 0;
  16. }
  17. .container {
  18. width:100%;
  19. padding: 0;
  20. margin: auto 0;
  21. }
  22. .img {
  23. width:100%;
  24. margin: auto 0;
  25. }