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