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.

51 lines
668B

  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: 30%;
  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. }
  22. span {
  23. display: block;
  24. text-align: center;
  25. }
  26. }
  27. }
  28. .theme-info {
  29. display: flex;
  30. align-items: flex-start;
  31. .thumb {
  32. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07);
  33. width: 400px;
  34. margin-right: 2rem;
  35. }
  36. h1, p {
  37. margin: 0;
  38. }
  39. padding: 1rem;
  40. }