1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- // Search forum
- // ------------------------
- .search-suggestion {
- overflow: auto;
- p, form {
- float: left;
- }
- .lead {
- color: lighten(@gray, 15%);
- }
- form {
- .btn-link {
- margin-top: 1px;
- color: @bluePale;
- font-size: @baseFontSize * 1.5;
- font-style: italic;
- font-weight: 200;
- text-decoration: underline;
- &:hover, &:active {
- color: @bluePale;
- text-decoration: underline !important;
- }
- }
- }
- }
- .search-resume {
- .muted {
- color: lighten(@gray, 15%);
- a {
- color: @textColor;
- }
- }
- }
- .search-results {
- .results-list {
- .result {
- border-bottom: 1px solid darken(@bodyBackground, 5%);
- margin-bottom: (@baseLineHeight / 2);
- padding-bottom: (@baseLineHeight / 2);
- h3 {
- margin: 0px;
- line-height: @baseLineHeight;
- a:link, a:visited {
- color: @gray;
- font-weight: normal;
- font-size: @baseFontSize * 1.3;
- text-decoration: underline;
- }
- a:hover, a:active {
- color: @textColor;
- }
- }
- .post-extra {
- margin: 0px;
- color: @grayLight;
- font-size: @baseFontSize * 0.8;
- line-height: @baseLineHeight;
- a {
- color: @textColor;
- }
- }
- .post-preview {
- margin: 0px;
- color: @textColor;
- font-size: @baseFontSize * 1.1;
- line-height: @baseLineHeight;
- strong {
- color: @red;
- }
- }
- }
- }
- }
|