Io's Profile Template
wow look how beautiful
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!
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)
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 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 | <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-19h42zx a,svg, .Btn, .css-1yhasuw, .glow-on-hover:hover:after, .css-18yip8r, .css-xl71ch svg, #search-input, .css-15w88gn, .Btn2-purple > .css-wd8hou p::after, .css-euh5x6, .css-zgqw37, .css-6pkpcc, .css-7l95y2, .css-1on0xzz, .css-g6u0eg, .css-1f84q7v, .css-19n8j7q, .css-q0xxaj, .css-313uz2 p, .css-1mdnznj, .css-15w88gn, .css-19h42zx, .css-1n2in4t, .css-x2gqu0, .pp-cc-tags-wrap-custom span, .dark .react-select__dropdown-indicator, .colored .react-select__dropdown-indicator, .transparent .react-select__dropdown-indicator, .react-select__menu-portal .react-select__dropdown-indicator {
color: white;
fill:white !important;
}
.css-1n2in4t > svg, .css-8l42c1 > svg, .css-xl71ch > svg /* tag box and announcements icon */ {
color: white !important;
}
/* background */
.css-2zp1xp, .css-1s5evre:hover .css-zgqw37, .Btn:hover, .Btn[data-hover], .css-15w88gn:hover, .css-15w88gn[data-hover] {
background: white;
background-color: white;
}
/* border */
.css-1w58nos, .css-oqdsp6, .css-19h42zx, .css-1w58nos, .css-19h42zx {
border: 1px solid white;
}
/*==========================================*/
/* == LIGHT COLOR SECTION == */
.search-input:after, .css-bda9ez, .css-96l1id, .css-96l1id p, .css-96l1id p > span, .css-bar9lc div:has(svg), .dark .react-select__placeholder, .colored .react-select__placeholder, .css-8l42c1, .transparent .react-select__placeholder, .dark .react-select__single-value, .colored .react-select__single-value, .transparent .react-select__single-value, .react-select__menu-portal .react-select__placeholder, .react-select__menu-portal .react-select__single-value, .css-178jenf, .Btn2-purple strong, .css-15p9u6a, .css-18yip8r:hover, .css-313uz2 a, .css-vdzdjh > strong, .css-wd8hou strong, .css-scy8li {
color: gray;
}
/*==========================================*/
/* == MEDIUM COLOR SECTION == */
/* text - this can be slightly lighter as well. */
.css-1knepg6, css-1q6w2dx, .css-1utguok {
color: #363636;
}
/* borders */
.css-g6u0eg, .search-input, .css-3rot3, .css-1n2in4t, .css-vqimyu > div:first-child, .css-1sxhvxh .css-0, .css-12lnk4a .css-0, .css-v57joh .css-0, .Btn, .Btn:hover, .Btn[data-hover], .css-15w88gn, .css-v8syye, .css-pibr72, .css-fv6c2q, .dark.react-select-control, .colored.react-select-control, .transparent.react-select-control, .chakra-ui-dark.react.select-control, .chakra-ui-dark.react.select-menu, .chakra-ui-dark.react.select-option, .chakra-ui-dark.react.select-option:hover, .chakra-ui-dark.react.select-option.selected, .chakra-ui-dark.react.select-indicator-separator, .chakra-ui-dark.react.select-dropdown-indicator, .chakra-ui-dark.react.select-placeholder, .chakra-ui-dark.react.select-single-value, .chakra-ui-dark.react.select-menu.portal.control, .chakra-ui-dark.react.select-menu.portal.menu, .chakra-ui-dark.react.select-menu.portal.option, .css-x2gqu0, .pp-cc-tags-wrap-custom span, .css-1pibr72, .css-1fv6c2q, .css-1w58nos, .dark .react-select__control, .colored .react-select__control, .transparent .react-select__control, .react-select__menu-portal .react-select__control, .css-x2gqu0:hover, .css-x2gqu0[data-hover] {
border: 1px solid #363636;
}
/*==========================================*/
/* == DARK COLOR SECTION == */
/* background */
.css-g6u0eg, .css-x2gqu0, .pp-cc-tags-wrap-custom span, .css-zgqw37, .css-6pkpcc, .css-7l95y2, .css-1on0xzz, details summary::before, details, .pp-page-background, .css-1a7v8fx, .dark .react-select__indicator-separator, .colored .react-select__indicator-separator, .transparent .react-select__indicator-separator, .react-select__menu-portal .react-select__indicator-separator, .dark .react-select__option:hover, .colored .react-select__option:hover, .transparent .react-select__option:hover, .react-select__menu-portal .react-select__option:hover {
background: #1f7b53;
background-color: #141414;
}
/* borders */
details[open] .details-content {
border: 1px solid #141414;
}
/*==========================================*/
/* == DARKEST COLOR SECTION == */
/* text */
.dark .react-select__option--is-selected, .css-1s5evre:hover .css-zgqw37, .colored .react-select__option--is-selected, .transparent .react-select__option--is-selected, .react-select__menu-portal .react-select__option--is-selected, .Btn:hover, .Btn[data-hover], .css-15w88gn:hover, .css-15w88gn[data-hover] {
color: black;
}
/* background */
.css-p641ht, .css-15w88gn, .css-1w58nos, .search-input, .css-1n2in4t, .css-8l42c1, .css-19cg9cj, .css-1pibr72, .css-1fv6c2q, div:has(~ .css-1s5evre), .chakra-ui-dark .css-irb94a:not([data-theme]), [data-theme="dark"] .css-irb94a:not([data-theme]), .css-irb94a[data-theme="dark"], .transparent .react-select__control, .dark .react-select__control, .colored .react-select__control, .transparent .react-select__control, .react-select__menu-portal .react-select__control, .dark .react-select__menu, .colored .react-select__menu, .transparent .react-select__menu, .react-select__menu-portal .react-select__menu, .Btn:hover,.Btn[data-hover], .Btn, .css-v8syye, .details-content, .css-3rot3, .css-19akvax, .css-19h42zx, .css-1skvcpg, .css-bqd4p6, .css-1qf4tpw {
background: black;
background-color: black;
}
/* borders */
.css-jdhqy4 > div {
border: 1px solid black;
}
/*===========END OF SECTION==========*/
/* 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==========*/
/*=============HEADER SECTION============*/
/* HEADER */
.css-p641ht {
box-shadow: none;
backdrop-filter: none;
}
/* JANITORAI LOGO */
.css-e8xvxi /* background */ {
border: 0px;
background: transparent;
box-shadow: none;
backdrop-filter: none;
text-shadow: none;
}
.css-e8xvxi /* background */ {
border: 0px;
background: transparent;
box-shadow: none;
backdrop-filter: none;
text-shadow: none;
}
.pp-top-bar-logo-name /* text*/ {
font-family: 'DM SANS';
font-weight: 600;
font-size: 2em;
color: white;
}
/* "beta" PART OF LOGO */
.pp-top-bar-logo-sub-name {
font-weight: 400;
font-family: Raleway;
color: white;
}
/*==========================================*/
/* CREATE A CHARACTER BUTTON SECTION */
/*the text*/
.css-1yhasuw {
font-family: 'DM SANS';
text-transform: uppercase;
position: relative;
background: none;
}
.glow-on-hover::before, .glow-on-hover::after {
background: none;
}
/*==========================================*/
/* ANNOUNCEMENTS & NOTIF BUTTONS SECTION*/
/* notifs */
.css-18yip8r ,.css-18yip8r:hover{
background: none;
}
/* notif alert — the purple dot */
.css-2zp1xp {
background-color: #ffffff;
outline: rgb(0 0 0) solid 1px;
}
/* announcements */
.css-fss3o9, .css-fss3o9 > div {
background: none;
}
/*==========================================*/
/* credits to procrastination ♡*/
/* SEARCH BAR SECTION */
._mentions--singleLine_ulsrn_1,
#search-input {
margin: 0;
top: 50% !important;
transform: translateY(-50%);
}
/* DEFAULT TEXT AND PLACEHOLDER */
/* style for the search input or typed text */
#search-input {
font-family: 'Lato', sans-serif !important;
font-size: 1rem !important;
font-weight: normal;
caret-color: #fff;
transition: color 600ms ease, caret-color 600ms ease;
}
/* makes the original placeholder text invisible*/
#search-input::placeholder {
opacity: 0;
}
/* THE NEW PLACEHOLDER TEXT */
.search-input:after {
content: "can't find what you're looking for? search here . . .";
font-family: 'Lato', sans-serif;
font-size: 1rem;
font-weight: normal;
position: absolute;
max-width: 68%; /* not noticeable unless on a smaller device */
top: 50%;
transform: translateY(-50%);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis; /* adds an ellipsis instead of an abrupt cut-off when the text is too long */
pointer-events: none;
transition: color 600ms ease, opacity 300ms ease; /* if you don't want the placeholder text to subtly fade in/out, remove the opacity transition here */
}
/* hides the typed text by default */
#search-input,
.css-bar9lc:focus-within .search-input:after,
.search-input:has(#search-input:not(:placeholder-shown)):after {
opacity: 0;
}
/* makes the typed text visible when the search bar has text inside or is clicked on */
.css-bar9lc:focus-within #search-input,
.search-input:has(#search-input:not(:placeholder-shown)) #search-input {
opacity: 1;
}
/*==========================================*/
/* STYLING THE SEARCH BAR */
/* prevents the new placeholder text from overflowing the search bar & changes the background color of the search bar */
.search-input {
position: relative;
overflow: hidden;
border-radius: 2px;
transition: background-color 600ms ease;
}
/* optional, changes the svgs */
.css-bar9lc div:has(svg) {
opacity: 1; /* svgs are semi-transparent by default */
transition: color 600ms ease;
}
/* makes it so that the color of all text and svgs changes on hover with the search bar */
.css-bar9lc:hover .search-input:after,
.css-bar9lc:hover div:has(svg),
.css-bar9lc:hover #search-input {
color: white;
caret-color: white;
}
.css-bar9lc:hover .search-input {
background-color: transparent;
}
.search-input:hover {
box-shadow: none;
}
/*===========END OF SECTION==========*/
/*========PROFILE CARD SECTION==========*/
/* DELETE THIS TO GET THE "OLD STYLE" AVATAR/USERNAME BACK */
/* makes pfp go over username */
.css-1uodvt1 {
display: flex;
align-items: center;
flex-direction: column;
gap: 1px;
}
/* AVATAR OR PFP */
.pp-uc-avatar-container {
height: 250px;
object-position: 25% 55%;
width:35em !important;
box-shadow: none;
border-radius: 0px;
}
.pp-uc-avatar{
width:100%;
height:100%;
}
/*==========================================*/
/*BIO */
.css-8g8ihq {
padding: 10px;
}
/* background of card + border */
.css-19cg9cj {
border-radius: 2px;
}
.css-vqimyu > div:first-child {
border-radius: 2px !important;
background: none !important;
}
.css-vqimyu {
padding: 0px;
max-width: 36rem;
}
/* gets rid of glow on hover */
.css-vqimyu:hover, .css-vqimyu[data-hover] {
box-shadow: none;
}
.css-8g8ihq {
display: flex;
flex-direction: column;
gap: 0.2rem;
justify-content: flex-start;
align-content: space-around;
flex-wrap: nowrap;
align-items: center;
}
.css-1o7tvz2 {
z-index: 10; /* makes sure background/color choices remain visible */
}
/* positions the actual bio information */
.css-1bn1yyx:not(:empty) {
width: 100%;
padding: 10px;
}
/*==========================================*/
/* USERNAME */
@media screen and (min-width: 42rem) {
.css-jlhfdy {
font-size: 4em;
line-height: 1;
font-family: 'DM SANS';
text-decoration: 6px solid underline;
text-decoration-color: #ffffff7d;
text-underline-offset: 4px;
}
}
.css-70qvj9 h2 {
font-size: 4em;
line-height: 1;
font-family: 'DM SANS';
text-decoration: 6px solid underline;
text-decoration-color: #ffffff7d;
text-underline-offset: 4px;
}
/* FOLLOWERS */
.pp-uc-followers-count {
text-transform: uppercase;
font-size: 11px;
border-radius: 2px;
margin-top: 5px;
width: fit-content;
padding: 2px 10px;
font-family: 'LATO';
font-weight: 400;
}
/* "MEMBER SINCE" */
.pp-uc-member-since {
font-size: 11px;
font-family: 'Raleway';
font-weight: 600;
}
/*===========END OF SECTION==========*/
/* =====FOLLOWING / OPTIONS BUTTONS SECTION ===== */
/* positions in middle */
.css-y9k5u7 {
display: flex;
align-items: center;
flex-direction: row;
gap: 20px;
margin-top: 10px;
margin-bottom: 10px;
justify-content: center;
}
/*==========================================*/
/*== FOLLOW BUTTON ==*/
/* styling */
.Btn {
border-radius: 1px;
transition-duration: 0.2s;
}
.Btn::before {
color: #ffffff00;
transition-duration: 0.2s;
background-color: #0e0e0f00;
}
.Btn:hover, .Btn[data-hover] {
transition-duration: 0.2s;
}
/* text */
.css-e9kr8m {
font-family: 'Lato';
font-weight: 600;
}
/*==========================================*/
/* == OPTIONS BUTTON == */
.css-15w88gn {
border-radius: 1px;
text-transform: uppercase;
font-family: 'Lato';
}
/* inverse on hover */
.css-15w88gn:hover, .css-15w88gn[data-hover] {
}
/*==========================================*/
/* == PERSONAL MENU - TOP RIGHT == */
.css-19h42zx { /* styling the menu */
outline: none;
border-radius: 1px;
box-shadow: none;
}
.css-19h42zx { /* styling the menu */
outline: none;
border-radius: 1px;
box-shadow: none;
}
.css-19h42zx > a { /* styles the text */
font-family: 'Lato';
text-transform: uppercase;
}
/*===========END OF SECTION==========*/
/*===========BOT PAGE SECTION============*/
/* hides characters button */
.css-i3ef4m {
visibility: hidden;
}
/* # OF CHARACTERS BUTTON */
.Btn2-purple {
border: none;
background: none;
}
.Btn2-purple:before {
background-color: transparent;
transition: none;
}
.css-wd8hou strong {
font-size: 14px;
}
.Btn2-purple > .css-wd8hou p {
font-size: 0px; /* this hides the characters text */
}
.Btn2-purple > .css-wd8hou p::after {
transition-duration: 0s;
color: white;
font-size: 14px;
content: 'bots'; /* this replaces the "characters" text - you can write what you want */
}
/*==========================================*/
/* ===========BOT CARD =========== */
div:has(~ .css-1s5evre) {
border-radius: 0px !important;
}
/* removes box shadow on hover */
.css-1sxhvxh:hover, .css-1sxhvxh[data-hover], .css-v57joh:hover, .css-v57joh[data-hover], .css-12lnk4a:hover, .css-12lnk4a[data-hover] .css-s64spq :hover, .css-1n07wna:hover, .css-s64spq[data-hover], .css-1n07wna[data-hover]{
box-shadow: none;
}
/* how big the bot image is & get rid of the image border*/
.css-1q7rmf0 ,.css-1q7rmf0>img, .css-1q7rmf0>video {
height: 250px;
border-radius: 0px;
}
/* DELETE THIS TO GET RID OF GRAY FILTER ON BOT CARDS! */
.css-1q7rmf0>img, .css-1q7rmf0>video {
border-radius: 0px;
filter: grayscale(1);
}
/* removes grayscale on hover */
.css-1q7rmf0>img:hover, .css-1q7rmf0>video:hover {
filter: grayscale(0);
transition: filter 0.3s ease;
}
/* Removes the border on card */
.css-1sxhvxh .css-0, .css-12lnk4a .css-0, .css-v57joh .css-0 , .css-s64spq .css-0, .css-1n07wna .css-0{
background: none !important;
}
/*==========================================*/
/* == BOT NAMES == */
/* gets rid of padding */
.css-nlxhw4 {
padding: 0px;
}
/* puts bot name under image */
.chakra-stack.css-1s5evre a {
display: flex;
flex-direction: column-reverse;
justify-content: center;
}
/* styling for bot name */
.css-zgqw37, .css-6pkpcc, .css-7l95y2, .css-1on0xzz,.css-kesdt6 {
position: relative;
overflow: hidden;
padding-left: 2px;
font-size: 16px;
text-align: center;
font-family: 'DM Serif Text';
font-weight: 200;
width: 100%;
transition: color 0.4s ease, background-color 0.4s ease;
}
/*styling the 2025 bot name cus it's stubborn*/
.css-kesdt6 {
text-shadow: none;
text-transform: lowercase;
color:white;
text-align: center;
font-family: 'DM Serif Text';
letter-spacing: -0.2px;
}
/* sheen effect on bot name */
.css-zgqw37::before, .css-6pkpcc::before, .css-7l95y2::before,.css-kesdt6::before,.css-1on0xzz::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 */
.css-1s5evre:hover .css-zgqw37::before {
animation: sheenMove 1s forwards;
background-color:#ffffff;
}
/* christmas bots */
.css-1s5evre:hover .css-6pkpcc::before {
animation: sheenMove 1s forwards;
background-color: #e2ffcf;
}
/* halloween bots */
.css-1s5evre:hover .css-7l95y2::before {
animation: sheenMove 1s forwards;
background-color: #ffe4bd;
}
/* valentines bots */
.css-1s5evre:hover .css-1on0xzz::before {
animation: sheenMove 1s forwards;
background-color: #ffd1e2;
}
/* 2025 bots */
.css-1s5evre:hover .css-kesdt6::before {
animation: sheenMove 1s forwards;
background-color: #53b960;
}
@keyframes sheenMove {
from {
left: -75%;
}
to {
left: 125%;
}
}
.css-1s5evre:hover .css-zgqw37 {
transition: background-color 0.4s ease, color 0.4s ease;
}
/* hides creator name under bot name */
.css-1m0lwfp,.css-vquwtv,.css-9pz3h, .css-1yeq7x5, .css-16f51li {
visibility: hidden;
height: 10px;
}
/* removes icons from seasonal event cards */
.css-5v5qgx, .css-nip9dx, .css-xrg4vd,.css-1wqmh16 {
visibility: hidden;
}
/*==========================================*/
/* BOT DESCRIPTIONS */
.css-96l1id, .css-96l1id p, .css-96l1id p > span {
font-family: 'Lato';
padding-top: 2px;
}
/* HIDES THE STAR & LINE */
.pp-cc-star,.pp-cc-star-line {
display: none;
}
/*==========================================*/
/* == CHAT COUNT RIBBON == */
/* credit to tigerdropped */
/* Ribbon position: */
.css-10cv7r2 {
top: 258px;
right: 57%;
}
/* Essentials */
/* Negate inset, hidden overflow, drop shadow */
.css-1ket5wn {
inset: unset;
overflow: visible;
filter: none;
padding: 0;
}
/* Remove weird shape, weird shadow, hidden overflow */
._content_1chl9_11 {
clip-path: unset;
padding: 0;
box-shadow: none;
background: transparent;
overflow: visible;
border-radius: 0;
}
/* Text, background and icon */
.css-euh5x6 {
font-weight: 200;
font-size: 12px;
font-family: 'DM SANS';
background: none;
border-bottom: 1px solid #ffffff7d;
}
/* Hide chat icon */
.pp-cc-chats svg {
display: none;
}
/* New icon */
.pp-cc-chats::before {
content: "◐";
}
css-10cv7r2 * {
width: 100%;
}
/*==========================================*/
/* == TAGS == */
/* tag arrangement */
.css-k1urot {
display: flex;
list-style-type: none;
gap: 4px;
padding: 0px;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: flex-end;
}
/* this styles the tags */
.pp-cc-tags-item, .pp-cc-tags-wrap-custom span {
font-weight: 200;
outline: none;
box-shadow: none;
border-radius: 0px;
font-size: 12px;
color: rgb(255 255 255 / 65%);
text-overflow: ellipsis;
width: 100%;
}
/* changes "limitless" tag */
.pp-tag-limitless {
width: 0px;
font-size: 0px;
color: transparent;
background: transparent;
border: none;
outline: none;
}
.pp-tag-limitless::before {
content: "🔞";
font-size: 16px;
color: white;
}
/*==========================================*/
/* TOKEN COUNTER */
.pp-cc-tokens-count {
font-size: 0.6rem;
font-family: 'DM SANS';
font-weight: 200;
letter-spacing: 0.5px;
color: #ffffff70;
text-shadow: none;
}
/*===========END OF SECTION==========*/
/* =====LATEST DROPDOWN SECTION===== */
/* decoration of the latest box */
.transparent .react-select__control {
border-radius: 1px;
}
.dark .react-select__control, .colored .react-select__control, .transparent .react-select__control, .react-select__menu-portal .react-select__control {
transition: all .2s ease;
font-family: 'DM SANS';
text-transform: uppercase;
}
/* border color when hovered */
.dark .react-select__control:hover, .colored .react-select__control:hover, .transparent .react-select__control:hover, .react-select__menu-portal .react-select__control:hover {
border-color: #ffffff70;
}
/* latest text color */
.dark .react-select__placeholder, .colored .react-select__placeholder, .transparent .react-select__placeholder, .dark .react-select__single-value, .colored .react-select__single-value, .transparent .react-select__single-value, .react-select__menu-portal .react-select__placeholder, .react-select__menu-portal .react-select__single-value {
}
/* changes the line between latest and the arrow */
.dark .react-select__indicator-separator, .colored .react-select__indicator-separator, .transparent .react-select__indicator-separator, .react-select__menu-portal .react-select__indicator-separator {
}
/* changes the arrow */
.dark .react-select__dropdown-indicator, .colored .react-select__dropdown-indicator, .transparent .react-select__dropdown-indicator, .react-select__menu-portal .react-select__dropdown-indicator {
}
/* changes the look of the open menu */
.dark .react-select__menu, .colored .react-select__menu, .transparent .react-select__menu, .react-select__menu-portal .react-select__menu {
font-family: 'Raleway';
text-transform: uppercase;
border-radius: 1px;
font-weight: 400;
font-size: 12px;
box-shadow: none;
}
/* hovered option background */
.dark .react-select__option:hover, .colored .react-select__option:hover, .transparent .react-select__option:hover, .react-select__menu-portal .react-select__option:hover {
cursor: pointer;
}
/* selected option background + font color */
.dark .react-select__option--is-selected, .colored .react-select__option--is-selected, .transparent .react-select__option--is-selected, .react-select__menu-portal .react-select__option--is-selected {
}
/* color of other options and lines between them */
.dark .react-select__option, .colored .react-select__option, .transparent .react-select__option, .react-select__menu-portal .react-select__option {
background-color: transparent;
border-bottom: 1px solid #ffffff75;
}
/*==========================================*/
/* == TAG BOX BUTTON == */
.css-1n2in4t, .css-8l42c1 {
border-radius: 1px;
}
/* tag icon color */
.css-1n2in4t > svg, .css-8l42c1 > svg {
}
/* search for characters bar styling */
.css-3rot3, .css-19akvax {
font-size: 14px;
text-transform: uppercase;
font-family: 'Dm Sans';
border-radius: 1px;
}
/* on hover */
.css-3rot3:hover, .css-3rot3[data-hover] {
border-color: #ffffff70;
}
._searchInput_c7epr_1:hover, ._searchInput_c7epr_1:focus {
box-shadow: none;
outline: none;
}
/*==========================================*/
/* ========TAGS FILTER========= */
/* tags filter box */
.chakra-ui-dark .css-irb94a:not([data-theme]), [data-theme="dark"] .css-irb94a:not([data-theme]), .css-irb94a[data-theme="dark"] {
border-radius: 1px;
}
/* header text */
.css-dcyl1x {
font-family: 'DM SANS';
font-size: 0px;
}
.css-dcyl1x:before {
content: 'Select tags to filter bots.'
font-size: 20px;
}
.css-178jenf {
font-family: 'DM SANS';
font-size: 16px;
}
.css-1w58nos {
box-shadow: none !important;
line-height: 1;
text-overflow: ellipsis;
outline: none;
color: white;
background: #0e0e0f;
border-radius: 1px;
height: 16px;
width: 150px;
font-size: 12px;
padding: 2px;
cursor: pointer;
text-transform: uppercase;
font-family: 'Lato';
font-weight: 600;
}
.css-oqdsp6 {
box-shadow: none !important;
border: 1px solid white;
line-height: 1;
text-overflow: ellipsis;
outline: none;
border-radius: 1px;
height: 16px;
width: 150px;
font-size: 12px;
padding: 2px;
cursor: pointer;
text-transform: lowercase;
font-family: 'Lato';
font-weight: 600;
}
/*==========================================*/
/* =====NOTIFICATION BOX ===== */
/* styling the box */
.css-v8syye {
width: 500px;
border-radius: 1px;
}
/* getting rid of glow on hover */
.css-1rl3sf5:hover, .css-1rl3sf5[data-hover] {
box-shadow: none;
}
/* "notifications" text */
.css-1f84q7v {
font-weight: 600;
font-size: 20px;
font-family: 'Lato';
}
.css-19n8j7q, .css-q0xxaj {
color: white; /* color of checks and x */
}
/* notification header */
.css-1mdnznj {
font-size: 16px;
font-family: 'DM SANS';
}
.css-1q6w2dx {
font-family: 'Lato';
}
/* notifs styling */
.css-1pibr72, .css-1fv6c2q {
border-radius: 1px;
}
.css-1rl3sf5 > div:empty {
background: transparent !important; /* gets rid of pink border */
}
/*===========END OF SECTION==========*/
/*======== TOOLTIPS SECTION========= */
/* TOOLTIPS */
.css-jdhqy4 > div {
--tooltip-bg: #2e2e2e;
--tooltip-fg: #181818;
background-color: black;
background: black;
color: white;
backdrop-filter: blur(10px);
padding: 6px;
border-radius: 1px;
font-weight: 600;
font-size: 14px;
box-shadow: none;
font-family: 'DM SANS';
}
@media (max-width: 480px) {
/* ===========MOBILE STYLING=========== */
/* header & footer */
.pp-top-bar, .css-1qf4tpw {
box-shadow: none;
}
/* header text */
.css-16g2f4q {
font-family: 'Lato';
font-size: 20px;
}
/* Hiding the original ‘profile of @—’ */
.css-bqd4p6 > div:nth-child(2) p {
font-size: 0;
}
/* changing the placeholder text of ‘profile of @—’ */
.css-bqd4p6 > div:nth-child(2) p::after {
font-size: 1.2rem;
content: "your text here";
}
/* fixes 2 stupid little bugs */
.pp-uc-avatar-container {
width: 320px !important;
height: 200px;
}
.pp-uc-avatar {
border-radius: 0;
}
.pp-uc-title {
font-size: 3.4rem !important;
}
/* ===========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*/
.css-83ddpm /*this is h1*/ {
font-family: 'Raleway';
color:lightgray;
text-align:center;
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, fixes by zyxy</a>.</p>
|