-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
84 lines (72 loc) · 1.17 KB
/
main.css
File metadata and controls
84 lines (72 loc) · 1.17 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 100%;
height: 100vh;
background: rgb(240, 239, 243);
margin: auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.container {
width: 375px;
height: 520px;
background: #fff;
border-radius: 15px;
box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.06);
padding: 20px;
overflow-y: scroll;
}
.container::-webkit-scrollbar {
display: none;
}
.container form {
width: 100%;
border: 1px solid rgb(82, 74, 235);
border-radius: 4px;
display: flex;
flex-direction: row;
align-items: center;
}
.container form input {
border: none;
outline: none;
box-shadow: none;
width: 100%;
font-size: 16px;
padding: 8px 10px;
}
.container form i {
padding-left: 8px;
}
.productList {
padding: 20px 0;
}
.product {
display: flex;
align-items: center;
flex-direction: row;
cursor: pointer;
margin: 32px 0;
}
.product img {
width: 70px;
height: 70px;
object-fit: cover;
border-radius: 5px;
}
.productDetails {
padding-left: 15px;
}
.productDetails h2 {
font-size: 20px;
color: #1d1d1d;
}
.productDetails h3 {
font-size: 18px;
}