species.component.scss 466 B

123456789101112131415161718192021222324252627282930313233
  1. .species-container {
  2. width: 800px;
  3. height: 100%;
  4. overflow: auto;
  5. margin: auto;
  6. border: 1px solid black;
  7. padding: 2rem;
  8. border-radius: 10px;
  9. }
  10. .title {
  11. text-align: center;
  12. font-size: 2em;
  13. font-weight: bold;
  14. margin: 0 0 2rem 0;
  15. }
  16. .description {
  17. }
  18. .abilities {
  19. margin-top: 2rem;
  20. }
  21. .ability-name {
  22. font-size: 1.25rem;
  23. font-weight: 600;
  24. text-align: center;
  25. }
  26. .ability-description {
  27. margin-top: 1rem;
  28. }