results.less 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. .result_header {
  2. margin-top: 0px;
  3. margin-bottom: 2px;
  4. font-size: 16px;
  5. .favicon {
  6. margin-bottom:-3px;
  7. }
  8. a {
  9. color: @black;
  10. text-decoration: none;
  11. &:hover{
  12. color: @blue;
  13. }
  14. &:visited{
  15. color: @violet;
  16. }
  17. .highlight {
  18. background-color: @dim-gray;
  19. // Chrome hack: bold is different size than normal
  20. // https://stackoverflow.com/questions/20713988/weird-text-alignment-issue-in-css-when-bolded-lucida-sans
  21. }
  22. }
  23. }
  24. .result-content {
  25. margin-top: 2px;
  26. margin-bottom: 0;
  27. word-wrap: break-word;
  28. color: @dark-gray;
  29. font-size: 13px;
  30. .highlight {
  31. font-weight:bold;
  32. }
  33. }
  34. .result-abstract {
  35. margin-top: 0.5em;
  36. margin-bottom: 0.8em;
  37. }
  38. .external-link {
  39. color: @dark-green;
  40. font-size: 12px;
  41. margin-bottom: 15px;
  42. a {
  43. margin-right: 3px;
  44. }
  45. }
  46. // default formating of results
  47. .result-default, .result-code, .result-torrent, .result-videos, .result-map {
  48. clear: both;
  49. padding: 2px 4px;
  50. &:hover{
  51. background-color: @dim-gray;
  52. }
  53. }
  54. // image formating of results
  55. .result-images {
  56. float: left !important;
  57. width: 24%;
  58. margin: .5%;
  59. a {
  60. display: block;
  61. width: 100%;
  62. background-size: cover;
  63. }
  64. }
  65. .img-thumbnail {
  66. margin: 5px;
  67. max-height: 128px;
  68. min-height: 128px;
  69. }
  70. // video formating of results
  71. .result-videos {
  72. clear: both;
  73. hr{
  74. margin: 5px 0 15px 0;
  75. }
  76. .collapse{
  77. width: 100%;
  78. }
  79. .in{
  80. margin-bottom: 8px;
  81. }
  82. }
  83. // torrent formating of results
  84. .result-torrent {
  85. clear: both;
  86. b{
  87. margin-right: 5px;
  88. margin-left: 5px;
  89. }
  90. .seeders{
  91. color: @green;
  92. }
  93. .leechers{
  94. color: @red;
  95. }
  96. }
  97. .result-metadata {
  98. clear: both;
  99. margin: 1em;
  100. td {
  101. padding-right: 1em;
  102. color: @gray;
  103. }
  104. td:first-of-type {
  105. color: @dark-gray;
  106. }
  107. }
  108. // map formating of results
  109. .result-map {
  110. clear: both;
  111. }
  112. // code formating of results
  113. .result-code {
  114. clear: both;
  115. .code-fork, .code-fork a{
  116. color: @dark-gray;
  117. }
  118. }
  119. // suggestion
  120. .suggestion_item {
  121. margin: 2px 5px;
  122. max-width: 100%;
  123. .btn {
  124. max-width: 100%;
  125. white-space: normal;
  126. word-wrap: break-word;
  127. text-align: left;
  128. }
  129. }
  130. // download result
  131. .result_download {
  132. margin-right: 5px;
  133. }
  134. // page forward, backward
  135. #pagination {
  136. margin-top: 30px;
  137. padding-bottom: 60px;
  138. }
  139. .label-default {
  140. color: @gray;
  141. background: transparent;
  142. }
  143. .result .text-muted small {
  144. word-wrap: break-word;
  145. }
  146. .modal-wrapper {
  147. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  148. }
  149. .modal-wrapper {
  150. background-clip: padding-box;
  151. background-color: #fff;
  152. border: 1px solid rgba(0, 0, 0, 0.2);
  153. border-radius: 6px;
  154. box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  155. outline: 0 none;
  156. position: relative;
  157. }