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 592B

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