-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutility.css
More file actions
246 lines (202 loc) · 4.23 KB
/
utility.css
File metadata and controls
246 lines (202 loc) · 4.23 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
.border{
border: 2px solid red;
margin: 3px;
}
.flex{
display: flex;
}
.justify-center{
justify-content: center;
}
.items-center{
align-items: center;
}
.bg-black{
background-color: black;
color: white;
}
.bg-grey{
background-color: #1f1f1f;
color: white;
}
.bg-white{
background-color: white;
color: black;
}
.invert-50{
filter: invert(50%);
}
.invert{
filter: invert(1);
}
.rounded{
border-radius: 7px;
}
.m-1{
margin: 5px;
}
.p-1{
padding: 7px;
}
.transformOnHover:hover{
transform: scale(1.05);
}
.invert-color-on-hover:hover{
filter: invert(1);
}
button, svg{
cursor: pointer;
}
.hover{
cursor: pointer;
}
a{
text-decoration: none;
}
a:visited{
text-decoration: none;
}
a:hover{
text-decoration: underline;
}
/*
We achieve reponsiveness mainly by:
1️⃣ Flexible Layouts (Flexbox / Grid)
2️⃣ Responsive Units (%, vw, vh, rem)
3️⃣ Media Queries (rules for different screen sizes)
4️⃣ Sometimes clamp() for automatic scaling (making responsive text)
5. Responsive images
*/
/*
A media query in CSS is a feature that lets your webpage change its design based on the user’s device or environment — such as screen size, device type, orientation, resolution, and more.
It is the core of responsive web design.
Media queries override existing CSS when their condition becomes true.
They don’t delete the old CSS; they conditionally replace it because of how the Cascade works.
Write styles for mobile first → then add breakpoints for bigger screens.
Common breakpoints:
576px → small phones
768px → tablets
1024px → small laptops
1440px → desktops
*/
header{
height: 6.5vh;
min-height: 25px;
}
main{
height: 76.5vh;
}
/* Many more adjustments but done directly in style.css */
.hamburger img{
display: none;
height: 30px;
width: 30px;
}
.categories div div:first-child{
max-height: 400px; /* choose any height */
overflow-y: hidden; /* enable vertical scroll */
overflow-x: auto; /* avoid horizontal scroll */
}
.card-container .card{
flex: 0 0 155px; /* width stays fixed */
}
.categories .card-container::-webkit-scrollbar{ display:none; }
.categories .card-container{ scrollbar-width:none; }
@media (max-width: 1400px){
main .library{
position: absolute;
/*display: none;*/ /*only for phone like iphone se*/
left: -110%;
transition: all .3s linear;
z-index: 3;
}
/*
z-index in CSS controls which element appears in front of which when elements overlap.
Think of it like layers in Photoshop or stacking cards: higher z-index = closer to you.
Elements with higher z-index sit on top
Elements with the same z-index follow HTML order
z-index only works on positioned elements
(position: relative | absolute | fixed | sticky)
*/
.hamburger:hover{
.library{
left: 0%;
}
}
main .songs{
width: 100vw;
margin-left: 5px;
margin-right: 5px;
}
.hamburger img{
display: block;
margin-left: 1vw;
}
.logo{
display: none;
}
.home{
display: none;
}
}
@media (max-width: 1200px){
.library{
width: 370px;
}
.search-box input{
width: 45vw;
}
}
@media (max-width: 800px){
.others .install-app{
display: none;
}
.volume{
display: none;
}
.search-box input{
width: 40vw;
}
}
@media (max-width: 600px){
.others .explore-premium{
display: none;
}
.noti-groups{
display: none;
}
header .others{
width: 50px;
}
.search-box input{
width: 75vw;
}
.song-cover-details button{
display: none;
}
.upper{
gap: 0;
}
.song-cover-details{
scale: 0.8;
margin-left: 0;
}
.other-functions{
display: none;
}
.song-details{
font-size: smaller;
}
.categories header{
font-size: small;
}
.card-container .card{
flex: 0 0 100px;
font-size: xx-small;
padding: 10px;
}
.search-box{
scale: 0.9;
margin-left: -15px;
}
}