-
Notifications
You must be signed in to change notification settings - Fork 2
/
wipes.css
54 lines (47 loc) · 796 Bytes
/
wipes.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
.header{
text-align: center;
font-size: small;
}
.header1{
text-align: center;
font-size: 50px;
}
#container{
display: grid;
grid-template-columns: repeat(3,1fr);
grid-template-rows: repeat(1,1fr);
gap :10px;
}
#container>div{
height: auto;
width: 80%;
margin: auto;
margin-top: 20px;
box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
#container>div>img{
width: 100%;
transition: transform 1s;
}
#container>div>img:hover{
transform: scale(0.9);
cursor:zoom-out;
}
#tag{
display: flex;
}
#tag>p:nth-child(2){
margin-top:30px
}
.title{
margin-left: 10px;
}
.brand{
margin-left: 10px;
}
.price{
margin-left: 10px;
}
.strick{
margin-left: 10px;
}