search.less 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. // Search forum
  2. // ------------------------
  3. .search-resume {
  4. .muted {
  5. color: lighten(@gray, 15%);
  6. a {
  7. color: @textColor;
  8. }
  9. }
  10. }
  11. .search-results {
  12. .results-list {
  13. .result {
  14. border-bottom: 1px solid darken(@bodyBackground, 5%);
  15. margin-bottom: (@baseLineHeight / 2);
  16. padding-bottom: (@baseLineHeight / 2);
  17. h3 {
  18. margin: 0px;
  19. line-height: @baseLineHeight;
  20. a:link, a:visited {
  21. color: @gray;
  22. font-weight: normal;
  23. font-size: @baseFontSize * 1.3;
  24. text-decoration: underline;
  25. }
  26. a:hover, a:active {
  27. color: @textColor;
  28. }
  29. }
  30. .post-extra {
  31. margin: 0px;
  32. color: @grayLight;
  33. font-size: @baseFontSize * 0.8;
  34. line-height: @baseLineHeight;
  35. a {
  36. color: @textColor;
  37. }
  38. }
  39. .post-preview {
  40. margin: 0px;
  41. color: @textColor;
  42. font-size: @baseFontSize * 1.1;
  43. line-height: @baseLineHeight;
  44. strong {
  45. color: @red;
  46. }
  47. }
  48. }
  49. }
  50. }