forked from pitambartiwari/Cafe-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmy.css
More file actions
35 lines (31 loc) · 615 Bytes
/
my.css
File metadata and controls
35 lines (31 loc) · 615 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
*{
margin: 0%;
padding: 0%;
}
.search{
--padding:24px;
width: max-content;
display: flex;
align-items: center;
padding: var(--padding);
border-radius: 28px;
background-color: #f6f6f6;
transition: box-shadow 0.25s;
}
.search:focus-within{
box-shadow: 0 0 2px rgba(0, 0, 0, 0.75);
}
.search-input{
font-size: 16px;
font-family: 'lexend', sans-serif;
color: #333;
margin-left: var(--padding);
outline: none;
border: none;
background: transparent;
width: 300px;
}
.search-input::placeholder,
.search-icon{
color: rgba(0, 0, 0, 0.25);
}