Io's Profile Template

example wow look how beautiful

other example zomg it's editable too so you can change colors and even the bio layout!

FAQ:

  • Can you edit this to add [x feature] ?

    maybe idk it took like 3 days to get this out. I'll consider adding more variants later.

  • How do I change [this specific part of the profile] ?

    google "how do I css [this thing]", right click inspect element. you might have to throw an !important in if you wanna overwrite color codes (or go back and remove whatever you're overwriting from the list)

  • This is really badly optimised, and I, le css expert, spit on you

    Please feel free to edit this and send me a cleaner format and i'll replace this one with your version (with credit) ty lol

  • Do I HAVE to credit you? What's stopping me from taking the little credit thing at the bottom out?

    I mean you don't HAVE to it'd just be really nice b/c y'know, I spent time on this to give y'all who don't wanna learn css options.

How to use this code.

First, go to your profile. Click the "change colors" button. You MUST change these colors to:

Background Color: #000000

and

Text Color#FFFFFF

EXACTLY LIKE THAT, or parts of the code won't work!

how to

Then, go to Profile Settings.

Copy the code below, and paste it into the "About Me" section.

And then you should be good to go! Just edit the parts below the </style> tag as that's what's shown on the bio section of your profile.

ONLY EDIT YOUR PROFILE IN THE SETTINGS PAGE, NOT ON YOUR ACTUAL PROFILE!

Fixed code credit to zyxy (thank you! <3), last updated on March 1, 2026 by LavEnRoses

Code to Copy - yes this whole thing

  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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
<style>
/* === SECTION TO CHANGE THE COLORS OF THIS PROFILE THEME  === */
/* pick 5 colors, from white/light to dark/black. Then go through this section and change the colors and the profile should swap to your preferred color scheme! */
/* == LIGHTEST COLOR SECTION == */
/* text & icons*/
.css-jdhqy4 > div, .profile-top-bar-create-char, [class*="popoverTitle"], [class*="headerActions"] button, [class*="_subject_"], [class*="_subject_"] *, .pp-top-bar-search-history [role='button'] span, .profile-top-bar-app-menu-list-item, .profile-top-bar-app-menu-list svg, .profile-followers-count, .profile-uc-follow-button, .pp-uc-options-menu, .profile-badge-total-text::after, .profile-character-search-input, [class*="_collapsedContainer_"] [class*="_tag_"], #root .react-select__dropdown-indicator svg, .profile-character-card-name-box, .profile-character-card-description-markdown-container *, .profile-character-card-tag-limitless, details summary {
  color: white;
}
[class*="notificationIcon"], #search-input, .pp-top-bar-search-history [role='button'] :is(button svg, span[class*='icon'] path), .profile-filter-button-vsc-filter /* for text and icons that need to be overwritten */ {
  color: white !important;
  fill: white !important;
}
/* background */
[class*="notificationsBadge"], .profile-uc-follow-button:hover, .pp-uc-options-menu:hover, .profile-character-card-stack:hover .profile-character-card-name-box {
  background: white;
}
/* border */
[class*="headerActions"] button, .pp-top-bar-search-history, .profile-top-bar-app-menu-list {
  border: 1px solid white;
}
/*==========================================*/

/* == LIGHT COLOR SECTION == */
.profile-top-bar-logo-sub-name, .profile-top-bar-search::after, .profile-top-bar-search-box div:has(svg), .profile-badge-total-count, #root .react-select__single-value {
  color: gray;
}
/*==========================================*/

/* == MEDIUM COLOR SECTION == */
/* text - this can be slightly lighter as well. */
.profile-top-bar-logo-name, .profile-member-since-box, .profile-character-search-input::placeholder  {
  color: #363636;
}
/* borders */
.profile-top-bar-search, [class*="notificationsPopover"], [class*="contentWrapperUnread"], .profile-uc-background-flex, .profile-followers-count, .profile-uc-follow-button, .pp-uc-options-menu, .profile-character-search-input, .profile-filter-button, [class*="_collapsedContainer_"] [class*="_tag_"], #root .react-select__control, .profile-character-card-stack, .pp-cc-tags-item {
  border: 1px solid #363636;
}
/*==========================================*/

