-
Notifications
You must be signed in to change notification settings - Fork 0
/
media.css
68 lines (58 loc) · 1.19 KB
/
media.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
@media screen and (max-width: 600px) {
body {
display: flex;
flex-direction: column;
}
.add {
position: relative;
}
.user-label {
position: absolute;
left: 20px;
color: #b18597;
pointer-events: none;
transform: translateY(30px);
transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.title__img {
width: 100%;
height: 237px;
}
.parent {
display: grid;
grid-template-columns: 1fr;
grid-row-gap: 9px;
}
.just__img {
height: 300px;
width: 300px;
border-radius: 15px;
/*object-fit: contain;*/
}
.just__bg {
height: 380px;
width: 300px;
border-radius: 15px;
}
.text {
margin: 15px;
color: white;
width: fit-content;
font-size: 20px;
font-weight: 400;
text-align: justify;
}
/*drop*/
.down {
box-sizing: border-box;
transform: translate(0, 0);
max-width: 100%;
min-height: 100%;
margin: 0;
left: 0;
}
.down__img {
max-width: 330px;
height: 301px;
}
}