Guest User

Untitled

a guest
Jan 17th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.49 KB | None | 0 0
  1. /* SEARCH MODULE */
  2. .search-module {
  3. position: relative;
  4. font-size: 1.1em;
  5. font-weight: 300;
  6. display: flex;
  7. flex-direction: column;
  8. }
  9. .zoom-before-input {
  10. color: #ababab;
  11. font-size: 1.3em;
  12. }
  13. .input-holder, .odswidget-timerange__from, .odswidget-timerange__to {
  14. display: flex;
  15. align-content: space-evenly;
  16. border: 1px solid #e4e4e4;
  17. padding: 11px;
  18. border-radius: 3px;
  19. box-shadow: 1px 1px 5px gainsboro;
  20. background-color: white;
  21. z-index: 2;
  22. }
  23. .input-holder input, .odswidget-timerange__from input, .odswidget-timerange__to input {
  24. border: none;
  25. width: 100%;
  26. margin-left: 8px;
  27. }
  28. .input-holder input:focus, .odswidget-timerange__from input:focus, .odswidget-timerange__to input:focus {
  29. outline: 0;
  30. }
  31. .clear-button {
  32. font-size: 1.3em;
  33. }
  34.  
  35. .display-results-holder {
  36. padding-bottom: 15px;
  37. border: 1px solid #e4e4e4;
  38. border-top: none;
  39. position: absolute;
  40. background: white;
  41. z-index: 3;
  42. width: 100%;
  43. top: 57px;
  44. }
  45. .display-results {
  46. padding: 0px 25px 20px 25px;
  47. min-height: 90px;
  48. max-height: 260px;
  49. overflow: scroll;
  50. }
  51. .display-results__clear-button {
  52. position: absolute;
  53. right: 5px;
  54. z-index: 2;
  55. }
  56. .display-results h2 {
  57. color: #0ABFBF;
  58. font-weight: 400;
  59. margin-top: 10px;
  60. font-size: 1.1em;
  61. }
  62. .results {
  63. display: flex;
  64. flex-direction: column;
  65. }
  66. .result {
  67. margin: 2px 0px;
  68. padding: 0px 8px;
  69. display:flex;
  70. }
  71. .result:hover {
  72. background-color: #0cbfbf24;
  73. }
  74. .result a {
  75. color: #424242;
  76. text-decoration: none;
  77. }
  78.  
  79. .odswidget-infinite-scroll-results__message-container {
  80. height: inherit;
  81. max-height: 100px;
  82. }
  83. .odswidget-infinite-scroll-results__no-results-message {
  84. font-style: italic;
  85. font-size: 0.8em;
  86. }
  87.  
  88. input.checkeur {
  89. display:none;
  90. }
  91. input.checkeur:checked ~ label.checkifchecked:after {
  92. content: "\f00c";
  93. font: normal normal normal 14px/1 FontAwesome;
  94. margin: 0px 5px;
  95. }
  96. input.checkeur:checked ~ label.checkifchecked {
  97. color: green;
  98. }
  99. .result label {
  100. margin-bottom: inherit;
  101. width: 100%;
  102. font-size: 0.8em;
  103. }
  104. .result label:hover {
  105. cursor: pointer;
  106. }
  107.  
  108. /* CATALOG SEARCH */
  109. .dataset-title {
  110. color: black;
  111. }
  112. .dataset-subblock {
  113. display: flex;
  114. justify-content: space-between;
  115. }
  116. .dataset-portal {
  117. font-size: smaller;
  118. color: grey;
  119. }
  120. .centralstore-catalog-card__records {
  121. font-size: small;
  122. }
  123. .centralstore-catalog-card__records_count {
  124. color: #0ABFBF;
  125. }
  126.  
  127. .ods-tooltip {
  128. max-width: 400px;
  129. }
Add Comment
Please, Sign In to add comment