K6tli's Pink Retro Template
a full profile (including menus, notifications, filters popup, etc.,) with flipping music player bot cards that are horizontally slid, a status box, and animations!
live profile to view animations here




about the template:
hi everyone!!! i'm kat, or @k6tli on janitor, and welcome to my first css template and rentry (scary!). with this template, i wanted to go for a sort of 3D, retro, pink vibe that's as interactive as i could imagine (lots of hover effects!). i've included the background image I used above for you guys as well, along with some preview images. this template is fully media queried, so compatible with mobile, and i think quite customizable.
i'd like to preface by saying please do not remove the credit, i put it on there for a reason and i'm already making and giving out this code for free, the least you could do is give me credit for something that I made. also, if you do remove it, you could get your account reported and the moderators would ask you to remove it or even disable your ability to customize your css permanently. worth it? i think not. ah, also, janitor is constantly changing their class IDs, so in time, some of this code may no longer be relevant. this is applicable to all templates, and i'll do my best to go back and update this as things changes.
alright, onto the code itself. this is approximately a little less than 1100 lines of just code (so decently short!) split into some general sections which i've clarified with comments scattered throughout. there are some placeholders, such as the 'Name Here' on the top left, which are left for you to customize as well. I tried my best to make these as clear and straightforward as possible, but feel free to ask me if you have any questions! you can feel free to change the colours, the font, etc., as well, just remember that the credit still applies!
to use the template, copy and paste the following (all of it) and customize from there! use the comments i left as a guiding light for what is what, and where to add your own personal touches. without further ado, happy coding!
updates:
- november 14th, 2025 : increased contrast and opacity for accessibility, accommodated for new notification popup
- november 16th, 2025 : tweaked the badges code to change the class from .css-x3wokz to .css-hjkukh and add a pink filter to the badges
- december 24th 2025 : updated the follow and options button positioning class ID from .css-y9k5u7 to .pp-uc-about-me + div
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 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 | <style>
/* ================= CSS begins here ================= */
/* CREDIT DO NOT REMOVE OR CHANGE */
.credit {
position: absolute;
top: -2%;
left: 50%;
transform: translateX(-50%);
font-family: "Pixelify Sans", sans-serif;
font-size: 15px;
color: #ffedf1;
}
/* ============= status box code begins here ============= */
/* this codes the appearance of the status box */
.status {
position: relative;
background: linear-gradient(145deg, #ffedf1cc, #f19fb9cc);
color: #C83264;
font-family: "Pixelify Sans";
font-size: 15px;
text-align: center;
width: 400px;
border-radius: 20px;
padding: 10px;
margin-top: 120px;
left: 50%;
transform: translateX(-50%);
border: 3px solid #ea7ea3;
outline: 3px solid #f19fb980;
outline-offset: -6px;
box-shadow:
4px 4px 0 #ea7ea3,
0 0 10px rgba(255, 170, 195, 0.7);
text-shadow: 1px 1px #ffb6d1;
animation: floaty 3s ease-in-out infinite; /* floating animation for the status box, delete if you don't want it */
}
/* this codes the small box on top that says 'Status:', you can change it to what you'd like in the content below */
.status:after {
content: 'Status:';
background: linear-gradient(145deg, #ffedf1cc, #f19fb9cc);
position: absolute;
display: block;
z-index: 1;
border-radius: 15px 15px 0 0;
border: 2px solid #ea7ea3;
outline: 3px solid #f19fb980;
outline-offset: -4px;
padding: 3px 14px;
top: -33px;
left: 50%;
transform: translateX(-50%);
box-shadow:
0 0 10px rgba(255, 170, 195, 0.6);
text-shadow: 1px 1px #ffb6d1;
}
/* delete if you don't want the floating animation for the status box */
@keyframes floaty {
0%, 100% { transform: translateX(-50%) translateY(0); }
50% { transform: translateX(-50%) translateY(-4px); }
}
/* changing the width of the status on mobile, i don't recommend changing this */
@media (max-width: 768px) {
.status {
width: 300px;
}
}
/* =============== dropdowns code begins here ============= */
/* positions the dropdowns and tells it how to behave, i don't recommend changing this */
.dropdowns {
display: flex;
flex-direction: column;
gap: 3rem;
width: 90%;
max-width: 500px;
margin: 4rem auto; /* vertical gap between the different dropdowns, you can change this */
}
/* styles the appearance and more positioning of the dropdowns */
.dropdown {
position: relative;
display: flex;
flex-direction: column;
background: linear-gradient(145deg, #ffedf1, #f1bcc9); /* background color of the dropdowns */
color: #C83264; /* text color of the dropdowns */
border: 3px solid #ea7ea3;
border-radius: 20px;
padding: 0.7rem;
box-shadow: 4px 4px 0 #d9698f;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* dropdown hover effects */
.dropdown:hover {
transform: scale(1.05);
box-shadow: 6px 6px 0 #C83264;
}
/* tells the image connected to the dropdowns where to go. in this case, tells the cat to sit on top of the dropdowns */
.dropdown img {
position: absolute;
top: -45px;
height: 50px;
object-fit: cover;
}
/* positions the cats on alternating sides of the dropdowns */
.dropdowns .dropdown:nth-child(odd) img {
left: 0.5rem;
}
.dropdowns .dropdown:nth-child(even) img {
right: 0.5rem;
transform: scaleX(-1);
}
/* styles the titles of the dropdowns */
.dropdown summary {
font-family: "Pixelify Sans", sans-serif;
cursor: pointer;
font-size: 16px;
text-align: center;
list-style: none;
color: #C83264;
text-shadow: 1px 1px #ffb6d1;
}
/* glow effect on the title of the dropdowns when hovered */
.dropdown summary:hover {
text-shadow: none;
}
/* hides the triangle arrow on dropdowns */
.dropdown summary::-webkit-details-marker {
display: none;
}
/* styles the content inside of the dropdowns */
.dropdowncontent {
font-family: "Pixelify Sans", sans-serif;
max-height: 0;
overflow-y: auto;
color: #C83264;
font-size: 12px;
line-height: 1.4;
}
details[open] .dropdowncontent {
max-height: 500px;
padding: 0.5rem;
}
/* ==================== top bar code begins here ================= */
/* general layout code, makes it so that the profile is vertical on desktop rather than side by side */
.profile-page-flex {
display: flex;
flex-direction: column;
align-items: center;
}
/* styles general appearance of the top bar */
.pp-top-bar {
background: linear-gradient(to bottom, #ffedf1, #f1bcc9);
box-shadow:
3px 3px 0 #ea7ea3;
}
/* gets rid of the original janitor ai logo */
.pp-top-bar-logo-name, .pp-top-bar-title {
font-size: 0px;
}
/* replaces the logo with what you want, and styles it */
.pp-top-bar-logo-name::after, .pp-top-bar-title::after {
content: "Name Here"; /* change this to your username or name, or something else */
font-family: "pixelify sans";
font-size: 35px;
font-weight: 300;
letter-spacing: 0.6px;
color: #C83264;
text-shadow: none;
white-space: nowrap;
text-shadow:
2px 2px 0 #f19fb9;
}
/* hover effect on your logo */
.pp-top-bar-logo-name:hover::after {
text-shadow: none;
}
/* hides the beta part of the logo */
.pp-top-bar-logo-sub-name {
visibility: hidden;
}
/* styles the create a character part of the top bar */
.pp-top-bar-create-char {
font-family: "pixelify sans";
font-size: 18px;
color: #C83264;
position: relative;
background: none;
text-shadow:
1px 1px 0 #f19fb9;
}
/* gets rid of original hover effect */
.pp-top-bar-create-char::before, .pp-top-bar-create-char::after {
display: none;
}
/* new hover effect */
.pp-top-bar-create-char:hover, .pp-top-bar-logo-name:hover {
text-shadow: none;
color: #d9698f;
}
/* top bar back button on mobile */
.pp-top-bar-back-button svg {
color: #C83264;
}
/* top bar back text on mobile */
.pp-top-bar-back-button p {
font-family: "pixelify sans";
color: #C83264;
}
/* ============== footer code (on mobile) begins here ============== */
/* styles the color of the icons */
.pp-mnb-container svg {
color: #C83264;
}
/* border around your pfp on mobile */
.pp-mnb-container img {
border: 2px outset #f19fb9;
}
/* general styling of the footer */
.css-1qf4tpw {
backdrop-filter: none;
background: linear-gradient(to bottom, #ffedf1, #f1bcc9);
opacity: 1;
border: 2px outset #f19fb9;
}
/* ===================== search bar code begins ===================== */
/* CREDITS TO adrian or @procrastination for the search bar code! */
/* styles what you type into the search bar */
#search-input {
position: absolute;
width: calc(100% - 2.5rem);
padding-right: 2.5rem !important;
font-family: "pixelify sans";
font-size: 1rem;
font-weight: normal;
color: #C83264 !important;
caret-color: #C83264;
}
/* hides the original search bar placeholder */
#search-input::placeholder {
opacity: 0;
}
/* adds your own placeholder */
.pp-top-bar-search::after {
content: 'search content here'; /* replace this with what you want, for example 'search for characters 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: "pixelify sans";
font-size: 1rem;
font-weight: normal;
color: #C83264;
text-shadow:
1px 1px 0 #f19fb9;
}
/* search bar hover effect */
.pp-top-bar-search-box:is(:hover, :focus-within):not(
:has(.pp-top-bar-search-history:is(:hover, :focus))
)
.pp-top-bar-search::after {
color: #C83264;
text-shadow:
1px 1px 0 #ea7ea3;
}
/* === starting from here, i do NOT recommend changing anything except for colors for the search bar*/
/* these are relatively more complicated elements with many aspects attached to them, so unless you know css, don't touch */
/* i did add comments to things that are safe to change */
.pp-top-bar-search:focus-within::after, .pp-top-bar-search:has(#search-input:not(:placeholder-shown))::after {
opacity: 0;
}
.pp-top-bar-search:focus-within #search-input,
#search-input:not(:placeholder-shown) {
opacity: 1;
}
.pp-top-bar-search-box {
transition: background-color 200ms ease-in-out;
border: 2px inset; /* this, and the border-color and border-radius below are safe to edit */
border-color: #d9698f;
border-radius: 20px;
}
.pp-top-bar-search {
background-color: unset;
border-radius: 20px; /* styles the roundness of the search bar, make sure it's the same as the above if you change it*/
}
.pp-top-bar-search-box:has(#search-input:placeholder-shown)
.pp-top-bar-search-right:empty,
body:has(
.pp-top-bar-search-right:not(:empty),
#search-input:not(:placeholder-shown)
)
.pp-top-bar-search-history {
display: none;
}
.pp-top-bar-search-box:is(:hover, :focus-within):not(
:has(.pp-top-bar-search-history:is(:hover, :focus))
) {
background-color: #f1bcc9; /* color of the search bar when it's clicked on, safe to change */
}
/* magnifying glass icon */
.profile-top-bar-search-box div:has(> svg) {
color: #C83264; /* color of the magnifying glass */
opacity: 1;
transition: color 200ms ease;
}
.profile-top-bar-search-box div:has(> svg):is(:hover, :focus) {
color: #fad8dc; /* hover effect (color change) of the magnifying glass when hovered. safe to change*/
}
/* entirely safe to change, styles the search history */
.pp-top-bar-search-history {
background-color: #f19fb9;
border: 1px outset #fad8dc;
border-radius: 20px;
box-shadow: none;
}
.pp-top-bar-search-history [role='button'] {
background-color: unset;
transition: background-color 200ms ease-in-out;
}
/* styles the text of the items in the search history. safe to change */
.pp-top-bar-search-history [role='button'] span {
font-family: "pixelify sans";
font-size: 1rem;
font-weight: normal;
color: #fad8dc;
}
.pp-top-bar-search-history [role='button'] div:has(> span) {
overflow: hidden;
}
.pp-top-bar-search-history [role='button']::after {
left: 0;
right: 0;
background-color: #fad8dc;
}
.pp-top-bar-search-history [role='button']:last-of-type::after {
display: none;
}
.pp-top-bar-search-history
[role='button']
:is(button svg, span[class*='icon'] path) {
fill: #fad8dc; /* color of the search history X on the right, and rewind clock on the left. safe to change */
opacity: 1;
}
.pp-top-bar-search-history [role='button'] button:hover svg, .pp-top-bar-search-history [role='button'] span[class*='icon']:hover path {
fill: #fad8dc; /* color of the above icons when hovered. safe to change */
}
/* === search bar end */
/* ============ notifications code begins here ============ */
/* styling of the notification bell */
[aria-label="Notifications"] svg {
fill: #C83264; /* color of it */
transform: scale(1.20); /* makes it slightly bigger */
}
[aria-label="Notifications"] svg:hover {
fill: #f19fb9; /* color of it on hover */
}
/* general notifications popup styling */
[class*="notificationsPopover_"] {
background: linear-gradient(to bottom, #ffedf1, #f1bcc9);
border-radius: 20px;
box-shadow:
5px 5px 0 #ea7ea3;
}
/* background of the header of the notification popup */
[class*="popoverHeader_"] {
background: linear-gradient(to bottom, #ffedf1, #f1bcc9);
}
/* styling the text of the notification popup header */
[class*="popoverTitle_"] {
font-family: "pixelify sans";
color: #C83264;
font-size: 20px;
text-shadow:
1px 1px 0 #ea7ea3;
}
/* styling the rest of the text in the notifications popup */
[class*="_subject_"], [class*="_notificationMessage_"],
[class*="_body_"], [class*="_loadMoreButton_"], ._timestamp_14dgz_172 {
font-family: "pixelify sans";
color: #C83264;
}
/* color of the garbage and close icons in the notification popup */
._deleteAllButton_fdp8b_614, ._closeButton_fdp8b_158 {
color: #C83264;
border: none;
box-shadow: none;
}
._deleteAllButton_fdp8b_614:hover, ._closeButton_fdp8b_158:hover {
box-shadow: none;
color: #A32952;
transform: scale(1.3);
background: transparent;
}
/* ============ options menu (when you click on your pfp) code begins here ============ */
/* general styling of the menu */
.pp-top-bar-app-menu-list {
background: linear-gradient(to bottom, #ffedf1, #f1bcc9);
border-radius: 10px;
border: 3px outset;
border-color: #f19fb9;
}
/* styling the options of the menu */
.profile-top-bar-app-menu-list-item {
font-family: "pixelify sans";
font-size: 14px;
color: #C83264;
}
/* hover effect on the options */
.profile-top-bar-app-menu-list-item:hover {
color: #ffedf1;
background: #C83264;
}
/* ============= general profile styling code begins here ============= */
/* gets rid of the background of your profile info section */
.pp-uc-background {
background: transparent;
}
/* gets rid of the shadow on your profile info section when you hover over it */
.pp-uc-background:hover {
box-shadow: none;
}
/* places your profile info vertically, pfp on top, then follower count, member since, etc., below */
.profile-info-hstack {
flex-direction: column;
text-align: center;
}
/* styling your pfp */
.pp-uc-avatar {
display: block;
width: 300px; /*adjust height and width here, but mind smaller screen dimensions on mobile */
height: 300px;
box-shadow: none;
border: 3px #d9698f outset;
border-radius: 20px;
box-shadow:
5px 5px 0 #C83264;
}
/* username styling here */
.pp-uc-title {
font-family: "pixelify sans";
font-size: 40px;
font-weight: 300;
color: #ffedf1;
text-shadow:
2px 2px 0 #C83264;
overflow: hidden;
white-space: nowrap;
border-right: .15em solid #d9698f;
margin: 0 auto;
letter-spacing: .15em;
animation: /* typewriter animation on the username here, delete if you don't want it */
typing 5s steps(20, end) infinite,
blink-caret .75s step-end infinite;
}
/* tells the typing what to do, don't touch */
@keyframes typing {
0% { width: 0; }
50% { width: 100%; }
100% { width: 100%; }
}
@keyframes typing2 {
0% {
width: 0;
}
50% {
width: 13ch;
}
100% {
width: 13ch;
}
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: #d9698f; }
}
/* styling the follower count and member since */
.pp-uc-followers-count, .pp-uc-member-since {
font-family: "pixelify sans";
font-size: 20px;
font-weight: normal;
color: #ffedf1;
text-shadow:
1px 1px 0 #C83264;
}
/* ============= character section code begins here ============= */
/* gets rid of the original bluish glow part on the original 'characters' thing */
.pp-tabs-indicator{
display: none;
}
.pp-tabs-wrapper {
background: transparent;
border: none;
}
/* styles the new and improved 'much to love' banner */
.pp-tabs-button {
background: linear-gradient(to bottom, #ffedf1cc, #f19fb9cc);
font-family: "pixelify sans";
font-size: 0px;
width: 120vw;
height: 8vh;
transform: rotate(3deg) translate(-15vw, -50px);
color: #C83264 !important;
box-shadow:
5px 5px 0 #ea7ea3;
text-shadow: 2px 2px #ffb6d1;
}
/* styles the 'much to love text' */
.pp-tabs-button::after {
content: 'Much to love!'; /* replace this if you want */
font-size: 30px;
overflow: hidden;
white-space: nowrap;
border-right: .1em solid #C83264;
margin: 0 auto;
animation: /* typewriter animation, delete if you don't want */
typing2 6s steps(20, end) infinite,
blink-caret .75s step-end infinite;
}
/* centers the number of characters, filter, search for characters, and latest dropdowns in the middle on desktop */
.character-list-pagination-flex {
justify-content: center;
}
/* styles the number of characters thing */
.Btn2-purple {
padding: 15px;
border: none;
background: linear-gradient(to bottom, #ffedf1cc, #f19fb9cc);
border-radius: 20px;
font-family: "pixelify sans";
color: #C83264;
box-shadow:
3px 3px 0 #ea7ea3;
text-shadow: 1px 1px #ffb6d1;
}
/* gets rid of the original styling */
.Btn2-purple:before {
background: transparent;
}
/* gets rid of original styling on hover as well, and adds the enlarge on hover effect */
.Btn2-purple:hover {
transform: scale(1.1);
border: none;
text-shadow: none;
color: #C83264;
}
/* styles the general character search bar */
.profile-filters-flex-inner-hassearchfilter {
background: linear-gradient(to bottom, #ffedf1cc, #f19fb9cc);
border-radius: 20px;
box-shadow:
3px 3px 0 #ea7ea3;
}
/* hover effect on character search bar */
.profile-filters-flex-inner-hassearchfilter:hover {
transform: scale(1.1);
transition: transform 1s ease;
}
/* styles the text of the character search bar */
.pp-fl-search-input, .pp-fl-search-input::placeholder {
border: none;
font-family: "pixelify sans";
color: #C83264;
}
/* gets rid of the original outline when character search bar is clicked*/
.pp-fl-search-input:hover, .pp-fl-search-input:focus {
border: none;
outline: none;
box-shadow: none;
}
/* gets rid of the faint border on the filter icon */
.pp-fl-filter-button {
border: none;
}
/* hover effect on filter icon */
.pp-fl-filter-button:hover {
transform: scale(1.1);
transition: transform ease 1s;
}
/* styling the filter icon */
.pp-fl-filter-button svg {
color: #C83264 !important;
background: linear-gradient(to bottom, #ffedf1cc, #f19fb9cc);
height: 37px;
width: 37px;
border-radius: 13px;
box-shadow:
5px 5px 0 #ea7ea3;
padding: 8px;
}
/* colour of your page when the filter icon is clicked and the filter tags popup appears */
.profile-filter-modal-modal-overlay {
background: #ffb6d180;
}
/* filter tags popup general styling */
#root ~ *:has(> .profile-filter-modal-modal-overlay) [data-focus-lock-disabled] > * > * {
background: linear-gradient(to bottom, #ffedf1, #f19fb9);
border: 5px solid #f19fb9;
border-radius: 20px;
box-shadow:
3px 3px 0 #ea7ea3;
}
/* Filters text on the popup styling */
.profile-filter-modal-modal-overlay ~ [data-focus-lock-disabled] > * > * > header {
font-family: "Pixelify Sans";
color: #C83264;
font-size: 30px;
text-shadow: 2px 2px #ffb6d1;
}
/* X close button on the filter tags popup styling */
.profile-filter-modal-modal-overlay ~ [data-focus-lock-disabled] > * > * > button {
background: #ffedf1;
border: 2px solid #C83264;
border-radius: 20px;
color: #C83264;
}
/* hover effect on the X close button */
.profile-filter-modal-modal-overlay ~ [data-focus-lock-disabled] > * > * > button:hover {
background: #C83264;
color: #ffedf1;
border-color: #ffedf1;
}
/* styling the Tags text of the popup */
.profile-filter-modal-body-tags-flex-box-heading {
font-family: "Pixelify Sans";
color: #C83264;
}
/* styling the box that holds all the tags in the popup */
[class*="_tagsContainer_"] {
width: 100%;
border: 3px solid #C83264;
border-radius: 40px;
padding: 1rem;
background: #ffedf1;
}
/* restyles the originally dark grey gradient on the sides of the tags box to something that blends in */
[class*="_gradientLeft_"] {
background: linear-gradient(to left, transparent, #ffedf1 200%);
border-radius: 40px;
}
[class*="_gradientRight_"] {
background: linear-gradient(to right, transparent, #ffedf1 200%);
border-radius: 40px;
}
/* styling the left and right buttons of the popup */
[class*="_navigationButton"] {
background: #ffedf1;
color: #C83264;
border: 2px solid #C83264;
border-radius: 40px;
padding: 4px;
}
/* hover effect for the above */
[class*="_navigationButton"]:hover {
background: #C83264;
color: #ffedf1;
border-color: #ffedf1;
}
/* makes sure the arrow of the left and right buttons are the intended color */
[class*="_navigationButton"] path {
stroke: currentColor;
}
/* general styling of the pointing down expand button arrow of the popup */
[class*="_expandButton_"] {
background: #ffedf1;
color: #C83264;
border: 3px solid #C83264;
border-radius: 20px;
padding: 6px;
}
/* ensuring the arrow is the intended color again */
[class*="_expandButton_"] * {
stroke: currentColor !important;
}
/* hover effect for the expand button */
[class*="_expandButton_"]:hover {
background: #C83264;
color: #ffedf1;
border-color: #ffedf1;
}
/* styling the actual tags in the popup */
[class*="_collapsedContainer_"] [class*="_tag_"] {
background: #ffedf1;
color: #C83264;
font-family: "Pixelify Sans";
border: 3px solid #C83264;
border-radius: 20px;
}
/* general styling of the latest dropdown */
.profile-filters-flex-inner-onorderchanged {
background: linear-gradient(to bottom, #ffedf1cc, #f19fb9cc);
border-radius: 20px;
box-shadow:
3px 3px 0 #ea7ea3;
}
/* styling the text of the latest dropdown */
.transparent .react-select__value-container, .transparent .react-select__value-container>div {
font-family: "pixelify sans";
font-weight: 300;
color: #C83264;
transform: translateX(5px);
}
/* latest dropdown arrow color */
.react-select__dropdown-indicator {
color: #C83264 !important;
}
/* gets rid of the original black border around the latest dropdown */
:is(.css-b62m3t-container) .react-select__control {
border: none;
}
/* gets rid of the original black line on the latest dropdown */
.css-1wy0on6 span {
visibility: hidden;
}
/* styles the individual options when the latest dropdown section is clicked */
#root .react-select__option {
background: linear-gradient(to bottom, #ffedf1, #f1bcc9);
font-family: "pixelify sans";
color: #C83264;
border-bottom: 2px solid #f1bcc9;
}
/* styles the general menu of the latest dropdown section */
#root .react-select__menu, .css-qr46ko {
height: 190px;
overflow: hidden;
background: #fad8dc;
border-radius: 20px;
border: none;
box-shadow:
5px 5px 0 #ea7ea3;
}
/* ==================== follow and options buttons code begins here =================== */
/* general styling of the follow button */
.pp-uc-follow-button {
border-radius: 20px;
background: linear-gradient(to bottom, #ffedf1, #f1bcc9);
border: 3px solid #f1bcc9;
box-shadow:
5px 5px 0 #ea7ea3;
}
/* targets ugly black box to blend in, make sure it's the same as the above */
.pp-uc-follow-button:before {
background: linear-gradient(to bottom, #ffedf1, #f1bcc9);
}
/* styles the text of the follow button */
.profile-uc-follow-text {
font-family: "pixelify sans";
color: #C83264;
text-transform: lowercase;
text-shadow: 2px 2px #ffb6d1;
}
/* styles the options menu */
.pp-uc-options-menu {
border: none;
border-radius: 20px;
border: 3px solid #f1bcc9;
background: linear-gradient(to bottom, #ffedf1, #f1bcc9);
box-shadow:
5px 5px 0 #ea7ea3;
text-shadow: 2px 2px #ffb6d1;
}
/* styles the options menu text */
.css-15w88gn>span:nth-child(1) {
color: #C83264;
font-family: "pixelify sans";
}
/* styles the three dots of the options menu */
.pp-uc-options-menu svg {
color: #C83264;
}
/* try not to touch this. positions the container of the follow and options menu */
.pp-uc-about-me + div {
top: 440px;
left: 85%;
position: absolute;
transform: translateX(-50%) scale(1.1);
}
/* ========================= bot card code begins here ========================= */
/*size of the bot cards and roundness of the corners */
.profile-character-card-stack {
display: grid; /* don't touch */
width: 220px;
height: 360px;
border-radius: 20px;
}
/* hides the unnecessary layers of the bot card */
.pp-cc-gradient-1, .pp-cc-gradient-2, .pp-cc-gradient-3, .pp-cc-list-container {
background: transparent !important;
}
/* makes it so that the bot cards are horizontally sliding and readjusts their positioning. don't touch! */
.pp-cc-list-container {
display: flex;
flex-direction: row;
overflow-x: auto;
overflow-y: hidden;
gap: 40px;
height: 380px;
}
/* general styling of the bot cards */
.css-1s5evre {
background: linear-gradient(
to right,
#f1bcc9 0%,
#ffedf1 35%,
#ffedf1 40%,
#ffedf1 50%,
#ffedf1 60%,
#ffedf1 65%,
#f1bcc9 100%
);
border: none;
box-shadow:
5px 5px 0 #ea7ea3;
transition: all ease 1s;
}
/* you can change the -5deg, that's the tilt of the bot cards */
.pp-cc-wrapper {
background: transparent;
transform: rotate(-5deg) translate(20px,10px);
transition: transform ease 1s;
}
/* gets rid of the box shadow and tilt when rotated */
.pp-cc-wrapper:hover {
box-shadow: none;
transform: rotate(0deg) translate(20px, 10px);
}
/* flip on hover effect */
.pp-cc-wrapper:hover .css-1s5evre{
transform: rotateY(180deg);
transition: all ease 1s;
}
/* adjusting the size and positioning of the bot cards on mobile, as well as the size of the music player part */
@media (max-width: 768px) {
.pp-cc-wrapper {
transform: rotate(-5deg) scale(0.9) translateX(10px);
}
.pp-cc-wrapper:hover .css-1s5evre {
transform: rotate(0deg) rotateY(180deg) scale(0.9) translateX(-60px);
}
.pp-cc-wrapper:hover {
transform: translateX(-40px);
}
.pp-cc-list-container {
gap: 80px;
}
.profile-character-card-stats-box::after {
padding: 0 48px !important;
}
}
/* gets rid of the original star line on bot cards */
.pp-cc-star-line {
display: none;
}
/* border of the bot image */
.pp-cc-avatar {
border-radius: 20px;
border: 2px inset #C83264;
}
/* bot image positioning, height, and width */
.profile-character-card-avatar-aspect-ratio {
height: 270px;
width: 210px;
margin-top: -40px;
left: 3px;
}
/* makes the background for the music player */
.profile-character-card-avatar-aspect-ratio::after {
content: "";
position: absolute;
margin: 2px;
left: 0;
right: 0;
bottom: 0;
height: 40px; /* thickness of bottom “border” */
background: #ffedf180; /* slightly transparent bottom color */
pointer-events: none; /* keeps link clickable */
border-radius: 0 0 18px 18px; /* match bottom corners */
}
/* styling and centering the character name, main bot info, and description */
.profile-character-card-name-box, .profile-character-card-stack, .pp-cc-description {
color: #C83264;
font-family: "pixelify sans";
justify-content: center;
}
/* positioning the bot name */
.profile-character-card-stack-link-component-box, .pp-cc-name {
position: relative;
font-size: 20px;
text-align: center;
transform: translate(5px, 135px);
max-width: 210px;
}
/* adding a subtle text-shadow to the bot name */
.pp-cc-name {
text-shadow: 2px 2px #ffb6d1;
}
/* bot description positioning */
.pp-cc-description {
opacity: 0;
margin-top: -300px;
transform: rotateY(180deg);
font-size: 15px;
max-width: 200px;
max-height: 175px;
overflow: hidden;
}
/* token count styling */
.pp-cc-tokens-count {
color: #C83264;
font-family: "pixelify sans";
text-shadow: none;
font-size: 13px;
text-shadow: 1px 1px #ffb6d1;
}
/* chat count positioning */
.profile-character-card-stats-box {
transform: translate(-65px, 260px);
}
/* adding the music player bit and styling it */
.profile-character-card-stats-box::after {
content: "↻ ◁ || ▷ ↺";
padding: 0 58px;
font-size: 25px;
top: -63px;
left: -149px;
position: absolute;
white-space: nowrap;
color: #C83264;
text-shadow: 1px 1px #ffb6d1;
}
/* getting rid of the original chat count ribbon */
.pp-cc-ribbon-wrap, .pp-cc-ribbon {
background: transparent;
box-shadow: none;
filter: none;
}
/* styling the chat count number*/
.pp-cc-chats {
color: #C83264 !important;
font-family: "pixelify sans";
padding: 2px;
text-shadow: 1px 1px #ffb6d1;
white-space: nowrap;
}
/* placing this in front of the chat count number */
.pp-cc-chats::before {
content: "▶︎ •၊၊||၊|။||||။၊|•";
}
/* getting rid of the original chat count icon */
.pp-cc-chats svg {
display: none;
}
/* positioning and centering the tags */
.css-k1urot {
justify-content: center;
margin-top: -130px;
opacity: 0;
}
/* general tag styling */
.pp-tag-limitless, .pp-cc-tags-regular, .pp-cc-tags-custom {
border-radius: 20px;
border: 1px solid #d9698f;
background: linear-gradient(to bottom, #ffedf1, #f1bcc9);
box-shadow:
1px 1px 0 #ea7ea3;
color: #C83264;
}
/* tag hover effect */
.pp-cc-tags-regular:hover, .pp-cc-tags-custom:hover {
border: none;
}
/* ==== ALRIGHT here's where the magic happens for the flipping bot cards */
/* hides the bot image when the card is flipped */
.pp-cc-wrapper:hover .pp-cc-avatar {
opacity: 0;
z-index: 100;
}
/* hides the bot name when the card is flipped*/
.pp-cc-wrapper:hover .pp-cc-name {
visibility: hidden;
}
/* hides the token count when the card is flipped */
.pp-cc-wrapper:hover .pp-cc-tokens-count {
visibility: hidden;
}
/* hides the chat count when the card is flipped */
.pp-cc-wrapper:hover .profile-character-card-stats-box {
visibility: hidden;
}
/* displays the description when the card is flipped */
.pp-cc-wrapper:hover .pp-cc-description {
opacity: 1;
}
/* displays the tags when the card is flipped */
.pp-cc-wrapper:hover .css-k1urot {
opacity: 1;
transform: rotateY(180deg); /* don't touch */
transition: transform ease 1s;
}
/* hides the music player background when the card is flipped */
.pp-cc-wrapper:hover .profile-character-card-avatar-aspect-ratio::after {
opacity: 0;
}
/* hides your username on the bot cards */
.pp-cc-creator-name {
display: none;
}
/* ======== miscellaneous code ======== */
/* this is the positioning of the badges so that they're centred + the filter on them */
.css-hjkukh {
justify-content: center;
filter: brightness(120%) contrast(70%) hue-rotate(310deg) saturate(110%) opacity(90%);
}
/* when you hover things on your profile, this styles what pops up. */
/* for example, when you hover tags, descriptions, your customize profile button, etc., */
.css-jdhqy4>div {
border-radius: 20px;
font-family: "pixelify sans";
border: 1px solid #d9698f;
background: linear-gradient(to bottom, #ffedf1, #f1bcc9);
box-shadow:
2px 2px 0 #ea7ea3;
color: #C83264;
}
/* styles the page number and arrows at the bottom of the page */
:is(.pp-pg-prev-button, .pp-pg-next-button) svg, .pp-pg-page-button {
color: #ffedf1;
opacity: 1;
font-weight: 800;
}
</style>
|