/* == DARK COLOR SECTION == */
/* background */
.profile-page-background, .profile-followers-count, #root .react-select__option:hover, #root .react-select__option--is-focused, .profile-character-card-name-box, .pp-cc-tags-item, details {
  background: #141414;
}
/* borders */
details[open] .details-content {
  border: 1px solid #141414;
}
/*==========================================*/

/* == DARKEST COLOR SECTION == */
/* text */
.profile-uc-follow-button:hover, .pp-uc-options-menu:hover, .profile-character-card-stack:hover .profile-character-card-name-box {
  color: black;
}
/* background */
.css-jdhqy4 > div, .profile-top-bar, .profile-top-bar-search, .pp-top-bar-search-history, [class*="notificationsPopover"], .profile-top-bar-app-menu-list, .profile-uc-background-flex, .profile-uc-follow-button, .pp-uc-options-menu, .profile-character-search-input, .profile-filter-button, #root ~ :has(> .profile-filter-modal-modal-overlay) [data-focus-lock-disabled] > * > *, #root .react-select__control, #root .react-select__indicator-separator, #root .react-select__menu, .profile-character-card-stack, .details-content {
  background: black;
}
/* borders */
.css-jdhqy4 > div {
  border: 1px solid black;
}
/* OTHER COLOR CHANGES SECTION*/
/* text */
p { 
  color: white;
}
/* links */
a {
  color: white;
}
a:hover {
  color: #7f7f7f;
}
/* highlight color */
::selection {
  background: #7f7f7f !important;
  color: white;
}
/*===========END OF SECTION==========*/

/*=============PAGE SECTION============*/
/* TOOLTIPS SECTION */
.css-jdhqy4 > div {
  padding: 6px;
  border-radius: 1px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: none;
  font-family: 'DM Sans', sans-serif;
}
.chakra-tooltip__arrow-wrapper {
  display: none;
}
/*===========END OF SECTION==========*/

/*=============HEADER SECTION============*/
/* HEADER */
.profile-top-bar {
  box-shadow: none;
  backdrop-filter: blur(0);
}
/* JANITORAI LOGO */
.profile-top-bar-logo {
  text-shadow: none !important;
}
.profile-top-bar-logo-name { /* "janitor" part of logo */
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 2rem;
}
.profile-top-bar-logo-sub-name { /* "beta" part of logo */
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
}
/*==========================================*/

/* CREATE A CHARACTER BUTTON SECTION */
/*the text*/
.profile-top-bar-create-char {
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  position: relative;
}
.profile-top-bar-create-char, .profile-top-bar-create-char::before, .profile-top-bar-create-char::after {
  background: none;
}
/*==========================================*/

/* NOTIF BUTTON SECTION*/
[class*="notificationsButton"], [class*="notificationsButton"]:hover {
  background: none;
}
/* notif alert — the red dot */
[class*="notificationsBadge"] {
  top: 0.65rem;
  right: 0.75rem;
  font-size: 0;
  padding: unset;
  height: 0.5rem;
  min-width: unset;
  aspect-ratio: 1;
  box-shadow: none;
  border: 1px solid black;
}
/*==========================================*/

