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