-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponsive.css
More file actions
65 lines (57 loc) · 1.15 KB
/
Copy pathresponsive.css
File metadata and controls
65 lines (57 loc) · 1.15 KB
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
@media screen and (max-width: 768px) {
.history .history-item img {
height: 168px;
}
.categories ul{
gap: 32px;
}
.mode-and-profile .name{
display: none;
}
}
@media screen and (max-width: 640px){
.history .history-item{
width: 100%;
}
.history .file{
display: none;
}
.history .history-item img {
height: 205px;
}
}
@media screen and (max-width: 561px){
.categories ul li:nth-child(2),
.categories ul li:nth-child(3),
.categories ul li:nth-child(4){
display: none;
}
.active::after{
content: "\f107";
font-family: "Font Awesome 6 Free";
font-weight: 700;
padding-left: 10px;
color: #808080;
}
}
@media screen and (max-width: 488px){
.file {
width: 31%;
}
}
@media screen and (max-width: 382px){
.file {
width: 48%;
}
.search{
display: none;
}
.mobile-search {
display: inline-flex !important;
}
}
@media screen and (max-width: 340px){
.file {
width: 100%;
}
}