-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
264 lines (222 loc) · 4.67 KB
/
custom.css
File metadata and controls
264 lines (222 loc) · 4.67 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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
/* override theme variables */
* {
--text-md: #fff !important;
--vs-text-medium: #fff !important;
--vs-text-dark: #fff !important;
}
/* set default text to white */
.profile-layout {
color: #fff !important;
}
/* brighter links */
a {
color: #fff !important;
text-decoration: underline dashed #fff !important;
}
/* set all fonts to monospace */
* {
font-family: monospace !important;
}
/* set profile page background to black */
{
background: #000 !important;
}
/* transparent cards! */
.card {
background: transparent !important;
}
/* remove card borders */
.card {
border: none !important;
}
/* hide friends card */
.profile-left > .card:nth-child(2) {
display: none;
}
/* hide photos card */
.profile-left > .card:nth-child(3) {
display: none;
}
/* hide groups card */
.profile-left > .card:nth-child(4) {
display: none;
}
/* hide Details card */
.profile-left > .card:nth-child(5) {
display: none;
}
/* hide links card */
.profile-left > .card:nth-child(6) {
display: none;
}
/* hide avatar info card */
.profile-left > .card:nth-child(7) {
display: none;
}
/* make profile layout a single column */
.profile-layout {
display: flex !important;
flex-direction: column !important;
}
/* stack left and right sections vertically */
.profile-left,
.profile-right {
width: 100% !important;
max-width: 100% !important;
}
/* make the profile layout slimmer */
.profile-layout {
max-width: 666px !important;
margin: 0 auto !important;
}
/* make top bar follow dark theme */
.profile-top-bar {
background: #000 !important;
border: none !important;
}
/* give us some margin at the top */
.profile-layout {
margin-top: 100px !important;
}
/* hide card headers */
.card-header {
display: none !important;
}
/* hide about me blurb title */
.profile-page.profile-custom-css
.profile-layout
> div.profile-right
> div:nth-child(1)
> div.card-body
> div:nth-child(1)
> div.blurb-title {
display: none;
}
/* hide about me section links */
.profile-page.profile-custom-css
.profile-layout
> div.profile-right
> div:nth-child(1)
> div.section-links {
display: none !important;
}
/* hide song card */
.profile-right > .card:nth-child(2) {
display: none;
}
/* make display name pansexual */
.profile-display-name {
color: #ff218c !important; /* pink */
background: linear-gradient(
135deg,
#ff218c 0%,
#ff218c 33%,
#ffd800 33%,
#ffd800 66%,
#21b3ff 66%,
#21b3ff 100%
) !important; /* pansexual flag colors */
-webkit-background-clip: text !important;
-webkit-text-fill-color: transparent !important;
width: fit-content !important;
margin: 0 auto !important;
}
/* hide username */
.profile-username {
display: none !important;
}
/* make tagline bigger */
.profile-tagline {
font-size: 1.5em !important;
}
/* hide oshi mark */
.profile-oshi-mark {
display: none !important;
}
/* hide mood */
.profile-mood {
display: none !important;
}
/* hide url box */
.profile-url-box {
display: none !important;
}
/* remove profile avatar border */
.profile-avatar {
border: none !important;
}
/* fade it in */
@keyframes fadeIn {
to {
opacity: 1;
}
}
.profile-layout {
opacity: 0;
animation: fadeIn 1s ease-in-out forwards !important;
}
/* change profile contact links to sharp edges and white on black */
.profile-contact-links a {
border-radius: 0 !important;
color: #fff !important;
background-color: #000 !important;
}
/* hide add comment background */
.add-comment {
background: transparent !important;
}
/* hide alternating comments background */
.profile-comment:nth-child(2n) {
background: transparent !important;
}
/* make comment body text white */
.comment-body {
color: #fff !important;
}
/* make add comment button white on black and sharp edges */
.add-comment button,
.action-btn.primary {
border-radius: 0 !important;
border-color: #fff !important;
color: #fff !important;
background: #000 !important;
}
/* hide profile status */
.profile-online-status {
display: none !important;
}
/* hide profile boop stats */
.profile-boop-stats {
display: none !important;
}
/* hide add comment input background */
.profile-page.profile-custom-css
#comments
> div.card-body
> div.add-comment
> div
> div {
background: transparent !important;
}
/* style the index images carousel */
#IndexImagesCarousel {
display: flex;
flex-direction: row;
gap: 10px;
}
/* style the custom content container */
#CustomContent {
display: flex;
flex-direction: column;
gap: 20px;
}
/* enable smooth scroll on all the things */
* {
scroll-behavior: smooth !important;
}
/* style the bottom left widgets container */
#BottomLeftWidgets {
display: flex;
flex-direction: column;
gap: 10px;
}