/* credits to tigerdropped ♡*/
/* NOTIF BOX SECTION*/
/* styling the box */
[class*="notificationsPopover"] {
  box-shadow: none;
  border-radius: 1px;
}
/* removing weird background gradient */
[class*="notificationsPopover"]::before {
  content: unset; 
}
[class*="popoverHeader"] {
  background: none;
  box-shadow: none;
  border-bottom: 1px solid #363636;
}
/* "notifications" text */
[class*="popoverTitle"] {
  font-weight: 600;
  font-size: 20px;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
}
/* delete all, mark all as read, and close buttons */
[class*="headerActions"] {
  gap: 4px;
}
[class*="headerActions"] button {
  background: none;
  box-shadow: none;
  transition: all 500ms;
}
[class*="headerActions"] button:hover {
  background: none;
  box-shadow: none;
}
/* notifs styling */
#root [class*="notificationItem"] {
  background: unset;
  padding: 0.5rem;
  gap: 0.5rem;
  border-bottom: 1px solid #363636;
  align-items: center;
  transition: unset;
}
/* unread notifs indicator */
[class*="unreadIndicator"] {
  width: 6rem; /* default is 3px. Don't make this too wide if you're going to use a solid color. */
  background: radial-gradient(circle at 6rem 50%, #0000 62.5%, #ffffff40) 200% 200%;
  box-shadow: unset;
  border-radius: unset;
}
/* avatar section */
[class*="avatarSection"] { display: contents; } /* fix */
[class*="avatarContainer"] {
  min-width: 5rem;
  height: auto;
  aspect-ratio: 1;
  transition: transform 500ms, filter 500ms;
}
/* Character avatar */
[class*="characterAvatar"] {
  width: 4rem; /* can't be wider than previous selector */
  height: auto;
  aspect-ratio: 1;
  border-radius: 999px;
  object-position: top;
  box-shadow: unset;
  border: unset;
}
[class*="userAvatar"] {
  bottom: 0;
  right: 0; /* controls position */
  min-width: unset;
  width: 2rem;
  aspect-ratio: 1;
  height: auto;
  object-position: top;
  border-radius: 999px;
  box-shadow: unset;
  border: unset;
}
[class*="notificationItem"]:hover *:is([class*="characterAvatar"], [class*="userAvatar"]) {
  box-shadow: unset;
  transform: unset;
}
/* When hovering clickable avatar container */
a[class*="avatarContainer"]:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 0.5rem #fffff40);
}
[class*="contentWrapper"] [class*="content"] { display: contents; }
[class*="contentWrapper"] {
  flex-flow: column;
  padding: 0.5rem 0.75rem;
  gap: 0.5rem;
  border-radius: 1px;
}
/* unread notifications */
[class*="contentWrapperUnread"] {
  background: #3636367d;
}
[class*="contentWrapper"]:hover {
  background: #36363640;
}
/* grayscale effect on read notifs */
[class*="notificationItem"]:not(:has([class*="contentWrapperUnread"])) *:is([class*="avatarContainer"], [class*="contentWrapper"]) { filter: grayscale(0.75) opacity(0.5); }
/* notif title style */
[class*="_subject_"], [class*="_subject_"] * {
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
}
/* notif content style */
[class*="_body_"] * {
  font-family: 'Lato', sans-serif;
  color: lightgray;
}
/*==========================================*/

/* credits to procrastination ♡*/
/* SEARCH BAR SECTION */
/* styles the search bar */
.profile-top-bar-search {
  border-radius: 2px;
}
 /* removes box shadow on hover */
.profile-top-bar-search:hover {
  box-shadow: none;
}
/* colors the svgs */
.profile-top-bar-search-box div:has(svg) {
  opacity: 1;
}
/* hides the default placeholder text */
#search-input::placeholder {
  opacity: 0;
}
/* consistent text styling for search bar, the search bar has a lot of inline styling, which is why we have a lot of !important overrides */
#search-input {
  position: absolute;
  width: calc(100% - 2.5rem) !important;
  padding-right: 2.5rem !important;
  font-family: Lato, sans-serif;
  font-size: 1rem !important;
  caret-color: white;
}
/* THE NEW PLACEHOLDER TEXT */
.profile-top-bar-search::after {
  content: "can't find what you're looking for? search here . . .";
  position: absolute;
  max-width: calc(100% - (2.5rem * 2));
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
  font-family: Lato, sans-serif;
  font-size: 1rem;
  font-weight: normal;
  transition: opacity 200ms ease-in-out;
}
/* hides the new placeholder when search bar is clicked */
.profile-top-bar-search:focus-within::after,
.profile-top-bar-search:has(#search-input:not(:placeholder-shown))::after {
  opacity: 0;
}
/* makes input text visible when search bar is clicked on or has typed text */
.profile-top-bar-search:focus-within #search-input,
#search-input:not(:placeholder-shown) {
  opacity: 1;
}
/* SEARCH BAR HISTORY */
.pp-top-bar-search-history {
  border-radius: 1px;
  box-shadow: none;
}
.pp-top-bar-search-history [role='button'] {
  background-color: unset;
  transition: background-color 200ms ease-in-out;
}
.pp-top-bar-search-history [role='button'] span {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: normal;
}
.pp-top-bar-search-history [role='button'] :is(button svg, span[class*='icon'] path) {
  opacity: 1;
  transition: color 200ms ease-in-out, fill 200ms ease-in-out;
}
/*==========================================*/

