-
Notifications
You must be signed in to change notification settings - Fork 0
/
image.css
94 lines (76 loc) · 1.43 KB
/
image.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
88
89
90
91
92
93
94
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family:sans-serif;
}
body{
background-color: #386d9c;
color: #fff;
}
h1{
text-align: center;
margin-top: 100px auto 50px;
font-weight: 600px;
}
#collection{
width: 90%;
max-width: 500px;
height: 80px;
background:#57d44e;
margin: 8px auto 0px;
display: flex;
align-items: center;
border-radius: 8px;
}
#inputs{
flex: 1;
height: 100%;
border: 0;
outline: 0;
background: transparent;
color: #fff;
font-size: 15px;
padding: 0px 10px;
}
.btn{
padding: 0px 30px;
height: 100%;
background:#50a166;
color: #fff;
font-size: 15px;
border-top-right-radius: 8px;
border-bottom-right-radius: 8px;
cursor: pointer;
border: 0;
outline: 0;
}
::placeholder{
color: #fff;
/* background: #dccee8d3; */
}
#more{
padding: 10px 20px;
background-color: #ff3929;
color: #fff;
font-size: 15px;
border-radius: 5px;
cursor: pointer;
border: 0;
outline: 0;
display: none;
margin: 10px auto 10px;
}
#resultss{
width: 80%;
margin: 50px auto 50px;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 10px 25px;
}
#resultss img{
width: 100%;
height: 230px;
object-fit: cover;
border-radius: 5px;
}