Code for @AlarmClock
THIS CHANGES THE SEARCH BAR WORDS
<style>
#search-input {
font-family: 'American Typewriter'; !important;
font-size: 1rem !important;
font-weight: normal;
caret-color: #000;
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: "Desire for affection? Press me!";
font-family: 'American Typewriter';
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;
}
.search-input {
position: relative;
overflow: hidden;
border-radius: 2px;
transition: background-color 600ms ease;
}
</style>
THIS CHANGES THE WIDTH AND HEIGHT OF YOUR PROFILE PICTURE
<style>
.css-18bnokj {
Width: 500px;
height: 500px;
</style>
- Limitless
Published chats
comments
Leave a comment or feedback for the creator ❤️