/* PERSONAL MENU - TOP RIGHT SECTION */
/* styling the menu */
.profile-top-bar-app-menu-list {
  outline: none;
  border-radius: 1px;
  box-shadow: none;
}
.profile-top-bar-app-menu-list-item {
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
}
/*===========END OF SECTION==========*/

/*========PROFILE CARD SECTION==========*/
/* DELETE THIS TO GET THE "OLD STYLE" AVATAR/USERNAME BACK */
/* makes pfp go over username */
.profile-info-hstack {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1px;
}
/* AVATAR OR PFP */
.profile-avatar-container {
  height: 250px;
  width: 100%;
}
.profile-avatar {
  height: 100%;
  width: 100%;
  object-position: 25% 55%; 
  box-shadow: none;
  border-radius: 0px;
}
/*==========================================*/

/* background of card + border */
.profile-uc-background-flex {
  padding: 0px;
  max-width: 36rem;
  border-radius: 2px;
}
/* hides extra background layers */
.profile-uc-background-flex > div {
  background: transparent !important;
}
/* gets rid of glow on hover */
.profile-uc-background-flex:hover {
  box-shadow: none;
}
/*BIO */
.profile-info-stack {
  padding: 10px;
}
.profile-info-stack-inner {
  padding: 10px;
  gap: 0.2rem;
  align-items: center;
}
/* makes sure background/color choices remain visible */
.css-9qctsi {
  z-index: 10;
}
.profile-about-me {
  width: 100%;
  padding: 10px;
}
/*==========================================*/

/* USERNAME */
.profile-title-heading {
  font-size: 4rem;
  line-height: 1;
  font-family: 'DM Sans', sans-serif;
  text-decoration: 6px solid underline;
  text-decoration-color: #ffffff7d;
  text-underline-offset: 4px;
}
/* FOLLOWERS */
.profile-followers-count {
  text-transform: uppercase;
  font-size: 11px;
  border-radius: 2px;
  margin: 5px 0px;
  width: fit-content;
  padding: 2px 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}
/* BADGES */
.profile-badges {
  filter: grayscale(1);
}
/* "MEMBER SINCE" */
.profile-member-since-box {
  font-size: 11px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
}
/*==========================================*/

/* =====FOLLOWING / OPTIONS BUTTONS SECTION ===== */
/* positions in middle */
.profile-about-me + div > div {
  justify-content: center;
  gap: 20px;
  margin: 10px 0;
}
/*==========================================*/

/*== FOLLOW BUTTON ==*/
/* styling */
.profile-uc-follow-button {
  border-radius: 1px;
  transition-duration: 0.2s !important;
}
.profile-uc-follow-button::before {
  content: unset;
}
/* text */
.profile-uc-follow-text {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
}
/*==========================================*/

/* == OPTIONS BUTTON == */
.pp-uc-options-menu {
  border-radius: 1px;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
}
/*===========END OF SECTION==========*/

/*===========BOT PAGE SECTION============*/
/* hides characters button */
.profile-tabs-wrapper {
  visibility: hidden;
}
/* # OF CHARACTERS BUTTON */
.profile-badge-flex-outer {
  background: none;
  border: none;
  box-shadow: none;
}
.profile-badge-flex-inner {
  font-size: 14px;
}
.profile-badge-total-text {
  font-size: 0px; /* this hides the characters text */
}
.profile-badge-total-text::after {
  content: "bots"; /* this replaces the "characters" text - you can write what you want */
  font-size: 14px;
}
/* decoration for characters search box, filter tags button and latest box */
.profile-character-search-input, .profile-filter-button, #root .react-select__control {
  border-radius: 1px;
}
/* SEARCH FOR CHARACTERS BOX */
.profile-character-search-input {
  font-size: 14px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}
