-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles-responsive.css
More file actions
79 lines (65 loc) · 1.33 KB
/
styles-responsive.css
File metadata and controls
79 lines (65 loc) · 1.33 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/* Responsive adjustments */
@media (max-width: 1200px) {
#main-content {
grid-template-columns: 250px 1fr 200px;
}
}
@media (max-width: 900px) {
#main-content {
grid-template-columns: 1fr;
grid-template-rows: auto 1fr auto;
}
#effects-grid {
grid-template-columns: repeat(5, 1fr);
}
}
/* Enhanced mobile support */
@media (max-width: 768px) {
#main-content {
grid-template-columns: 1fr;
grid-template-rows: auto 300px auto;
gap: 10px;
}
#layers-container {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 8px;
}
.layer {
padding: 8px;
}
.layer-preview {
height: 50px;
}
.opacity-slider {
height: 80px;
}
#effects-panel {
order: -1;
}
#effects-grid {
grid-template-columns: repeat(3, 1fr);
gap: 6px;
}
.effect-btn {
padding: 12px 6px;
font-size: 10px;
}
}
/* Touch-friendly controls */
.touch-control {
min-height: 44px;
min-width: 44px;
}
@media (hover: none) and (pointer: coarse) {
button {
min-height: 44px;
font-size: 14px;
}
.effect-btn {
min-height: 50px;
}
.sequencer-step {
min-height: 50px;
}
}