-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSearch-box.css
More file actions
53 lines (48 loc) · 879 Bytes
/
Search-box.css
File metadata and controls
53 lines (48 loc) · 879 Bytes
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
48
49
50
51
52
53
#search-box{
margin: 0;
padding: 0;
background: #e84118;
height: 100vh;
position: relative;
}
.Search-Box{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #2f3640;
height: 40px;
border-radius: 40px;
padding: 10px;
}
.Search-Box:hover > .search-txt{
width: 240px;
padding: 0 6px;
}
.Search-Box:hover > .search-btn{
background: #fff;
}
.search-btn{
color: #e84118;
float: right;
width: 40px;
height: 40px;
border-radius: 50%;
background: #2f3640;
display: flex;
justify-content: center;
align-items: center;
transition: 0.4s;
}
.search-txt{
border: none;
background: none;
outline: none;
float: left;
padding: 0;
color: #fff;
font-size: 16px;
transition: 0.4s;
line-height: 40px;
width: 0px;
}