Andreu Huguet | feeba52 | 2019-09-16 13:43:16 +0200 | [diff] [blame] | 1 | select { |
avm99963 | db383ed | 2019-09-22 02:14:42 +0200 | [diff] [blame] | 2 | font-size: 18px; |
Andreu Huguet | feeba52 | 2019-09-16 13:43:16 +0200 | [diff] [blame] | 3 | height: 2em; |
| 4 | width: 80%; |
| 5 | } |
| 6 | |
| 7 | input[type="submit"] { |
avm99963 | db383ed | 2019-09-22 02:14:42 +0200 | [diff] [blame] | 8 | font-size: 18px; |
Andreu Huguet | feeba52 | 2019-09-16 13:43:16 +0200 | [diff] [blame] | 9 | height: 2em; |
avm99963 | db383ed | 2019-09-22 02:14:42 +0200 | [diff] [blame] | 10 | } |
Andreu | dd6cfb4 | 2019-09-22 19:52:39 +0200 | [diff] [blame] | 11 | |
| 12 | .md-google-search__metacontainer { |
| 13 | position: relative; |
| 14 | height: 48px; |
| 15 | width: 100%; |
| 16 | margin-bottom: 16px; |
| 17 | } |
| 18 | |
| 19 | .md-google-search__container { |
| 20 | display: block; |
| 21 | height: 48px; |
| 22 | width: 100%; |
| 23 | max-width: 720px; |
| 24 | white-space: nowrap; |
| 25 | } |
| 26 | |
| 27 | .md-google-search { |
| 28 | height: 48px; |
| 29 | background-color: rgba(245, 245, 245, 1); |
| 30 | border: 1px solid rgba(0, 0, 0, 0.2); |
| 31 | -webkit-border-radius: 4px; |
| 32 | border-radius: 4px; |
| 33 | max-width: 600px; |
| 34 | position: relative; |
| 35 | -webkit-transition: background-color 100ms ease-in, width 100ms ease-out; |
| 36 | transition: background-color 100ms ease-in, width 100ms ease-out; |
| 37 | } |
| 38 | |
| 39 | .md-google-search:focus-within { |
| 40 | border: 1px solid rgba(0, 0, 0, 0.45); |
| 41 | background-color: rgba(255, 255, 255, 1); |
| 42 | -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .2); |
| 43 | box-shadow: 0 1px 1px rgba(0, 0, 0, .2); |
| 44 | } |
| 45 | |
| 46 | .md-google-search__search-btn { |
| 47 | float: left; |
| 48 | background: none; |
| 49 | border: none; |
| 50 | opacity: .54; |
| 51 | outline: none; |
| 52 | padding: 0 4px; |
| 53 | line-height: 0; |
| 54 | color: #212121; |
| 55 | } |
| 56 | |
| 57 | .md-google-search__search-btn svg, .md-google-search__empty-btn svg { |
| 58 | padding: 7px; |
| 59 | margin: 4px; |
| 60 | } |
| 61 | |
| 62 | .md-google-search__field-container { |
| 63 | height: 46px; |
| 64 | padding: 0 11px; |
| 65 | margin-right: 48px; |
| 66 | } |
| 67 | |
| 68 | .md-google-search__field { |
| 69 | border: none; |
| 70 | font: normal 16px Roboto, sans-serif; |
| 71 | height: 24px; |
| 72 | outline: none; |
| 73 | padding: 11px 0 11px 16px; |
| 74 | width: 100%; |
| 75 | background: transparent; |
| 76 | box-sizing: unset; |
| 77 | } |
| 78 | |
| 79 | .md-google-search__empty-btn { |
| 80 | position: absolute; |
| 81 | right: 0; |
| 82 | top: 0; |
| 83 | background: none; |
| 84 | border: none; |
| 85 | opacity: .54; |
| 86 | outline: none; |
| 87 | padding: 0 4px; |
| 88 | line-height: 0; |
| 89 | color: #212121; |
| 90 | cursor: pointer; |
| 91 | } |
| 92 | |
| 93 | /** |
| 94 | * Search Box Autocomplete |
| 95 | */ |
| 96 | .autocomplete-container { |
| 97 | z-index: 110; |
| 98 | position: absolute; |
| 99 | top: Calc(100% + 2px); |
| 100 | left: 0; |
| 101 | width: 100%; |
| 102 | } |
| 103 | |
| 104 | .autocomplete-items { |
| 105 | display: block; |
| 106 | width: 100%; |
| 107 | max-width: 600px; |
| 108 | background-color: white; |
| 109 | color: black; |
| 110 | box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.258824), 0 2px 10px 0 |
| 111 | rgba(0, 0, 0, 0.156863) !important; |
| 112 | max-height: 510px; |
| 113 | overflow-y: auto; |
| 114 | } |
| 115 | |
| 116 | .autocomplete-item { |
| 117 | font-size: 16px; |
| 118 | padding: 12px 14px; |
| 119 | cursor: pointer; |
| 120 | } |
| 121 | |
| 122 | .autocomplete-item:hover, .autocomplete-active { |
| 123 | background: #eee; |
| 124 | } |
| 125 | |
| 126 | .autocomplete-grau-curs { |
| 127 | position: relative; |
| 128 | z-index: 120; |
| 129 | color: #222; |
| 130 | } |