-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathp.css
48 lines (47 loc) · 796 Bytes
/
p.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
.sub-con{
width:23vw;
max-width:380px;
min-height:250px;
display: flex;
justify-content: center;
align-items: center;
}
.cos-img{
width:200px;
height:200px;
transition: width 0.5s ,height 0.5s ;
}
.cos-img:hover{
width:230px;
height:230px;
}
.cos-rol{
width:300px;
height:300px;
display: flex;
align-items: center;
justify-content: center;
}
.cos-p-fl{
display: flex;
justify-content: space-between;
align-items: center;
gap:10px;
}
.img-con{
width:100%;
height:100%;
transition:0.5s ease-in-out;
}
.img-con:hover{
transform: scale(1.1);
cursor: pointer;
}
.brand{
width:23vw;
height:100px;
cursor: pointer;
}
.name{
font-family: 'DM Serif Display', serif;
}