-
Notifications
You must be signed in to change notification settings - Fork 0
/
medium.css
87 lines (62 loc) · 1.17 KB
/
medium.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
@media screen and (min-width: 600px) and (max-width: 900px)
{
.logo
{
font-size:calc(1.4rem + 1vw);
}
.search-container
{
width:76%;
}
.subheading
{
font-size:1.6rem;
}
.filter
{
padding:.8rem calc(.4rem + .6vw);
}
.filter>*
{
font-size:calc(1rem + .8vw);
}
.collection-list>li>a
{
font-size:calc(1rem + 1vw);
}
.collection-items-container
{
display:flex;
flex-direction: row;
gap:1rem;
justify-content: space-between;
}
.collection-items
{
width:48%;
}
.collection-items-details-one,.collection-items-details-two
{
gap:.8rem;
}
.collection-items-details-one-name
{
font-size:calc(1rem + .6vw);
}
.collection-items-details-one-card
{
padding:.2rem;
}
.collection-items-details-two>.collection-icon,.collection-items-details-two>label
{
font-size:calc(.8rem + .8vw);
}
.fordesigners>li
{
font-size:calc(1rem + .6vw);
}
.footer-subheading
{
width:50%;
}
}