-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
85 lines (74 loc) · 1.31 KB
/
Copy pathstyle.css
File metadata and controls
85 lines (74 loc) · 1.31 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
body{
font-family: 'Poppins', sans-serif;
padding:0;
margin:0;
background-color: #2a2929;
}
input{
width: 80%;
height: 35px;
padding-left: 20px;
font-size: 15px;
border: 1px solid #ddd;
margin: 15px;
border-radius: 3px;
}
.container-mobile {
display: flex;
flex-direction: column;
max-width: 375px;
height: 740px;
margin: 50px auto;
/* padding: 20px; */
background-color: #f2f2f2;
border-radius: 15px;
border: solid 10px #0c0c0c;
}
.searchbar{
width: 100%;
background: #fff159;
display: flex;
flex-flow: row;
align-items: center;
justify-content: center;
position: relative;
}
.logo {
width: 60px;
padding: 1rem;
/* margin: 1rem; */
cursor: pointer;
}
.item-name{
margin-left:15px;
}
.content {
padding: 13px;
}
#product-list{
display: none;
width: 68%;
list-style-type: none;
margin:0;
padding:0;
position: absolute;
top: 58px;
padding-left: 91px;
}
#product-list li a{
display: flex;
align-items: center;
text-decoration: none;
font-size:18px;
color: black;
border: 1px solid #ddd;
background: #f6f6f6;
padding: 12px;
}
#product-list li a:hover{
background: #eee;
}
h1, p{
/* margin-left: 4%; */
text-align: center;
}