.profile-character-search-input::placeholder {
  font-weight: 600;
}
/* on hover and active states */
.profile-character-search-input:is(:hover, :focus, :active) {
  border-color: #ffffff70;
  box-shadow: none;
}
/*==========================================*/

/* credits to tigerdropped ♡*/
/* ========TAGS FILTER MENU========= */
/* tags filter box */
#root ~ :has(> .profile-filter-modal-modal-overlay) [data-focus-lock-disabled] > * > * {
  border-radius: 1px;
}
/* "Filters" header text */
.profile-filter-modal-modal-overlay ~ [data-focus-lock-disabled] > * > * > header {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
}
/* "Tags" text */
.profile-filter-modal-body-tags-flex-box-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0px;
}
/* replacement text */
.profile-filter-modal-body-tags-flex-box-heading::after {
  content: "Select tags to filter bots";
  font-size: 16px;
}
:has(> [class*="_tagsContainer_"]) {
  flex-flow: column;
  align-items: center;
}
/* shows all the tags */
[class*="_collapsedContainer_"] {
  flex-wrap: wrap;
  justify-content: center;
}
/* removes all the unnecessary buttons */
[class*="_expandButton_"], [class*="_gradient"], [class*="_navigationButton"] {
  display: none;
}
/* puts tags in two columns when expanded on pc (mobile looks a bit different) */
[class*="_collapsedContainer_"] [class*="_motionDiv_"] {
  margin: 0;
  flex: 1 1 45%;
}
/* unselected tags */
[class*="_collapsedContainer_"] [class*="_tag_"] {
  background: #0e0e0f;
  border-radius: 1px;
  width: 100%;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
}
/* selected tags */
[class*="_collapsedContainer_"] [class*="_tagSelected_"] {
  border-color: white;
  text-transform: lowercase;
  box-shadow: none;
  text-shadow: none;
}

/*==========================================*/

/* ========LATEST DROPDOWN========= */
#root .react-select__control {
  transition: all 0.2s ease;
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
}
/* border color when hovered and menu is open */
#root .react-select__control:is(:hover, :focus, :active), #root .react-select__control--menu-is-open {
  border-color: #ffffff70;
}
/* styles menu and options */
#root .react-select__menu {
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  border-radius: 1px;
  font-size: 12px;
  font-weight: 400;
  box-shadow: none;
}
/* hides selected options in the menu */
#root .react-select__option--is-selected { 
  display: none;
}
/*==========================================*/

/* ===========BOT CARD =========== */
/* hides extra background layers */
.profile-character-card-wrapper, .profile-character-card-wrapper > div:empty {
  background: none !important;
  box-shadow: none;
}
/* removes box shadow on hover */
.profile-character-card-wrapper:hover {
  box-shadow: none;
}
.profile-character-card-stack {
  border-radius: 0px;
}
/* how big the bot image is & get rid of the image border*/
.profile-character-card-avatar-aspect-ratio, .profile-character-card-avatar-image {
  height: 250px;
  border-radius: 0px;
}
/* DELETE THIS TO GET RID OF GRAY FILTER ON BOT CARDS! */
.profile-character-card-avatar-image {
  filter: grayscale(1);
}
/* removes grayscale on hover */
.profile-character-card-stack:hover .profile-character-card-avatar-image {
  filter: grayscale(0);
  transition: 0.3s ease;
}
/*==========================================*/

