search.less 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. // Search forum
  2. // ------------------------
  3. .search-suggestion {
  4. overflow: auto;
  5. p, form {
  6. float: left;
  7. }
  8. .lead {
  9. color: lighten(@gray, 15%);
  10. }
  11. form {
  12. .btn-link {
  13. margin-top: 1px;
  14. color: @bluePale;
  15. font-size: @baseFontSize * 1.5;
  16. font-style: italic;
  17. font-weight: 200;
  18. text-decoration: underline;
  19. &:hover, &:active {
  20. color: @bluePale;
  21. text-decoration: underline !important;
  22. }
  23. }
  24. }
  25. }
  26. .search-resume {
  27. .muted {
  28. color: lighten(@gray, 15%);
  29. a {
  30. color: @textColor;
  31. }
  32. }
  33. }
  34. .search-results {
  35. .results-list {
  36. .result {
  37. border-bottom: 1px solid darken(@bodyBackground, 5%);
  38. margin-bottom: (@baseLineHeight / 2);
  39. padding-bottom: (@baseLineHeight / 2);
  40. h3 {
  41. margin: 0px;
  42. line-height: @baseLineHeight;
  43. a:link, a:visited {
  44. color: @gray;
  45. font-weight: normal;
  46. font-size: @baseFontSize * 1.3;
  47. text-decoration: underline;
  48. }
  49. a:hover, a:active {
  50. color: @textColor;
  51. }
  52. }
  53. .post-extra {
  54. margin: 0px;
  55. color: @grayLight;
  56. font-size: @baseFontSize * 0.8;
  57. line-height: @baseLineHeight;
  58. a {
  59. color: @textColor;
  60. }
  61. }
  62. .post-preview {
  63. margin: 0px;
  64. color: @textColor;
  65. font-size: @baseFontSize * 1.1;
  66. line-height: @baseLineHeight;
  67. strong {
  68. color: @red;
  69. }
  70. }
  71. }
  72. }
  73. }