forked from HarshikaAdarsh/Try-you
-
Notifications
You must be signed in to change notification settings - Fork 0
/
searchtool.css
47 lines (41 loc) · 937 Bytes
/
searchtool.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*search bar*/
.search-wrapper {
width: 95%;
margin: 0 auto;
}
#search-container {
margin: 1em 0;
border: none;
outline: none;
border-left: none;
border-right: none;
border-top: none;
}
#search-container input {
background-color: transparent;
width: 40%;
border-bottom: 2px solid #110f29;
border-left: none;
border-right: none;
border-top: none;
padding: 1em 0.3em;
}
#search-container input:focus {
border-bottom-color: rgb(229, 190, 190) ;
}
#search-container button {
padding: 1em 2em;
margin-left: 1em;
background-color: rgb(229, 190, 190);
color:aliceblue;
border-radius: 5px;
margin-top: 0.5em;
}
.search-button-value {
border: 2px rgb(229, 190, 190) ;
padding: 1em 2.2em;
border-radius: 3em;
background-color: transparent;
color: rgb(229, 190, 190);
cursor: pointer;
}