-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproducts.css
More file actions
114 lines (99 loc) · 2.03 KB
/
Copy pathproducts.css
File metadata and controls
114 lines (99 loc) · 2.03 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
body{
background-image: url(https://cdn.shopify.com/s/files/1/0449/5225/6667/files/jazz-bg-texture-min_1.jpg?v=1616673456);
}
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
#button{
margin: 50px auto;
margin-left: 530px;
}
#button>button{
text-transform: uppercase;
border: none;
background-color: transparent;
margin-left: 20px;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
cursor: pointer;
}
#button>button:hover{
text-decoration: underline;
}
#product{
width: 85%;
height: auto;
margin: auto;
margin-top: 100px;
}
#home i{
padding-right: 10px;
}
#navbar1{
position: sticky;
top: 0;
z-index: 1;
}
#show{
display: grid;
grid-template-columns: repeat(3, 30%);
justify-content: space-evenly;
margin-top: 20px;
gap: 10px;
}
#show>div{
overflow: hidden;
border-radius: 30px;
}
#show>div>img{
width: 380px;
height: 400px;
border-radius: 30px;
transition: transform .1s;
cursor: pointer;
}
#show>div>img:hover{
transform: scale(1.1);
border-radius: 30px;
}
#show>div>p{
text-align: center;
}
#show p:nth-child(3){
margin-top: 20px;
font-size: 20px;
}
#show p:nth-child(4){
margin-top: 20px;
color: rgb(225,25,37);
font-size: 30px;
margin-bottom: 30px;
font-family: Arial, Helvetica, sans-serif;
}
#page_name{
font-size: 12px;
text-transform: capitalize;
font-family: Arial, Helvetica, sans-serif;
}
.btn{
width: 99%;
height: 70px;
position: relative;
/* padding: 18px 125px; */
background-color: rgb(67,113,17);
font-size: 19px;
color: white;
border: none;
border-radius:0 0 30px 30px;
font-family: Arial, Helvetica, sans-serif;
transition: 0.3s;
opacity: 0;
cursor: pointer;
}
#show>div:hover >.btn{
opacity: 1;
transform: translateY(-50px);
padding: 20px 125px;
}