You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
712B

  1. .themes-container {
  2. padding: 3rem;
  3. img {
  4. max-width: 100%;
  5. }
  6. }
  7. .themes {
  8. display: flex;
  9. flex-wrap: wrap;
  10. justify-content: space-between;
  11. .theme {
  12. width: 45%;
  13. text-decoration: none;
  14. cursor: pointer;
  15. margin-bottom: 2rem;
  16. border-bottom: none;
  17. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  18. padding: 10px;
  19. img {
  20. width: 100%;
  21. height: 90%;
  22. }
  23. span {
  24. display: block;
  25. text-align: center;
  26. font-size: 1.1rem;
  27. }
  28. }
  29. }
  30. .theme-info {
  31. display: flex;
  32. align-items: flex-start;
  33. .thumb {
  34. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07);
  35. width: 400px;
  36. margin-right: 2rem;
  37. }
  38. h1, p {
  39. margin: 0;
  40. }
  41. padding: 1rem;
  42. }