-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponsive.css
53 lines (44 loc) · 910 Bytes
/
responsive.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
@media (max-width: 739px) {
.card {
flex-direction: column;
}
.card-pic {
width: 85vw;
border-radius: 10px 10px 0 0;
height: 24vh;
}
/* CARD-INFO */
.card-info {
width: 85vw;
border-radius: 0 0 10px 10px;
padding: 32px 22px;
height: 38vh;
}
.card-info .heading{
width: 72vw;
}
.card-info .heading{
font-size: 9px;
}
i.ti-share{
margin-left: 12vw;
padding: 12px;
}
.detail-share {
width: 85vw;
height: 8vh;
background: hsl(217, 19%, 35%);
position: absolute;
display: flex;
left: -21px;
bottom: -17px;
border-radius: 0 0 10px 10px;
align-items: center;
}
i.ti-share:hover{
background-color: rgb(3, 113, 132);
}
.arrow-down{
display: none;
}
}