-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSoundCloud_CSS_Part_2.user.css
More file actions
94 lines (80 loc) · 2.03 KB
/
SoundCloud_CSS_Part_2.user.css
File metadata and controls
94 lines (80 loc) · 2.03 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
/* ==UserStyle==
@name Minimal SoundCloud CSS
@namespace github.com/Ejuibante
@version 1.0
@description A Simple Soundcloud CSS [2}
@author Luqman Khan
==/UserStyle== */
@-moz-document domain("soundcloud.com") {
body {
background-color: #000 !important;
color: #fff !important;
}
}
/* ===== Super Minimal SoundCloud (Luqman's Custom Style) ===== */
/* Hide header buttons but KEEP search bar */
.header__right {
display: none !important;
}
/* Keep the header middle (search bar) */
.header__middle {
display: flex !important;
}
/* Hide stream, home content, and recommendations */
.l-listen-layout__sidebar,
.l-listen-layout__main > .soundList__item,
.sound__comments,
.sound__footer,
.sc-button-repost,
.sc-button-share,
.sc-ministats,
.playbackTimeline__duration,
.playbackTimeline__progressBackground,
.waveform__layer,
.visualization,
.soundTitle__tagline,
.soundActions,
.trackItem__username,
.trackItem__playbackCount,
.trackItem__reposts,
.trackItem__likes,
.trackItem__duration,
.soundTitle__titleContainer > .sc-link-light,
.sc-border-light-bottom,
.soundBadge__titleContext,
.soundBadge__additional {
display: none !important;
}
/* Show only cover art */
.image__full {
max-width: 300px !important;
margin: auto !important;
display: block !important;
}
/* Keep like button but hide the count */
.sc-button-like {
display: inline-block !important;
}
.sc-button-like .sc-button-label {
display: none !important;
}
/* Keep message button */
.sc-button-message {
display: inline-block !important;
}
/* Remove comment bubbles on waveforms */
.commentPopover,
.waveformComments {
display: none !important;
}
/* Hide timestamps and other icons */
.sound__timeContainer,
.playbackTimeline__duration,
.playbackTimeline__progressIndicator,
.soundStats {
display: none !important;
}
/* Keep the search bar visible */
.headerSearch {
display: block !important;
}