Update license headers
[vid.git] / vid-app-common / src / main / webapp / app / vid / styles / search.css
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 .search-container {
22     display: flex;
23     background: #FFFFFF;
24     border: 1px solid #D2D2D2;
25     border-radius: 2px;
26     width: 500px;
27 }
28 .search-container .search-input,
29 .search-container .search-input:focus,
30 .search-container .search-input:hover{
31     border: none;
32     padding: 10px;
33     display: inline-block;
34     width: 458px;
35     font-style: italic;
36 }
37
38 .search-container .search-input::placeholder {
39     text-align: left;
40 }
41
42 .search-container .search-icon {
43     display: inline-block;
44     margin: auto;
45     width: 16px;
46     height: 16px;
47 }
48
49 .search-container .search-icon svg path {
50     fill: #5A5A5A;
51 }
52
53 .search-container .search-icon:hover path {
54     fill: #009FDB;
55 }
56
57