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.

results.scss 627B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .results-container {
  2. margin: auto;
  3. max-width: 800px;
  4. padding-bottom: 1em;
  5. }
  6. .results__subheader {
  7. border-bottom: 1px solid black;
  8. margin: 1.5em 0;
  9. padding: 5px 0;
  10. }
  11. .results__result {
  12. background: #efefef;
  13. border: 1px solid black;
  14. border-radius: 5px;
  15. margin: 1em 0;
  16. padding: 0.5em;
  17. }
  18. .results__result.threads .result__info {
  19. margin-bottom: 0;
  20. }
  21. .result__info {
  22. display: flex;
  23. font-size: 12px;
  24. justify-content: space-between;
  25. @media(max-width: 500px) {
  26. flex-direction: column;
  27. span {
  28. display: inline-block;
  29. margin: 5px 0;
  30. }
  31. }
  32. }
  33. .btn--prev {
  34. margin-right: 1em;
  35. }