/* == BOT NAMES == */
/* puts bot name under image */
.profile-character-card-stack-link-component {
  display: flex;
  flex-direction: column-reverse;
}
/* gets rid of padding */
.profile-character-card-stack-link-component-box {
  padding: 0px;
}
/* styling for bot name */
.profile-character-card-name-box {
  position: relative;
  overflow: hidden;
  padding-left: 2px;
  font-size: 16px;
  font-family: 'DM Serif Text', serif;
  font-weight: 200;
  letter-spacing: unset;
  text-transform: unset;
  text-shadow: none;
  transition: color 0.4s ease, background-color 0.4s ease; 
}
/* sheen effect on bot name */
.profile-character-card-name-box::before {
  content: ' ';
  position: absolute;
  top: 0;
  left: -75%;
  height: 100%;
  width: 50%;
  background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
}
/* trigger animation on hover */
.profile-character-card-stack:hover .profile-character-card-name-box::before {
  animation: sheenMove 1s forwards;
  background: #ffffff;
}
/* christmas bots */
.profile-character-card-stack:has(.pp-tag-christmas):hover .profile-character-card-name-box::before {
  background: #e2ffcf;
}
/* halloween bots */
.profile-character-card-stack:has(.pp-tag-halloween):hover .profile-character-card-name-box::before {
  background: #ffe4bd;
}
/* valentines bots */
.profile-character-card-stack:has(.pp-tag-thevalentine):hover .profile-character-card-name-box::before {
  background: #ffd1e2;
}
/* 2025 bots */
.profile-character-card-stack:has(.pp-tag-2025):hover .profile-character-card-name-box::before {
  background: #53b960;
}
/* FOR CUSTOM BOTS DELETE IF YOU DONT WANT IT */
/* replace CUSTOMTAG with your tag name, make sure its in all lowercase */
.profile-character-card-stack:has(.pp-tag-CUSTOMTAG):hover .profile-character-card-name-box::before {
  background: gray; /* change the color to whatever you want */
}
@keyframes sheenMove {
    from {
        left: -75%;
    }
    to {
        left: 125%;
    }
}
/* hides creator name under bot name */
.profile-character-card-creator-name-link {
  display: none;
}
/* removes icons from seasonal event cards */
.profile-character-card-box ~ div {
  display: none;
}
/*==========================================*/

/* BOT DESCRIPTIONS */
.profile-character-card-description-box {
  margin-top: 20px;
  font-family: 'Lato', sans-serif;
}
/* HIDES THE STAR & LINE */
.profile-character-card-star-line, .profile-character-card-star {
  display: none;
}
/*==========================================*/

/* == CHAT COUNT RIBBON == */
/* credit to tigerdropped */
.profile-character-card-stats-box {
  top: 275px;
  width: 100%;
  display: flex;
  justify-content: center;
}
/* Negate inset, hidden overflow, drop shadow */
.profile-character-card-ribbon {
  position: static;
  overflow: visible;
  filter: none;
  inset: unset;
  padding: 0;
}
/* Remove weird shape, weird shadow, hidden overflow */
.profile-character-card-ribbon-wrap {
  clip-path: unset;
  padding: 0;
  box-shadow: none;
  background: transparent;
  overflow: visible;
  border-radius: 0;
}
/* Text, background and icon */
.profile-character-card-chats-hstack {
  font-weight: 200;
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
  background: none;
  border-bottom: 1px solid #ffffff7d;
}
/* Hide chat icon */
.profile-character-cards-chat-count-tbmessages {
  display: none;
}
/* New icon */
.profile-character-card-chats-hstack::before {
  content: "◐";
}
/*==========================================*/

/* == TAGS == */
/* tag arrangement  */
.profile-character-card-tags ul {
  justify-content: center;
  align-items: flex-end;
}
.profile-character-card-tags a {
  display: flex;
}
/* styles all tags */
.pp-cc-tags-item {
  font-weight: 200;
  border-radius: 0px;
  font-size: 12px;
  color: rgb(255 255 255 / 65%);
  width: 100%;
}
/* changes "limitless" tag */
.profile-character-card-tag-limitless {
  font-size: 0px;
  background: transparent;
  border: none;
  width: 0px;
}
.profile-character-card-tag-limitless::before {
  content: "🔞";
  font-size: 16px;
}
/*==========================================*/

/* TOKEN COUNTER */
.profile-character-card-tokens-count {
  font-size: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 200;
  letter-spacing: 0.5px;
  color: #ffffff70;
  text-shadow: none;
}
/*===========END OF SECTION==========*/
/*====STYLING FOR HTML IN THE ACTUAL BIO SECTION====*/
/* Base (drop-down) details styling */
details {
  margin-top: 10px;
  display: inline-block;
  width: 100%;
  font-family: 'Lato', sans-serif;
  text-align: center;
  border-radius: 1px;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
  border: none;
}
/* Summary Styling */
details summary {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  padding: 6px 8px;
  cursor: pointer;
  user-select: none;
  position: relative;
  border: none;
}
/* Sheen pseudo-element */
details summary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: #8080801f;
  transform: skewX(-20deg);
}

