-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (52 loc) · 975 Bytes
/
style.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
body {
background-color: #cccccc;
height: 500px;
}
.container {
max-width: 600px;
margin-top: 50px;
}
.autoCompleteInput {
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
}
.resultContainer {
background-color: #fff;
}
.productItemContainer {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 0 10px;
height: 50px;
border-bottom: 1px solid lightgray;
}
.productName {
font-size: 14px;
width: 80%;
}
.productImage {
height: 80%;
}
.productDetailsItem {
background-color: white;
display: block;
border: 1px solid gainsboro;
margin: auto;
margin-top: 10px;
max-width: 500px;
border-radius: 5px;
}
.enterProductName {
padding: 20px;
font-weight: 500;
font-size: 1.5rem;
}
.enterProductImage {
height: 60%;
width: 40%;
padding: 10px;
margin-left: 150px;
/* margin-top: 10px; */
}