-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
99 lines (84 loc) · 1.68 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
88
89
90
91
92
93
94
95
96
97
98
99
* {
padding: 0;
margin: 0;
box-sizing: border-box;
background-color: #FFE9D0;
}
h1 {
text-align: center;
font-size: 3.5em;
margin-top: 20px;
}
.serachbox {
/* margin-top: 100px; */
display: flex;
justify-content: center;
margin-top: 30px;
}
.serachbox input {
background: transparent;
width: 400px;
height: 60px;
border-radius: 10px;
padding: 20px;
font-size: 25px;
font-weight: bolder;
background-color: aliceblue;
}
.serachbox button {
height: 60px;
width: 150px;
font-size: 20px;
margin-left: 50px;
border-radius: 10px;
cursor: pointer;
transition: all 0.3s;
background-color: aliceblue;
}
.serachbox button:hover {
background-color: black;
color: aliceblue;
}
img {
margin: 60px 20px;
transition: 0.2s ease-in-out;
border-radius: 10px;
width: 100%;
height: 330px;
object-fit: cover;
}
img:hover{
transform: scale(1.09);
transition: 0.2s ease-in-out;
}
.imagesec {
width: 80%;
margin: 60px 200px;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 40px;
}
#showMore {
display: flex;
height: 60px;
width: 150px;
font-size: 20px;
margin-left: 50px;
border-radius: 10px;
cursor: pointer;
transition: all 0.3s;
background-color: aliceblue;
margin-bottom: 40px;
align-items: center;
justify-content: center;
display: none;
}
#showMore:hover {
background-color: black;
color: aliceblue;
}
.showmoew {
display: flex;
align-items: center;
justify-content: center;
}