galaxy/Inputs/satyamchaudharydev_tasty-dingo-5.html

132 lines
3.8 KiB
HTML

<form class="form">
<label for="search">
<input class="input" type="text" required="" placeholder="Search twitter" id="search">
<div class="fancy-bg"></div>
<div class="search">
<svg viewBox="0 0 24 24" aria-hidden="true" class="r-14j79pv r-4qtqp9 r-yyyyoo r-1xvli5t r-dnmrzs r-4wgw6l r-f727ji r-bnwqim r-1plcrui r-lrvibr">
<g>
<path d="M21.53 20.47l-3.66-3.66C19.195 15.24 20 13.214 20 11c0-4.97-4.03-9-9-9s-9 4.03-9 9 4.03 9 9 9c2.215 0 4.24-.804 5.808-2.13l3.66 3.66c.147.146.34.22.53.22s.385-.073.53-.22c.295-.293.295-.767.002-1.06zM3.5 11c0-4.135 3.365-7.5 7.5-7.5s7.5 3.365 7.5 7.5-3.365 7.5-7.5 7.5-7.5-3.365-7.5-7.5z"></path>
</g>
</svg>
</div>
<button class="close-btn" type="reset">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z" clip-rule="evenodd"></path>
</svg>
</button>
</label>
</form>
<style>
/* From Uiverse.io by satyamchaudharydev - Tags: input, search */
/* this is a recreation of twitter search in css */
.form {
--input-text-color: #fff;
--input-bg-color: #283542;
--focus-input-bg-color: transparent;
--text-color: #949faa;
--active-color: #1b9bee;
--width-of-input: 200px;
--inline-padding-of-input: 1.2em;
--gap: 0.9rem;
}
/* form style */
.form {
font-size: 0.9rem;
display: flex;
gap: 0.5rem;
align-items: center;
width: var(--width-of-input);
position: relative;
isolation: isolate;
}
/* a fancy bg for showing background and border when focus. */
.fancy-bg {
position: absolute;
width: 100%;
inset: 0;
background: var(--input-bg-color);
border-radius: 30px;
height: 100%;
z-index: -1;
pointer-events: none;
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
/* label styling */
label {
width: 100%;
padding: 0.8em;
height: 40px;
padding-inline: var(--inline-padding-of-input);
display: flex;
align-items: center;
}
.search,.close-btn {
position: absolute;
}
/* styling search-icon */
.search {
fill: var(--text-color);
left: var(--inline-padding-of-input);
}
/* svg -- size */
svg {
width: 17px;
display: block;
}
/* styling of close button */
.close-btn {
border: none;
right: var(--inline-padding-of-input);
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
padding: 0.1em;
width: 20px;
height: 20px;
border-radius: 50%;
background: var(--active-color);
opacity: 0;
visibility: hidden;
}
/* styling of input */
.input {
color: var(--input-text-color);
width: 100%;
margin-inline: min(2em,calc(var(--inline-padding-of-input) + var(--gap)));
background: none;
border: none;
}
.input:focus {
outline: none;
}
.input::placeholder {
color: var(--text-color)
}
/* input background change in focus */
.input:focus ~ .fancy-bg {
border: 1px solid var(--active-color);
background: var(--focus-input-bg-color);
}
/* search icon color change in focus */
.input:focus ~ .search {
fill: var(--active-color);
}
/* showing close button when typing */
.input:valid ~ .close-btn {
opacity: 1;
visibility: visible;
}
/* this is for the default background in input,when selecting autofill options -- you can remove this code if you do not want to override the browser style. */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
-webkit-transition: "color 9999s ease-out, background-color 9999s ease-out";
-webkit-transition-delay: 9999s;
}
</style>