-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
87 lines (74 loc) · 1.49 KB
/
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Source Sans Pro', sans-serif;
}
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-color: #fff;
border-radius: 15px;
box-shadow: 4px 4px 30px rgb(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;
font-weight: 600;
padding: 8px 10px;
}
.container form i{
padding-left: 10px;
}
.product-list{
padding: 20px 0;
}
.product{
display: flex;
align-items: center;
cursor: pointer;
padding-bottom: 15px;
}
.product img{
width: 70px;
height: 70px;
object-fit: cover;
border-radius: 5px;
}
.product .p-details{
padding-left: 15px;
}
.product .p-details h2{
font-size: 20px;
color: #1d1d1d;
}
.product .p-details h3{
font-size: 20px;
}