details:hover summary::before {
  animation: sheenMoveSummary 1s forwards;
}
/* Remove default marker triangle */
details summary {
  list-style: none;
}
/* this is the box your main text is inside */
.details-content {
  max-height: 0;
  width: 100%;
  overflow: hidden;
  padding: 0px 16px;
  opacity: 0;
  transform: translateY(-5px);
  transition:
    max-height 0.5s ease-in-out,
    opacity 0.4s ease-in-out,
    transform 0.4s ease-in-out,
    padding-top .3s ease,
    padding-bottom .3s ease,
    border .4s ease; 
}
/* Only add border when open */
details[open] .details-content {
  max-height: 500px; 
  opacity: 1;
  transform: translateY(0);
  padding-top: 12px;
  padding-bottom: 12px;
}
/* Keyframes for sheen animation */
@keyframes sheenMoveSummary {
  from { left: -75%; }
  to { left: 125%; }
}

/*==========================================*/

/* TWO COLUMNS */
.container {
  display: flex;
  width: 100%;
}
.column {
  width: 50%;
  padding: 10px;
  box-sizing: border-box;
}
.left {
  color: white;
  text-align: center;
} /* if you want to, you can make text on the left one color and centered */
.right {
  color: lightgray;
  text-align: center;
} /* and text on the right a different color! or anything you want, really... */

/*==========================================*/

/*TEXT STYLING*/
.profile-about-me h1 /*this is h1*/  {
  font-family: 'Raleway';
  color: lightgray;
  font-weight: 600;
  font-size: 1.8em;
}
/*===========END OF SECTION==========*/

/* === BELOW THIS IS EVERYTHING THAT WILL BE VISIBLE IN YOUR BIO! === */
</style>
<h1> Hello. I'm a header. </h1>
<p> This is some text. Maybe you'd like to <b>bold some words</b>? Or <i>use italics</i>?</p>
<br>
Remember, you should <b> only ever edit your profile in the <a href="https://janitorai.com/profile-settings">settings menu</a></b>, or you risk the site deleting things!
<br>

<details>
  <summary> Click To Expand</summary>
  <div class="details-content">
    <p>This is your detailed content inside the box.</p>
    <br>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ultrices, odio id bibendum mollis, dui tortor accumsan magna, quis tincidunt eros ligula vel nunc. Maecenas non auctor massa. Curabitur rutrum quam quis magna tristique sollicitudin. Pellentesque porttitor lacus vitae dolor congue condimentum. <br>
Quisque malesuada mauris sagittis, finibus nisi quis, hendrerit dolor. Praesent augue tellus, finibus at sodales ac, venenatis in eros. Fusce sed cursus nunc. Nullam id risus nec ex bibendum tempor.<br>
Pellentesque tincidunt nisi sit amet viverra facilisis. Sed egestas justo eu ipsum laoreet volutpat. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Phasellus pharetra pretium metus non vehicula.</p>
  </div>
</details>

 <div class="container">
    <div class="column left">
      Left Column Content
    </div>
    <div class="column right">
      Right Column Content
    </div>
  </div>

<p> You can write whatever you want here. Go crazy. Learn some HTML! </p><br>

<p style="font-size: 11px; color: #ffffff7d; text-align: right;">profile css coding by <a href="https://www.janitorai.com/profiles/ae3b8516-54d5-4469-8557-6dcf808128d0_profile-of-iorveths">iorveths</a>, fixes by <a href="https://janitorai.com/profiles/5d6df38d-636b-40e3-9825-3f3b9edb9eab_profile-of-zyxy">zyxy</a> and <a href="https://janitorai.com/profiles/dec0be08-2f0d-4fa4-8c9a-74e847ab4b23_profile-of-lav-en-roses">lavenroses</a>.</p>
Edit

Pub: 23 Apr 2025 23:06 UTC

Edit: 01 Mar 2026 15:57 UTC

Views: 27716